\n
\n {LABELS[name]}\n
\n\n {emojis && emojis.map((emoji) =>\n
\n )}\n\n {emojis && !emojis.length &&\n
\n \n\n \n No emoji found\n \n
\n }\n
\n }\n}\n\nCategory.propTypes = {\n emojis: React.PropTypes.array,\n hasStickyPosition: React.PropTypes.bool,\n name: React.PropTypes.string.isRequired,\n perLine: React.PropTypes.number.isRequired,\n emojiProps: React.PropTypes.object.isRequired,\n}\n\nCategory.defaultProps = {\n emojis: [],\n hasStickyPosition: true,\n}\n\n\n\n/** WEBPACK FOOTER **\n ** ./src/components/category.js\n **/","export {default as store} from './store'\nexport {default as emojiIndex} from './emoji-index'\nexport {default as frequently} from './frequently'\n\n\n\n/** WEBPACK FOOTER **\n ** ./src/utils/index.js\n **/","const NAMESPACE = 'emoji-picker'\n\nfunction update(state) {\n for (let key in state) {\n let value = state[key]\n set(key, value)\n }\n}\n\nfunction set(key, value) {\n if (!('localStorage' in window)) return\n window.localStorage[`${NAMESPACE}.${key}`] = JSON.stringify(value)\n}\n\nfunction get(key) {\n if (!('localStorage' in window)) return\n\n var value = window.localStorage[`${NAMESPACE}.${key}`]\n\n if (value) {\n return JSON.parse(value)\n }\n}\n\nexport default { update, set, get }\n\n\n\n/** WEBPACK FOOTER **\n ** ./src/utils/store.js\n **/","import lunr from 'lunr'\nimport data from '../../data'\n\nvar index = lunr(function() {\n this.pipeline.reset()\n\n this.field('short_name', { boost: 2 })\n this.field('emoticons')\n this.field('name')\n\n this.ref('id')\n})\n\nfor (let emoji in data.emojis) {\n let emojiData = data.emojis[emoji],\n { short_name, name, emoticons } = emojiData\n\n index.add({\n id: short_name,\n emoticons: emoticons,\n short_name: tokenize(short_name),\n name: tokenize(name),\n })\n}\n\nfunction search(value, maxResults = 75) {\n var results = null\n\n if (value.length) {\n results = index.search(tokenize(value)).map((result) =>\n result.ref\n )\n\n results = results.slice(0, maxResults)\n }\n\n return results\n}\n\nfunction tokenize (string) {\n if (['-', '-1', '+', '+1'].indexOf(string) == 0) {\n return string.split('')\n }\n\n if (/(:|;|=)-/.test(string)) {\n return [string]\n }\n\n return string.split(/[-|_|\\s]+/)\n}\n\nexport default { search }\n\n\n\n/** WEBPACK FOOTER **\n ** ./src/utils/emoji-index.js\n **/","/**\n * lunr - http://lunrjs.com - A bit like Solr, but much smaller and not as bright - 0.7.1\n * Copyright (C) 2016 Oliver Nightingale\n * @license MIT\n */\n\n;(function(){\n\n/**\n * Convenience function for instantiating a new lunr index and configuring it\n * with the default pipeline functions and the passed config function.\n *\n * When using this convenience function a new index will be created with the\n * following functions already in the pipeline:\n *\n * lunr.StopWordFilter - filters out any stop words before they enter the\n * index\n *\n * lunr.stemmer - stems the tokens before entering the index.\n *\n * Example:\n *\n * var idx = lunr(function () {\n * this.field('title', 10)\n * this.field('tags', 100)\n * this.field('body')\n * \n * this.ref('cid')\n * \n * this.pipeline.add(function () {\n * // some custom pipeline function\n * })\n * \n * })\n *\n * @param {Function} config A function that will be called with the new instance\n * of the lunr.Index as both its context and first parameter. It can be used to\n * customize the instance of new lunr.Index.\n * @namespace\n * @module\n * @returns {lunr.Index}\n *\n */\nvar lunr = function (config) {\n var idx = new lunr.Index\n\n idx.pipeline.add(\n lunr.trimmer,\n lunr.stopWordFilter,\n lunr.stemmer\n )\n\n if (config) config.call(idx, idx)\n\n return idx\n}\n\nlunr.version = \"0.7.1\"\n/*!\n * lunr.utils\n * Copyright (C) 2016 Oliver Nightingale\n */\n\n/**\n * A namespace containing utils for the rest of the lunr library\n */\nlunr.utils = {}\n\n/**\n * Print a warning message to the console.\n *\n * @param {String} message The message to be printed.\n * @memberOf Utils\n */\nlunr.utils.warn = (function (global) {\n return function (message) {\n if (global.console && console.warn) {\n console.warn(message)\n }\n }\n})(this)\n\n/**\n * Convert an object to a string.\n *\n * In the case of `null` and `undefined` the function returns\n * the empty string, in all other cases the result of calling\n * `toString` on the passed object is returned.\n *\n * @param {Any} obj The object to convert to a string.\n * @return {String} string representation of the passed object.\n * @memberOf Utils\n */\nlunr.utils.asString = function (obj) {\n if (obj === void 0 || obj === null) {\n return \"\"\n } else {\n return obj.toString()\n }\n}\n/*!\n * lunr.EventEmitter\n * Copyright (C) 2016 Oliver Nightingale\n */\n\n/**\n * lunr.EventEmitter is an event emitter for lunr. It manages adding and removing event handlers and triggering events and their handlers.\n *\n * @constructor\n */\nlunr.EventEmitter = function () {\n this.events = {}\n}\n\n/**\n * Binds a handler function to a specific event(s).\n *\n * Can bind a single function to many different events in one call.\n *\n * @param {String} [eventName] The name(s) of events to bind this function to.\n * @param {Function} fn The function to call when an event is fired.\n * @memberOf EventEmitter\n */\nlunr.EventEmitter.prototype.addListener = function () {\n var args = Array.prototype.slice.call(arguments),\n fn = args.pop(),\n names = args\n\n if (typeof fn !== \"function\") throw new TypeError (\"last argument must be a function\")\n\n names.forEach(function (name) {\n if (!this.hasHandler(name)) this.events[name] = []\n this.events[name].push(fn)\n }, this)\n}\n\n/**\n * Removes a handler function from a specific event.\n *\n * @param {String} eventName The name of the event to remove this function from.\n * @param {Function} fn The function to remove from an event.\n * @memberOf EventEmitter\n */\nlunr.EventEmitter.prototype.removeListener = function (name, fn) {\n if (!this.hasHandler(name)) return\n\n var fnIndex = this.events[name].indexOf(fn)\n this.events[name].splice(fnIndex, 1)\n\n if (!this.events[name].length) delete this.events[name]\n}\n\n/**\n * Calls all functions bound to the given event.\n *\n * Additional data can be passed to the event handler as arguments to `emit`\n * after the event name.\n *\n * @param {String} eventName The name of the event to emit.\n * @memberOf EventEmitter\n */\nlunr.EventEmitter.prototype.emit = function (name) {\n if (!this.hasHandler(name)) return\n\n var args = Array.prototype.slice.call(arguments, 1)\n\n this.events[name].forEach(function (fn) {\n fn.apply(undefined, args)\n })\n}\n\n/**\n * Checks whether a handler has ever been stored against an event.\n *\n * @param {String} eventName The name of the event to check.\n * @private\n * @memberOf EventEmitter\n */\nlunr.EventEmitter.prototype.hasHandler = function (name) {\n return name in this.events\n}\n\n/*!\n * lunr.tokenizer\n * Copyright (C) 2016 Oliver Nightingale\n */\n\n/**\n * A function for splitting a string into tokens ready to be inserted into\n * the search index. Uses `lunr.tokenizer.seperator` to split strings, change\n * the value of this property to change how strings are split into tokens.\n *\n * @module\n * @param {String} obj The string to convert into tokens\n * @see lunr.tokenizer.seperator\n * @returns {Array}\n */\nlunr.tokenizer = function (obj) {\n if (!arguments.length || obj == null || obj == undefined) return []\n if (Array.isArray(obj)) return obj.map(function (t) { return lunr.utils.asString(t).toLowerCase() })\n\n return obj.toString().trim().toLowerCase().split(lunr.tokenizer.seperator)\n}\n\n/**\n * The sperator used to split a string into tokens. Override this property to change the behaviour of\n * `lunr.tokenizer` behaviour when tokenizing strings. By default this splits on whitespace and hyphens.\n *\n * @static\n * @see lunr.tokenizer\n */\nlunr.tokenizer.seperator = /[\\s\\-]+/\n\n/**\n * Loads a previously serialised tokenizer.\n *\n * A tokenizer function to be loaded must already be registered with lunr.tokenizer.\n * If the serialised tokenizer has not been registered then an error will be thrown.\n *\n * @param {String} label The label of the serialised tokenizer.\n * @returns {Function}\n * @memberOf tokenizer\n */\nlunr.tokenizer.load = function (label) {\n var fn = this.registeredFunctions[label]\n\n if (!fn) {\n throw new Error('Cannot load un-registered function: ' + label)\n }\n\n return fn\n}\n\nlunr.tokenizer.label = 'default'\n\nlunr.tokenizer.registeredFunctions = {\n 'default': lunr.tokenizer\n}\n\n/**\n * Register a tokenizer function.\n *\n * Functions that are used as tokenizers should be registered if they are to be used with a serialised index.\n *\n * Registering a function does not add it to an index, functions must still be associated with a specific index for them to be used when indexing and searching documents.\n *\n * @param {Function} fn The function to register.\n * @param {String} label The label to register this function with\n * @memberOf tokenizer\n */\nlunr.tokenizer.registerFunction = function (fn, label) {\n if (label in this.registeredFunctions) {\n lunr.utils.warn('Overwriting existing tokenizer: ' + label)\n }\n\n fn.label = label\n this.registeredFunctions[label] = fn\n}\n/*!\n * lunr.Pipeline\n * Copyright (C) 2016 Oliver Nightingale\n */\n\n/**\n * lunr.Pipelines maintain an ordered list of functions to be applied to all\n * tokens in documents entering the search index and queries being ran against\n * the index.\n *\n * An instance of lunr.Index created with the lunr shortcut will contain a\n * pipeline with a stop word filter and an English language stemmer. Extra\n * functions can be added before or after either of these functions or these\n * default functions can be removed.\n *\n * When run the pipeline will call each function in turn, passing a token, the\n * index of that token in the original list of all tokens and finally a list of\n * all the original tokens.\n *\n * The output of functions in the pipeline will be passed to the next function\n * in the pipeline. To exclude a token from entering the index the function\n * should return undefined, the rest of the pipeline will not be called with\n * this token.\n *\n * For serialisation of pipelines to work, all functions used in an instance of\n * a pipeline should be registered with lunr.Pipeline. Registered functions can\n * then be loaded. If trying to load a serialised pipeline that uses functions\n * that are not registered an error will be thrown.\n *\n * If not planning on serialising the pipeline then registering pipeline functions\n * is not necessary.\n *\n * @constructor\n */\nlunr.Pipeline = function () {\n this._stack = []\n}\n\nlunr.Pipeline.registeredFunctions = {}\n\n/**\n * Register a function with the pipeline.\n *\n * Functions that are used in the pipeline should be registered if the pipeline\n * needs to be serialised, or a serialised pipeline needs to be loaded.\n *\n * Registering a function does not add it to a pipeline, functions must still be\n * added to instances of the pipeline for them to be used when running a pipeline.\n *\n * @param {Function} fn The function to check for.\n * @param {String} label The label to register this function with\n * @memberOf Pipeline\n */\nlunr.Pipeline.registerFunction = function (fn, label) {\n if (label in this.registeredFunctions) {\n lunr.utils.warn('Overwriting existing registered function: ' + label)\n }\n\n fn.label = label\n lunr.Pipeline.registeredFunctions[fn.label] = fn\n}\n\n/**\n * Warns if the function is not registered as a Pipeline function.\n *\n * @param {Function} fn The function to check for.\n * @private\n * @memberOf Pipeline\n */\nlunr.Pipeline.warnIfFunctionNotRegistered = function (fn) {\n var isRegistered = fn.label && (fn.label in this.registeredFunctions)\n\n if (!isRegistered) {\n lunr.utils.warn('Function is not registered with pipeline. This may cause problems when serialising the index.\\n', fn)\n }\n}\n\n/**\n * Loads a previously serialised pipeline.\n *\n * All functions to be loaded must already be registered with lunr.Pipeline.\n * If any function from the serialised data has not been registered then an\n * error will be thrown.\n *\n * @param {Object} serialised The serialised pipeline to load.\n * @returns {lunr.Pipeline}\n * @memberOf Pipeline\n */\nlunr.Pipeline.load = function (serialised) {\n var pipeline = new lunr.Pipeline\n\n serialised.forEach(function (fnName) {\n var fn = lunr.Pipeline.registeredFunctions[fnName]\n\n if (fn) {\n pipeline.add(fn)\n } else {\n throw new Error('Cannot load un-registered function: ' + fnName)\n }\n })\n\n return pipeline\n}\n\n/**\n * Adds new functions to the end of the pipeline.\n *\n * Logs a warning if the function has not been registered.\n *\n * @param {Function} functions Any number of functions to add to the pipeline.\n * @memberOf Pipeline\n */\nlunr.Pipeline.prototype.add = function () {\n var fns = Array.prototype.slice.call(arguments)\n\n fns.forEach(function (fn) {\n lunr.Pipeline.warnIfFunctionNotRegistered(fn)\n this._stack.push(fn)\n }, this)\n}\n\n/**\n * Adds a single function after a function that already exists in the\n * pipeline.\n *\n * Logs a warning if the function has not been registered.\n *\n * @param {Function} existingFn A function that already exists in the pipeline.\n * @param {Function} newFn The new function to add to the pipeline.\n * @memberOf Pipeline\n */\nlunr.Pipeline.prototype.after = function (existingFn, newFn) {\n lunr.Pipeline.warnIfFunctionNotRegistered(newFn)\n\n var pos = this._stack.indexOf(existingFn)\n if (pos == -1) {\n throw new Error('Cannot find existingFn')\n }\n\n pos = pos + 1\n this._stack.splice(pos, 0, newFn)\n}\n\n/**\n * Adds a single function before a function that already exists in the\n * pipeline.\n *\n * Logs a warning if the function has not been registered.\n *\n * @param {Function} existingFn A function that already exists in the pipeline.\n * @param {Function} newFn The new function to add to the pipeline.\n * @memberOf Pipeline\n */\nlunr.Pipeline.prototype.before = function (existingFn, newFn) {\n lunr.Pipeline.warnIfFunctionNotRegistered(newFn)\n\n var pos = this._stack.indexOf(existingFn)\n if (pos == -1) {\n throw new Error('Cannot find existingFn')\n }\n\n this._stack.splice(pos, 0, newFn)\n}\n\n/**\n * Removes a function from the pipeline.\n *\n * @param {Function} fn The function to remove from the pipeline.\n * @memberOf Pipeline\n */\nlunr.Pipeline.prototype.remove = function (fn) {\n var pos = this._stack.indexOf(fn)\n if (pos == -1) {\n return\n }\n\n this._stack.splice(pos, 1)\n}\n\n/**\n * Runs the current list of functions that make up the pipeline against the\n * passed tokens.\n *\n * @param {Array} tokens The tokens to run through the pipeline.\n * @returns {Array}\n * @memberOf Pipeline\n */\nlunr.Pipeline.prototype.run = function (tokens) {\n var out = [],\n tokenLength = tokens.length,\n stackLength = this._stack.length\n\n for (var i = 0; i < tokenLength; i++) {\n var token = tokens[i]\n\n for (var j = 0; j < stackLength; j++) {\n token = this._stack[j](token, i, tokens)\n if (token === void 0 || token === '') break\n };\n\n if (token !== void 0 && token !== '') out.push(token)\n };\n\n return out\n}\n\n/**\n * Resets the pipeline by removing any existing processors.\n *\n * @memberOf Pipeline\n */\nlunr.Pipeline.prototype.reset = function () {\n this._stack = []\n}\n\n/**\n * Returns a representation of the pipeline ready for serialisation.\n *\n * Logs a warning if the function has not been registered.\n *\n * @returns {Array}\n * @memberOf Pipeline\n */\nlunr.Pipeline.prototype.toJSON = function () {\n return this._stack.map(function (fn) {\n lunr.Pipeline.warnIfFunctionNotRegistered(fn)\n\n return fn.label\n })\n}\n/*!\n * lunr.Vector\n * Copyright (C) 2016 Oliver Nightingale\n */\n\n/**\n * lunr.Vectors implement vector related operations for\n * a series of elements.\n *\n * @constructor\n */\nlunr.Vector = function () {\n this._magnitude = null\n this.list = undefined\n this.length = 0\n}\n\n/**\n * lunr.Vector.Node is a simple struct for each node\n * in a lunr.Vector.\n *\n * @private\n * @param {Number} The index of the node in the vector.\n * @param {Object} The data at this node in the vector.\n * @param {lunr.Vector.Node} The node directly after this node in the vector.\n * @constructor\n * @memberOf Vector\n */\nlunr.Vector.Node = function (idx, val, next) {\n this.idx = idx\n this.val = val\n this.next = next\n}\n\n/**\n * Inserts a new value at a position in a vector.\n *\n * @param {Number} The index at which to insert a value.\n * @param {Object} The object to insert in the vector.\n * @memberOf Vector.\n */\nlunr.Vector.prototype.insert = function (idx, val) {\n this._magnitude = undefined;\n var list = this.list\n\n if (!list) {\n this.list = new lunr.Vector.Node (idx, val, list)\n return this.length++\n }\n\n if (idx < list.idx) {\n this.list = new lunr.Vector.Node (idx, val, list)\n return this.length++\n }\n\n var prev = list,\n next = list.next\n\n while (next != undefined) {\n if (idx < next.idx) {\n prev.next = new lunr.Vector.Node (idx, val, next)\n return this.length++\n }\n\n prev = next, next = next.next\n }\n\n prev.next = new lunr.Vector.Node (idx, val, next)\n return this.length++\n}\n\n/**\n * Calculates the magnitude of this vector.\n *\n * @returns {Number}\n * @memberOf Vector\n */\nlunr.Vector.prototype.magnitude = function () {\n if (this._magnitude) return this._magnitude\n var node = this.list,\n sumOfSquares = 0,\n val\n\n while (node) {\n val = node.val\n sumOfSquares += val * val\n node = node.next\n }\n\n return this._magnitude = Math.sqrt(sumOfSquares)\n}\n\n/**\n * Calculates the dot product of this vector and another vector.\n *\n * @param {lunr.Vector} otherVector The vector to compute the dot product with.\n * @returns {Number}\n * @memberOf Vector\n */\nlunr.Vector.prototype.dot = function (otherVector) {\n var node = this.list,\n otherNode = otherVector.list,\n dotProduct = 0\n\n while (node && otherNode) {\n if (node.idx < otherNode.idx) {\n node = node.next\n } else if (node.idx > otherNode.idx) {\n otherNode = otherNode.next\n } else {\n dotProduct += node.val * otherNode.val\n node = node.next\n otherNode = otherNode.next\n }\n }\n\n return dotProduct\n}\n\n/**\n * Calculates the cosine similarity between this vector and another\n * vector.\n *\n * @param {lunr.Vector} otherVector The other vector to calculate the\n * similarity with.\n * @returns {Number}\n * @memberOf Vector\n */\nlunr.Vector.prototype.similarity = function (otherVector) {\n return this.dot(otherVector) / (this.magnitude() * otherVector.magnitude())\n}\n/*!\n * lunr.SortedSet\n * Copyright (C) 2016 Oliver Nightingale\n */\n\n/**\n * lunr.SortedSets are used to maintain an array of uniq values in a sorted\n * order.\n *\n * @constructor\n */\nlunr.SortedSet = function () {\n this.length = 0\n this.elements = []\n}\n\n/**\n * Loads a previously serialised sorted set.\n *\n * @param {Array} serialisedData The serialised set to load.\n * @returns {lunr.SortedSet}\n * @memberOf SortedSet\n */\nlunr.SortedSet.load = function (serialisedData) {\n var set = new this\n\n set.elements = serialisedData\n set.length = serialisedData.length\n\n return set\n}\n\n/**\n * Inserts new items into the set in the correct position to maintain the\n * order.\n *\n * @param {Object} The objects to add to this set.\n * @memberOf SortedSet\n */\nlunr.SortedSet.prototype.add = function () {\n var i, element\n\n for (i = 0; i < arguments.length; i++) {\n element = arguments[i]\n if (~this.indexOf(element)) continue\n this.elements.splice(this.locationFor(element), 0, element)\n }\n\n this.length = this.elements.length\n}\n\n/**\n * Converts this sorted set into an array.\n *\n * @returns {Array}\n * @memberOf SortedSet\n */\nlunr.SortedSet.prototype.toArray = function () {\n return this.elements.slice()\n}\n\n/**\n * Creates a new array with the results of calling a provided function on every\n * element in this sorted set.\n *\n * Delegates to Array.prototype.map and has the same signature.\n *\n * @param {Function} fn The function that is called on each element of the\n * set.\n * @param {Object} ctx An optional object that can be used as the context\n * for the function fn.\n * @returns {Array}\n * @memberOf SortedSet\n */\nlunr.SortedSet.prototype.map = function (fn, ctx) {\n return this.elements.map(fn, ctx)\n}\n\n/**\n * Executes a provided function once per sorted set element.\n *\n * Delegates to Array.prototype.forEach and has the same signature.\n *\n * @param {Function} fn The function that is called on each element of the\n * set.\n * @param {Object} ctx An optional object that can be used as the context\n * @memberOf SortedSet\n * for the function fn.\n */\nlunr.SortedSet.prototype.forEach = function (fn, ctx) {\n return this.elements.forEach(fn, ctx)\n}\n\n/**\n * Returns the index at which a given element can be found in the\n * sorted set, or -1 if it is not present.\n *\n * @param {Object} elem The object to locate in the sorted set.\n * @returns {Number}\n * @memberOf SortedSet\n */\nlunr.SortedSet.prototype.indexOf = function (elem) {\n var start = 0,\n end = this.elements.length,\n sectionLength = end - start,\n pivot = start + Math.floor(sectionLength / 2),\n pivotElem = this.elements[pivot]\n\n while (sectionLength > 1) {\n if (pivotElem === elem) return pivot\n\n if (pivotElem < elem) start = pivot\n if (pivotElem > elem) end = pivot\n\n sectionLength = end - start\n pivot = start + Math.floor(sectionLength / 2)\n pivotElem = this.elements[pivot]\n }\n\n if (pivotElem === elem) return pivot\n\n return -1\n}\n\n/**\n * Returns the position within the sorted set that an element should be\n * inserted at to maintain the current order of the set.\n *\n * This function assumes that the element to search for does not already exist\n * in the sorted set.\n *\n * @param {Object} elem The elem to find the position for in the set\n * @returns {Number}\n * @memberOf SortedSet\n */\nlunr.SortedSet.prototype.locationFor = function (elem) {\n var start = 0,\n end = this.elements.length,\n sectionLength = end - start,\n pivot = start + Math.floor(sectionLength / 2),\n pivotElem = this.elements[pivot]\n\n while (sectionLength > 1) {\n if (pivotElem < elem) start = pivot\n if (pivotElem > elem) end = pivot\n\n sectionLength = end - start\n pivot = start + Math.floor(sectionLength / 2)\n pivotElem = this.elements[pivot]\n }\n\n if (pivotElem > elem) return pivot\n if (pivotElem < elem) return pivot + 1\n}\n\n/**\n * Creates a new lunr.SortedSet that contains the elements in the intersection\n * of this set and the passed set.\n *\n * @param {lunr.SortedSet} otherSet The set to intersect with this set.\n * @returns {lunr.SortedSet}\n * @memberOf SortedSet\n */\nlunr.SortedSet.prototype.intersect = function (otherSet) {\n var intersectSet = new lunr.SortedSet,\n i = 0, j = 0,\n a_len = this.length, b_len = otherSet.length,\n a = this.elements, b = otherSet.elements\n\n while (true) {\n if (i > a_len - 1 || j > b_len - 1) break\n\n if (a[i] === b[j]) {\n intersectSet.add(a[i])\n i++, j++\n continue\n }\n\n if (a[i] < b[j]) {\n i++\n continue\n }\n\n if (a[i] > b[j]) {\n j++\n continue\n }\n };\n\n return intersectSet\n}\n\n/**\n * Makes a copy of this set\n *\n * @returns {lunr.SortedSet}\n * @memberOf SortedSet\n */\nlunr.SortedSet.prototype.clone = function () {\n var clone = new lunr.SortedSet\n\n clone.elements = this.toArray()\n clone.length = clone.elements.length\n\n return clone\n}\n\n/**\n * Creates a new lunr.SortedSet that contains the elements in the union\n * of this set and the passed set.\n *\n * @param {lunr.SortedSet} otherSet The set to union with this set.\n * @returns {lunr.SortedSet}\n * @memberOf SortedSet\n */\nlunr.SortedSet.prototype.union = function (otherSet) {\n var longSet, shortSet, unionSet\n\n if (this.length >= otherSet.length) {\n longSet = this, shortSet = otherSet\n } else {\n longSet = otherSet, shortSet = this\n }\n\n unionSet = longSet.clone()\n\n for(var i = 0, shortSetElements = shortSet.toArray(); i < shortSetElements.length; i++){\n unionSet.add(shortSetElements[i])\n }\n\n return unionSet\n}\n\n/**\n * Returns a representation of the sorted set ready for serialisation.\n *\n * @returns {Array}\n * @memberOf SortedSet\n */\nlunr.SortedSet.prototype.toJSON = function () {\n return this.toArray()\n}\n/*!\n * lunr.Index\n * Copyright (C) 2016 Oliver Nightingale\n */\n\n/**\n * lunr.Index is object that manages a search index. It contains the indexes\n * and stores all the tokens and document lookups. It also provides the main\n * user facing API for the library.\n *\n * @constructor\n */\nlunr.Index = function () {\n this._fields = []\n this._ref = 'id'\n this.pipeline = new lunr.Pipeline\n this.documentStore = new lunr.Store\n this.tokenStore = new lunr.TokenStore\n this.corpusTokens = new lunr.SortedSet\n this.eventEmitter = new lunr.EventEmitter\n this.tokenizerFn = lunr.tokenizer\n\n this._idfCache = {}\n\n this.on('add', 'remove', 'update', (function () {\n this._idfCache = {}\n }).bind(this))\n}\n\n/**\n * Bind a handler to events being emitted by the index.\n *\n * The handler can be bound to many events at the same time.\n *\n * @param {String} [eventName] The name(s) of events to bind the function to.\n * @param {Function} fn The serialised set to load.\n * @memberOf Index\n */\nlunr.Index.prototype.on = function () {\n var args = Array.prototype.slice.call(arguments)\n return this.eventEmitter.addListener.apply(this.eventEmitter, args)\n}\n\n/**\n * Removes a handler from an event being emitted by the index.\n *\n * @param {String} eventName The name of events to remove the function from.\n * @param {Function} fn The serialised set to load.\n * @memberOf Index\n */\nlunr.Index.prototype.off = function (name, fn) {\n return this.eventEmitter.removeListener(name, fn)\n}\n\n/**\n * Loads a previously serialised index.\n *\n * Issues a warning if the index being imported was serialised\n * by a different version of lunr.\n *\n * @param {Object} serialisedData The serialised set to load.\n * @returns {lunr.Index}\n * @memberOf Index\n */\nlunr.Index.load = function (serialisedData) {\n if (serialisedData.version !== lunr.version) {\n lunr.utils.warn('version mismatch: current ' + lunr.version + ' importing ' + serialisedData.version)\n }\n\n var idx = new this\n\n idx._fields = serialisedData.fields\n idx._ref = serialisedData.ref\n\n idx.tokenizer = lunr.tokenizer.load(serialisedData.tokenizer)\n idx.documentStore = lunr.Store.load(serialisedData.documentStore)\n idx.tokenStore = lunr.TokenStore.load(serialisedData.tokenStore)\n idx.corpusTokens = lunr.SortedSet.load(serialisedData.corpusTokens)\n idx.pipeline = lunr.Pipeline.load(serialisedData.pipeline)\n\n return idx\n}\n\n/**\n * Adds a field to the list of fields that will be searchable within documents\n * in the index.\n *\n * An optional boost param can be passed to affect how much tokens in this field\n * rank in search results, by default the boost value is 1.\n *\n * Fields should be added before any documents are added to the index, fields\n * that are added after documents are added to the index will only apply to new\n * documents added to the index.\n *\n * @param {String} fieldName The name of the field within the document that\n * should be indexed\n * @param {Number} boost An optional boost that can be applied to terms in this\n * field.\n * @returns {lunr.Index}\n * @memberOf Index\n */\nlunr.Index.prototype.field = function (fieldName, opts) {\n var opts = opts || {},\n field = { name: fieldName, boost: opts.boost || 1 }\n\n this._fields.push(field)\n return this\n}\n\n/**\n * Sets the property used to uniquely identify documents added to the index,\n * by default this property is 'id'.\n *\n * This should only be changed before adding documents to the index, changing\n * the ref property without resetting the index can lead to unexpected results.\n *\n * The value of ref can be of any type but it _must_ be stably comparable and\n * orderable.\n *\n * @param {String} refName The property to use to uniquely identify the\n * documents in the index.\n * @param {Boolean} emitEvent Whether to emit add events, defaults to true\n * @returns {lunr.Index}\n * @memberOf Index\n */\nlunr.Index.prototype.ref = function (refName) {\n this._ref = refName\n return this\n}\n\n/**\n * Sets the tokenizer used for this index.\n *\n * By default the index will use the default tokenizer, lunr.tokenizer. The tokenizer\n * should only be changed before adding documents to the index. Changing the tokenizer\n * without re-building the index can lead to unexpected results.\n *\n * @param {Function} fn The function to use as a tokenizer.\n * @returns {lunr.Index}\n * @memberOf Index\n */\nlunr.Index.prototype.tokenizer = function (fn) {\n var isRegistered = fn.label && (fn.label in lunr.tokenizer.registeredFunctions)\n\n if (!isRegistered) {\n lunr.utils.warn('Function is not a registered tokenizer. This may cause problems when serialising the index')\n }\n\n this.tokenizerFn = fn\n return this\n}\n\n/**\n * Add a document to the index.\n *\n * This is the way new documents enter the index, this function will run the\n * fields from the document through the index's pipeline and then add it to\n * the index, it will then show up in search results.\n *\n * An 'add' event is emitted with the document that has been added and the index\n * the document has been added to. This event can be silenced by passing false\n * as the second argument to add.\n *\n * @param {Object} doc The document to add to the index.\n * @param {Boolean} emitEvent Whether or not to emit events, default true.\n * @memberOf Index\n */\nlunr.Index.prototype.add = function (doc, emitEvent) {\n var docTokens = {},\n allDocumentTokens = new lunr.SortedSet,\n docRef = doc[this._ref],\n emitEvent = emitEvent === undefined ? true : emitEvent\n\n this._fields.forEach(function (field) {\n var fieldTokens = this.pipeline.run(this.tokenizerFn(doc[field.name]))\n\n docTokens[field.name] = fieldTokens\n\n for (var i = 0; i < fieldTokens.length; i++) {\n var token = fieldTokens[i]\n allDocumentTokens.add(token)\n this.corpusTokens.add(token)\n }\n }, this)\n\n this.documentStore.set(docRef, allDocumentTokens)\n\n for (var i = 0; i < allDocumentTokens.length; i++) {\n var token = allDocumentTokens.elements[i]\n var tf = 0;\n\n for (var j = 0; j < this._fields.length; j++){\n var field = this._fields[j]\n var fieldTokens = docTokens[field.name]\n var fieldLength = fieldTokens.length\n\n if (!fieldLength) continue\n\n var tokenCount = 0\n for (var k = 0; k < fieldLength; k++){\n if (fieldTokens[k] === token){\n tokenCount++\n }\n }\n\n tf += (tokenCount / fieldLength * field.boost)\n }\n\n this.tokenStore.add(token, { ref: docRef, tf: tf })\n };\n\n if (emitEvent) this.eventEmitter.emit('add', doc, this)\n}\n\n/**\n * Removes a document from the index.\n *\n * To make sure documents no longer show up in search results they can be\n * removed from the index using this method.\n *\n * The document passed only needs to have the same ref property value as the\n * document that was added to the index, they could be completely different\n * objects.\n *\n * A 'remove' event is emitted with the document that has been removed and the index\n * the document has been removed from. This event can be silenced by passing false\n * as the second argument to remove.\n *\n * @param {Object} doc The document to remove from the index.\n * @param {Boolean} emitEvent Whether to emit remove events, defaults to true\n * @memberOf Index\n */\nlunr.Index.prototype.remove = function (doc, emitEvent) {\n var docRef = doc[this._ref],\n emitEvent = emitEvent === undefined ? true : emitEvent\n\n if (!this.documentStore.has(docRef)) return\n\n var docTokens = this.documentStore.get(docRef)\n\n this.documentStore.remove(docRef)\n\n docTokens.forEach(function (token) {\n this.tokenStore.remove(token, docRef)\n }, this)\n\n if (emitEvent) this.eventEmitter.emit('remove', doc, this)\n}\n\n/**\n * Updates a document in the index.\n *\n * When a document contained within the index gets updated, fields changed,\n * added or removed, to make sure it correctly matched against search queries,\n * it should be updated in the index.\n *\n * This method is just a wrapper around `remove` and `add`\n *\n * An 'update' event is emitted with the document that has been updated and the index.\n * This event can be silenced by passing false as the second argument to update. Only\n * an update event will be fired, the 'add' and 'remove' events of the underlying calls\n * are silenced.\n *\n * @param {Object} doc The document to update in the index.\n * @param {Boolean} emitEvent Whether to emit update events, defaults to true\n * @see Index.prototype.remove\n * @see Index.prototype.add\n * @memberOf Index\n */\nlunr.Index.prototype.update = function (doc, emitEvent) {\n var emitEvent = emitEvent === undefined ? true : emitEvent\n\n this.remove(doc, false)\n this.add(doc, false)\n\n if (emitEvent) this.eventEmitter.emit('update', doc, this)\n}\n\n/**\n * Calculates the inverse document frequency for a token within the index.\n *\n * @param {String} token The token to calculate the idf of.\n * @see Index.prototype.idf\n * @private\n * @memberOf Index\n */\nlunr.Index.prototype.idf = function (term) {\n var cacheKey = \"@\" + term\n if (Object.prototype.hasOwnProperty.call(this._idfCache, cacheKey)) return this._idfCache[cacheKey]\n\n var documentFrequency = this.tokenStore.count(term),\n idf = 1\n\n if (documentFrequency > 0) {\n idf = 1 + Math.log(this.documentStore.length / documentFrequency)\n }\n\n return this._idfCache[cacheKey] = idf\n}\n\n/**\n * Searches the index using the passed query.\n *\n * Queries should be a string, multiple words are allowed and will lead to an\n * AND based query, e.g. `idx.search('foo bar')` will run a search for\n * documents containing both 'foo' and 'bar'.\n *\n * All query tokens are passed through the same pipeline that document tokens\n * are passed through, so any language processing involved will be run on every\n * query term.\n *\n * Each query term is expanded, so that the term 'he' might be expanded to\n * 'hello' and 'help' if those terms were already included in the index.\n *\n * Matching documents are returned as an array of objects, each object contains\n * the matching document ref, as set for this index, and the similarity score\n * for this document against the query.\n *\n * @param {String} query The query to search the index with.\n * @returns {Object}\n * @see Index.prototype.idf\n * @see Index.prototype.documentVector\n * @memberOf Index\n */\nlunr.Index.prototype.search = function (query) {\n var queryTokens = this.pipeline.run(this.tokenizerFn(query)),\n queryVector = new lunr.Vector,\n documentSets = [],\n fieldBoosts = this._fields.reduce(function (memo, f) { return memo + f.boost }, 0)\n\n var hasSomeToken = queryTokens.some(function (token) {\n return this.tokenStore.has(token)\n }, this)\n\n if (!hasSomeToken) return []\n\n queryTokens\n .forEach(function (token, i, tokens) {\n var tf = 1 / tokens.length * this._fields.length * fieldBoosts,\n self = this\n\n var set = this.tokenStore.expand(token).reduce(function (memo, key) {\n var pos = self.corpusTokens.indexOf(key),\n idf = self.idf(key),\n similarityBoost = 1,\n set = new lunr.SortedSet\n\n // if the expanded key is not an exact match to the token then\n // penalise the score for this key by how different the key is\n // to the token.\n if (key !== token) {\n var diff = Math.max(3, key.length - token.length)\n similarityBoost = 1 / Math.log(diff)\n }\n\n // calculate the query tf-idf score for this token\n // applying an similarityBoost to ensure exact matches\n // these rank higher than expanded terms\n if (pos > -1) queryVector.insert(pos, tf * idf * similarityBoost)\n\n // add all the documents that have this key into a set\n // ensuring that the type of key is preserved\n var matchingDocuments = self.tokenStore.get(key),\n refs = Object.keys(matchingDocuments),\n refsLen = refs.length\n\n for (var i = 0; i < refsLen; i++) {\n set.add(matchingDocuments[refs[i]].ref)\n }\n\n return memo.union(set)\n }, new lunr.SortedSet)\n\n documentSets.push(set)\n }, this)\n\n var documentSet = documentSets.reduce(function (memo, set) {\n return memo.intersect(set)\n })\n\n return documentSet\n .map(function (ref) {\n return { ref: ref, score: queryVector.similarity(this.documentVector(ref)) }\n }, this)\n .sort(function (a, b) {\n return b.score - a.score\n })\n}\n\n/**\n * Generates a vector containing all the tokens in the document matching the\n * passed documentRef.\n *\n * The vector contains the tf-idf score for each token contained in the\n * document with the passed documentRef. The vector will contain an element\n * for every token in the indexes corpus, if the document does not contain that\n * token the element will be 0.\n *\n * @param {Object} documentRef The ref to find the document with.\n * @returns {lunr.Vector}\n * @private\n * @memberOf Index\n */\nlunr.Index.prototype.documentVector = function (documentRef) {\n var documentTokens = this.documentStore.get(documentRef),\n documentTokensLength = documentTokens.length,\n documentVector = new lunr.Vector\n\n for (var i = 0; i < documentTokensLength; i++) {\n var token = documentTokens.elements[i],\n tf = this.tokenStore.get(token)[documentRef].tf,\n idf = this.idf(token)\n\n documentVector.insert(this.corpusTokens.indexOf(token), tf * idf)\n };\n\n return documentVector\n}\n\n/**\n * Returns a representation of the index ready for serialisation.\n *\n * @returns {Object}\n * @memberOf Index\n */\nlunr.Index.prototype.toJSON = function () {\n return {\n version: lunr.version,\n fields: this._fields,\n ref: this._ref,\n tokenizer: this.tokenizerFn.label,\n documentStore: this.documentStore.toJSON(),\n tokenStore: this.tokenStore.toJSON(),\n corpusTokens: this.corpusTokens.toJSON(),\n pipeline: this.pipeline.toJSON()\n }\n}\n\n/**\n * Applies a plugin to the current index.\n *\n * A plugin is a function that is called with the index as its context.\n * Plugins can be used to customise or extend the behaviour the index\n * in some way. A plugin is just a function, that encapsulated the custom\n * behaviour that should be applied to the index.\n *\n * The plugin function will be called with the index as its argument, additional\n * arguments can also be passed when calling use. The function will be called\n * with the index as its context.\n *\n * Example:\n *\n * var myPlugin = function (idx, arg1, arg2) {\n * // `this` is the index to be extended\n * // apply any extensions etc here.\n * }\n *\n * var idx = lunr(function () {\n * this.use(myPlugin, 'arg1', 'arg2')\n * })\n *\n * @param {Function} plugin The plugin to apply.\n * @memberOf Index\n */\nlunr.Index.prototype.use = function (plugin) {\n var args = Array.prototype.slice.call(arguments, 1)\n args.unshift(this)\n plugin.apply(this, args)\n}\n/*!\n * lunr.Store\n * Copyright (C) 2016 Oliver Nightingale\n */\n\n/**\n * lunr.Store is a simple key-value store used for storing sets of tokens for\n * documents stored in index.\n *\n * @constructor\n * @module\n */\nlunr.Store = function () {\n this.store = {}\n this.length = 0\n}\n\n/**\n * Loads a previously serialised store\n *\n * @param {Object} serialisedData The serialised store to load.\n * @returns {lunr.Store}\n * @memberOf Store\n */\nlunr.Store.load = function (serialisedData) {\n var store = new this\n\n store.length = serialisedData.length\n store.store = Object.keys(serialisedData.store).reduce(function (memo, key) {\n memo[key] = lunr.SortedSet.load(serialisedData.store[key])\n return memo\n }, {})\n\n return store\n}\n\n/**\n * Stores the given tokens in the store against the given id.\n *\n * @param {Object} id The key used to store the tokens against.\n * @param {Object} tokens The tokens to store against the key.\n * @memberOf Store\n */\nlunr.Store.prototype.set = function (id, tokens) {\n if (!this.has(id)) this.length++\n this.store[id] = tokens\n}\n\n/**\n * Retrieves the tokens from the store for a given key.\n *\n * @param {Object} id The key to lookup and retrieve from the store.\n * @returns {Object}\n * @memberOf Store\n */\nlunr.Store.prototype.get = function (id) {\n return this.store[id]\n}\n\n/**\n * Checks whether the store contains a key.\n *\n * @param {Object} id The id to look up in the store.\n * @returns {Boolean}\n * @memberOf Store\n */\nlunr.Store.prototype.has = function (id) {\n return id in this.store\n}\n\n/**\n * Removes the value for a key in the store.\n *\n * @param {Object} id The id to remove from the store.\n * @memberOf Store\n */\nlunr.Store.prototype.remove = function (id) {\n if (!this.has(id)) return\n\n delete this.store[id]\n this.length--\n}\n\n/**\n * Returns a representation of the store ready for serialisation.\n *\n * @returns {Object}\n * @memberOf Store\n */\nlunr.Store.prototype.toJSON = function () {\n return {\n store: this.store,\n length: this.length\n }\n}\n\n/*!\n * lunr.stemmer\n * Copyright (C) 2016 Oliver Nightingale\n * Includes code from - http://tartarus.org/~martin/PorterStemmer/js.txt\n */\n\n/**\n * lunr.stemmer is an english language stemmer, this is a JavaScript\n * implementation of the PorterStemmer taken from http://tartarus.org/~martin\n *\n * @module\n * @param {String} str The string to stem\n * @returns {String}\n * @see lunr.Pipeline\n */\nlunr.stemmer = (function(){\n var step2list = {\n \"ational\" : \"ate\",\n \"tional\" : \"tion\",\n \"enci\" : \"ence\",\n \"anci\" : \"ance\",\n \"izer\" : \"ize\",\n \"bli\" : \"ble\",\n \"alli\" : \"al\",\n \"entli\" : \"ent\",\n \"eli\" : \"e\",\n \"ousli\" : \"ous\",\n \"ization\" : \"ize\",\n \"ation\" : \"ate\",\n \"ator\" : \"ate\",\n \"alism\" : \"al\",\n \"iveness\" : \"ive\",\n \"fulness\" : \"ful\",\n \"ousness\" : \"ous\",\n \"aliti\" : \"al\",\n \"iviti\" : \"ive\",\n \"biliti\" : \"ble\",\n \"logi\" : \"log\"\n },\n\n step3list = {\n \"icate\" : \"ic\",\n \"ative\" : \"\",\n \"alize\" : \"al\",\n \"iciti\" : \"ic\",\n \"ical\" : \"ic\",\n \"ful\" : \"\",\n \"ness\" : \"\"\n },\n\n c = \"[^aeiou]\", // consonant\n v = \"[aeiouy]\", // vowel\n C = c + \"[^aeiouy]*\", // consonant sequence\n V = v + \"[aeiou]*\", // vowel sequence\n\n mgr0 = \"^(\" + C + \")?\" + V + C, // [C]VC... is m>0\n meq1 = \"^(\" + C + \")?\" + V + C + \"(\" + V + \")?$\", // [C]VC[V] is m=1\n mgr1 = \"^(\" + C + \")?\" + V + C + V + C, // [C]VCVC... is m>1\n s_v = \"^(\" + C + \")?\" + v; // vowel in stem\n\n var re_mgr0 = new RegExp(mgr0);\n var re_mgr1 = new RegExp(mgr1);\n var re_meq1 = new RegExp(meq1);\n var re_s_v = new RegExp(s_v);\n\n var re_1a = /^(.+?)(ss|i)es$/;\n var re2_1a = /^(.+?)([^s])s$/;\n var re_1b = /^(.+?)eed$/;\n var re2_1b = /^(.+?)(ed|ing)$/;\n var re_1b_2 = /.$/;\n var re2_1b_2 = /(at|bl|iz)$/;\n var re3_1b_2 = new RegExp(\"([^aeiouylsz])\\\\1$\");\n var re4_1b_2 = new RegExp(\"^\" + C + v + \"[^aeiouwxy]$\");\n\n var re_1c = /^(.+?[^aeiou])y$/;\n var re_2 = /^(.+?)(ational|tional|enci|anci|izer|bli|alli|entli|eli|ousli|ization|ation|ator|alism|iveness|fulness|ousness|aliti|iviti|biliti|logi)$/;\n\n var re_3 = /^(.+?)(icate|ative|alize|iciti|ical|ful|ness)$/;\n\n var re_4 = /^(.+?)(al|ance|ence|er|ic|able|ible|ant|ement|ment|ent|ou|ism|ate|iti|ous|ive|ize)$/;\n var re2_4 = /^(.+?)(s|t)(ion)$/;\n\n var re_5 = /^(.+?)e$/;\n var re_5_1 = /ll$/;\n var re3_5 = new RegExp(\"^\" + C + v + \"[^aeiouwxy]$\");\n\n var porterStemmer = function porterStemmer(w) {\n var stem,\n suffix,\n firstch,\n re,\n re2,\n re3,\n re4;\n\n if (w.length < 3) { return w; }\n\n firstch = w.substr(0,1);\n if (firstch == \"y\") {\n w = firstch.toUpperCase() + w.substr(1);\n }\n\n // Step 1a\n re = re_1a\n re2 = re2_1a;\n\n if (re.test(w)) { w = w.replace(re,\"$1$2\"); }\n else if (re2.test(w)) { w = w.replace(re2,\"$1$2\"); }\n\n // Step 1b\n re = re_1b;\n re2 = re2_1b;\n if (re.test(w)) {\n var fp = re.exec(w);\n re = re_mgr0;\n if (re.test(fp[1])) {\n re = re_1b_2;\n w = w.replace(re,\"\");\n }\n } else if (re2.test(w)) {\n var fp = re2.exec(w);\n stem = fp[1];\n re2 = re_s_v;\n if (re2.test(stem)) {\n w = stem;\n re2 = re2_1b_2;\n re3 = re3_1b_2;\n re4 = re4_1b_2;\n if (re2.test(w)) { w = w + \"e\"; }\n else if (re3.test(w)) { re = re_1b_2; w = w.replace(re,\"\"); }\n else if (re4.test(w)) { w = w + \"e\"; }\n }\n }\n\n // Step 1c - replace suffix y or Y by i if preceded by a non-vowel which is not the first letter of the word (so cry -> cri, by -> by, say -> say)\n re = re_1c;\n if (re.test(w)) {\n var fp = re.exec(w);\n stem = fp[1];\n w = stem + \"i\";\n }\n\n // Step 2\n re = re_2;\n if (re.test(w)) {\n var fp = re.exec(w);\n stem = fp[1];\n suffix = fp[2];\n re = re_mgr0;\n if (re.test(stem)) {\n w = stem + step2list[suffix];\n }\n }\n\n // Step 3\n re = re_3;\n if (re.test(w)) {\n var fp = re.exec(w);\n stem = fp[1];\n suffix = fp[2];\n re = re_mgr0;\n if (re.test(stem)) {\n w = stem + step3list[suffix];\n }\n }\n\n // Step 4\n re = re_4;\n re2 = re2_4;\n if (re.test(w)) {\n var fp = re.exec(w);\n stem = fp[1];\n re = re_mgr1;\n if (re.test(stem)) {\n w = stem;\n }\n } else if (re2.test(w)) {\n var fp = re2.exec(w);\n stem = fp[1] + fp[2];\n re2 = re_mgr1;\n if (re2.test(stem)) {\n w = stem;\n }\n }\n\n // Step 5\n re = re_5;\n if (re.test(w)) {\n var fp = re.exec(w);\n stem = fp[1];\n re = re_mgr1;\n re2 = re_meq1;\n re3 = re3_5;\n if (re.test(stem) || (re2.test(stem) && !(re3.test(stem)))) {\n w = stem;\n }\n }\n\n re = re_5_1;\n re2 = re_mgr1;\n if (re.test(w) && re2.test(w)) {\n re = re_1b_2;\n w = w.replace(re,\"\");\n }\n\n // and turn initial Y back to y\n\n if (firstch == \"y\") {\n w = firstch.toLowerCase() + w.substr(1);\n }\n\n return w;\n };\n\n return porterStemmer;\n})();\n\nlunr.Pipeline.registerFunction(lunr.stemmer, 'stemmer')\n/*!\n * lunr.stopWordFilter\n * Copyright (C) 2016 Oliver Nightingale\n */\n\n/**\n * lunr.generateStopWordFilter builds a stopWordFilter function from the provided\n * list of stop words.\n *\n * The built in lunr.stopWordFilter is built using this generator and can be used\n * to generate custom stopWordFilters for applications or non English languages.\n *\n * @module\n * @param {Array} token The token to pass through the filter\n * @returns {Function}\n * @see lunr.Pipeline\n * @see lunr.stopWordFilter\n */\nlunr.generateStopWordFilter = function (stopWords) {\n var words = stopWords.reduce(function (memo, stopWord) {\n memo[stopWord] = stopWord\n return memo\n }, {})\n\n return function (token) {\n if (token && words[token] !== token) return token\n }\n}\n\n/**\n * lunr.stopWordFilter is an English language stop word list filter, any words\n * contained in the list will not be passed through the filter.\n *\n * This is intended to be used in the Pipeline. If the token does not pass the\n * filter then undefined will be returned.\n *\n * @module\n * @param {String} token The token to pass through the filter\n * @returns {String}\n * @see lunr.Pipeline\n */\nlunr.stopWordFilter = lunr.generateStopWordFilter([\n 'a',\n 'able',\n 'about',\n 'across',\n 'after',\n 'all',\n 'almost',\n 'also',\n 'am',\n 'among',\n 'an',\n 'and',\n 'any',\n 'are',\n 'as',\n 'at',\n 'be',\n 'because',\n 'been',\n 'but',\n 'by',\n 'can',\n 'cannot',\n 'could',\n 'dear',\n 'did',\n 'do',\n 'does',\n 'either',\n 'else',\n 'ever',\n 'every',\n 'for',\n 'from',\n 'get',\n 'got',\n 'had',\n 'has',\n 'have',\n 'he',\n 'her',\n 'hers',\n 'him',\n 'his',\n 'how',\n 'however',\n 'i',\n 'if',\n 'in',\n 'into',\n 'is',\n 'it',\n 'its',\n 'just',\n 'least',\n 'let',\n 'like',\n 'likely',\n 'may',\n 'me',\n 'might',\n 'most',\n 'must',\n 'my',\n 'neither',\n 'no',\n 'nor',\n 'not',\n 'of',\n 'off',\n 'often',\n 'on',\n 'only',\n 'or',\n 'other',\n 'our',\n 'own',\n 'rather',\n 'said',\n 'say',\n 'says',\n 'she',\n 'should',\n 'since',\n 'so',\n 'some',\n 'than',\n 'that',\n 'the',\n 'their',\n 'them',\n 'then',\n 'there',\n 'these',\n 'they',\n 'this',\n 'tis',\n 'to',\n 'too',\n 'twas',\n 'us',\n 'wants',\n 'was',\n 'we',\n 'were',\n 'what',\n 'when',\n 'where',\n 'which',\n 'while',\n 'who',\n 'whom',\n 'why',\n 'will',\n 'with',\n 'would',\n 'yet',\n 'you',\n 'your'\n])\n\nlunr.Pipeline.registerFunction(lunr.stopWordFilter, 'stopWordFilter')\n/*!\n * lunr.trimmer\n * Copyright (C) 2016 Oliver Nightingale\n */\n\n/**\n * lunr.trimmer is a pipeline function for trimming non word\n * characters from the begining and end of tokens before they\n * enter the index.\n *\n * This implementation may not work correctly for non latin\n * characters and should either be removed or adapted for use\n * with languages with non-latin characters.\n *\n * @module\n * @param {String} token The token to pass through the filter\n * @returns {String}\n * @see lunr.Pipeline\n */\nlunr.trimmer = function (token) {\n return token.replace(/^\\W+/, '').replace(/\\W+$/, '')\n}\n\nlunr.Pipeline.registerFunction(lunr.trimmer, 'trimmer')\n/*!\n * lunr.stemmer\n * Copyright (C) 2016 Oliver Nightingale\n * Includes code from - http://tartarus.org/~martin/PorterStemmer/js.txt\n */\n\n/**\n * lunr.TokenStore is used for efficient storing and lookup of the reverse\n * index of token to document ref.\n *\n * @constructor\n */\nlunr.TokenStore = function () {\n this.root = { docs: {} }\n this.length = 0\n}\n\n/**\n * Loads a previously serialised token store\n *\n * @param {Object} serialisedData The serialised token store to load.\n * @returns {lunr.TokenStore}\n * @memberOf TokenStore\n */\nlunr.TokenStore.load = function (serialisedData) {\n var store = new this\n\n store.root = serialisedData.root\n store.length = serialisedData.length\n\n return store\n}\n\n/**\n * Adds a new token doc pair to the store.\n *\n * By default this function starts at the root of the current store, however\n * it can start at any node of any token store if required.\n *\n * @param {String} token The token to store the doc under\n * @param {Object} doc The doc to store against the token\n * @param {Object} root An optional node at which to start looking for the\n * correct place to enter the doc, by default the root of this lunr.TokenStore\n * is used.\n * @memberOf TokenStore\n */\nlunr.TokenStore.prototype.add = function (token, doc, root) {\n var root = root || this.root,\n key = token.charAt(0),\n rest = token.slice(1)\n\n if (!(key in root)) root[key] = {docs: {}}\n\n if (rest.length === 0) {\n root[key].docs[doc.ref] = doc\n this.length += 1\n return\n } else {\n return this.add(rest, doc, root[key])\n }\n}\n\n/**\n * Checks whether this key is contained within this lunr.TokenStore.\n *\n * By default this function starts at the root of the current store, however\n * it can start at any node of any token store if required.\n *\n * @param {String} token The token to check for\n * @param {Object} root An optional node at which to start\n * @memberOf TokenStore\n */\nlunr.TokenStore.prototype.has = function (token) {\n if (!token) return false\n\n var node = this.root\n\n for (var i = 0; i < token.length; i++) {\n if (!node[token.charAt(i)]) return false\n\n node = node[token.charAt(i)]\n }\n\n return true\n}\n\n/**\n * Retrieve a node from the token store for a given token.\n *\n * By default this function starts at the root of the current store, however\n * it can start at any node of any token store if required.\n *\n * @param {String} token The token to get the node for.\n * @param {Object} root An optional node at which to start.\n * @returns {Object}\n * @see TokenStore.prototype.get\n * @memberOf TokenStore\n */\nlunr.TokenStore.prototype.getNode = function (token) {\n if (!token) return {}\n\n var node = this.root\n\n for (var i = 0; i < token.length; i++) {\n if (!node[token.charAt(i)]) return {}\n\n node = node[token.charAt(i)]\n }\n\n return node\n}\n\n/**\n * Retrieve the documents for a node for the given token.\n *\n * By default this function starts at the root of the current store, however\n * it can start at any node of any token store if required.\n *\n * @param {String} token The token to get the documents for.\n * @param {Object} root An optional node at which to start.\n * @returns {Object}\n * @memberOf TokenStore\n */\nlunr.TokenStore.prototype.get = function (token, root) {\n return this.getNode(token, root).docs || {}\n}\n\nlunr.TokenStore.prototype.count = function (token, root) {\n return Object.keys(this.get(token, root)).length\n}\n\n/**\n * Remove the document identified by ref from the token in the store.\n *\n * By default this function starts at the root of the current store, however\n * it can start at any node of any token store if required.\n *\n * @param {String} token The token to get the documents for.\n * @param {String} ref The ref of the document to remove from this token.\n * @param {Object} root An optional node at which to start.\n * @returns {Object}\n * @memberOf TokenStore\n */\nlunr.TokenStore.prototype.remove = function (token, ref) {\n if (!token) return\n var node = this.root\n\n for (var i = 0; i < token.length; i++) {\n if (!(token.charAt(i) in node)) return\n node = node[token.charAt(i)]\n }\n\n delete node.docs[ref]\n}\n\n/**\n * Find all the possible suffixes of the passed token using tokens\n * currently in the store.\n *\n * @param {String} token The token to expand.\n * @returns {Array}\n * @memberOf TokenStore\n */\nlunr.TokenStore.prototype.expand = function (token, memo) {\n var root = this.getNode(token),\n docs = root.docs || {},\n memo = memo || []\n\n if (Object.keys(docs).length) memo.push(token)\n\n Object.keys(root)\n .forEach(function (key) {\n if (key === 'docs') return\n\n memo.concat(this.expand(token + key, memo))\n }, this)\n\n return memo\n}\n\n/**\n * Returns a representation of the token store ready for serialisation.\n *\n * @returns {Object}\n * @memberOf TokenStore\n */\nlunr.TokenStore.prototype.toJSON = function () {\n return {\n root: this.root,\n length: this.length\n }\n}\n\n /**\n * export the module via AMD, CommonJS or as a browser global\n * Export code from https://github.com/umdjs/umd/blob/master/returnExports.js\n */\n ;(function (root, factory) {\n if (typeof define === 'function' && define.amd) {\n // AMD. Register as an anonymous module.\n define(factory)\n } else if (typeof exports === 'object') {\n /**\n * Node. Does not work with strict CommonJS, but\n * only CommonJS-like enviroments that support module.exports,\n * like Node.\n */\n module.exports = factory()\n } else {\n // Browser globals (root is window)\n root.lunr = factory()\n }\n }(this, function () {\n /**\n * Just return a value to define the module export.\n * This example returns an object, but the module\n * can return a function as the exported value.\n */\n return lunr\n }))\n})();\n\n\n\n/*****************\n ** WEBPACK FOOTER\n ** ./~/lunr/lunr.js\n ** module id = 19\n ** module chunks = 0\n **/","export default {\"categories\":[{\"name\":\"People\",\"emojis\":[\"grinning\",\"grimacing\",\"grin\",\"joy\",\"smiley\",\"smile\",\"sweat_smile\",\"laughing\",\"innocent\",\"wink\",\"blush\",\"slightly_smiling_face\",\"upside_down_face\",\"relaxed\",\"yum\",\"relieved\",\"heart_eyes\",\"kissing_heart\",\"kissing\",\"kissing_smiling_eyes\",\"kissing_closed_eyes\",\"stuck_out_tongue_winking_eye\",\"stuck_out_tongue_closed_eyes\",\"stuck_out_tongue\",\"money_mouth_face\",\"nerd_face\",\"sunglasses\",\"hugging_face\",\"smirk\",\"no_mouth\",\"neutral_face\",\"expressionless\",\"unamused\",\"face_with_rolling_eyes\",\"thinking_face\",\"flushed\",\"disappointed\",\"worried\",\"angry\",\"rage\",\"pensive\",\"confused\",\"slightly_frowning_face\",\"white_frowning_face\",\"persevere\",\"confounded\",\"tired_face\",\"weary\",\"triumph\",\"open_mouth\",\"scream\",\"fearful\",\"cold_sweat\",\"hushed\",\"frowning\",\"anguished\",\"cry\",\"disappointed_relieved\",\"sleepy\",\"sweat\",\"sob\",\"dizzy_face\",\"astonished\",\"zipper_mouth_face\",\"mask\",\"face_with_thermometer\",\"face_with_head_bandage\",\"sleeping\",\"zzz\",\"hankey\",\"smiling_imp\",\"imp\",\"japanese_ogre\",\"japanese_goblin\",\"skull\",\"ghost\",\"alien\",\"robot_face\",\"smiley_cat\",\"smile_cat\",\"joy_cat\",\"heart_eyes_cat\",\"smirk_cat\",\"kissing_cat\",\"scream_cat\",\"crying_cat_face\",\"pouting_cat\",\"raised_hands\",\"clap\",\"wave\",\"+1\",\"-1\",\"facepunch\",\"fist\",\"v\",\"ok_hand\",\"hand\",\"open_hands\",\"muscle\",\"pray\",\"point_up\",\"point_up_2\",\"point_down\",\"point_left\",\"point_right\",\"middle_finger\",\"raised_hand_with_fingers_splayed\",\"the_horns\",\"spock-hand\",\"writing_hand\",\"nail_care\",\"lips\",\"tongue\",\"ear\",\"nose\",\"eye\",\"eyes\",\"bust_in_silhouette\",\"busts_in_silhouette\",\"speaking_head_in_silhouette\",\"baby\",\"boy\",\"girl\",\"man\",\"woman\",\"person_with_blond_hair\",\"older_man\",\"older_woman\",\"man_with_gua_pi_mao\",\"man_with_turban\",\"cop\",\"construction_worker\",\"guardsman\",\"sleuth_or_spy\",\"santa\",\"angel\",\"princess\",\"bride_with_veil\",\"walking\",\"runner\",\"dancer\",\"dancers\",\"couple\",\"two_men_holding_hands\",\"two_women_holding_hands\",\"bow\",\"information_desk_person\",\"no_good\",\"ok_woman\",\"raising_hand\",\"person_with_pouting_face\",\"person_frowning\",\"haircut\",\"massage\",\"couple_with_heart\",\"woman-heart-woman\",\"man-heart-man\",\"couplekiss\",\"woman-kiss-woman\",\"man-kiss-man\",\"family\",\"man-woman-girl\",\"man-woman-girl-boy\",\"man-woman-boy-boy\",\"man-woman-girl-girl\",\"woman-woman-boy\",\"woman-woman-girl\",\"woman-woman-girl-boy\",\"woman-woman-boy-boy\",\"woman-woman-girl-girl\",\"man-man-boy\",\"man-man-girl\",\"man-man-girl-boy\",\"man-man-boy-boy\",\"man-man-girl-girl\",\"womans_clothes\",\"shirt\",\"jeans\",\"necktie\",\"dress\",\"bikini\",\"kimono\",\"lipstick\",\"kiss\",\"footprints\",\"high_heel\",\"sandal\",\"boot\",\"mans_shoe\",\"athletic_shoe\",\"womans_hat\",\"tophat\",\"helmet_with_white_cross\",\"mortar_board\",\"crown\",\"school_satchel\",\"pouch\",\"purse\",\"handbag\",\"briefcase\",\"eyeglasses\",\"dark_sunglasses\",\"ring\",\"closed_umbrella\"]},{\"name\":\"Nature\",\"emojis\":[\"dog\",\"cat\",\"mouse\",\"hamster\",\"rabbit\",\"bear\",\"panda_face\",\"koala\",\"tiger\",\"lion_face\",\"cow\",\"pig\",\"pig_nose\",\"frog\",\"octopus\",\"monkey_face\",\"see_no_evil\",\"hear_no_evil\",\"speak_no_evil\",\"monkey\",\"chicken\",\"penguin\",\"bird\",\"baby_chick\",\"hatching_chick\",\"hatched_chick\",\"wolf\",\"boar\",\"horse\",\"unicorn_face\",\"bee\",\"bug\",\"snail\",\"beetle\",\"ant\",\"spider\",\"scorpion\",\"crab\",\"snake\",\"turtle\",\"tropical_fish\",\"fish\",\"blowfish\",\"dolphin\",\"whale\",\"whale2\",\"crocodile\",\"leopard\",\"tiger2\",\"water_buffalo\",\"ox\",\"cow2\",\"dromedary_camel\",\"camel\",\"elephant\",\"goat\",\"ram\",\"sheep\",\"racehorse\",\"pig2\",\"rat\",\"mouse2\",\"rooster\",\"turkey\",\"dove_of_peace\",\"dog2\",\"poodle\",\"cat2\",\"rabbit2\",\"chipmunk\",\"feet\",\"dragon\",\"dragon_face\",\"cactus\",\"christmas_tree\",\"evergreen_tree\",\"deciduous_tree\",\"palm_tree\",\"seedling\",\"herb\",\"shamrock\",\"four_leaf_clover\",\"bamboo\",\"tanabata_tree\",\"leaves\",\"fallen_leaf\",\"maple_leaf\",\"ear_of_rice\",\"hibiscus\",\"sunflower\",\"rose\",\"tulip\",\"blossom\",\"cherry_blossom\",\"bouquet\",\"mushroom\",\"chestnut\",\"jack_o_lantern\",\"shell\",\"spider_web\",\"earth_americas\",\"earth_africa\",\"earth_asia\",\"full_moon\",\"waning_gibbous_moon\",\"last_quarter_moon\",\"waning_crescent_moon\",\"new_moon\",\"waxing_crescent_moon\",\"first_quarter_moon\",\"moon\",\"new_moon_with_face\",\"full_moon_with_face\",\"first_quarter_moon_with_face\",\"last_quarter_moon_with_face\",\"sun_with_face\",\"crescent_moon\",\"star\",\"star2\",\"dizzy\",\"sparkles\",\"comet\",\"sunny\",\"mostly_sunny\",\"partly_sunny\",\"barely_sunny\",\"partly_sunny_rain\",\"cloud\",\"rain_cloud\",\"thunder_cloud_and_rain\",\"lightning\",\"zap\",\"fire\",\"boom\",\"snowflake\",\"snow_cloud\",\"snowman\",\"snowman_without_snow\",\"wind_blowing_face\",\"dash\",\"tornado\",\"fog\",\"umbrella\",\"umbrella_with_rain_drops\",\"droplet\",\"sweat_drops\",\"ocean\"]},{\"name\":\"Foods\",\"emojis\":[\"green_apple\",\"apple\",\"pear\",\"tangerine\",\"lemon\",\"banana\",\"watermelon\",\"grapes\",\"strawberry\",\"melon\",\"cherries\",\"peach\",\"pineapple\",\"tomato\",\"eggplant\",\"hot_pepper\",\"corn\",\"sweet_potato\",\"honey_pot\",\"bread\",\"cheese_wedge\",\"poultry_leg\",\"meat_on_bone\",\"fried_shrimp\",\"egg\",\"hamburger\",\"fries\",\"hotdog\",\"pizza\",\"spaghetti\",\"taco\",\"burrito\",\"ramen\",\"stew\",\"fish_cake\",\"sushi\",\"bento\",\"curry\",\"rice_ball\",\"rice\",\"rice_cracker\",\"oden\",\"dango\",\"shaved_ice\",\"ice_cream\",\"icecream\",\"cake\",\"birthday\",\"custard\",\"candy\",\"lollipop\",\"chocolate_bar\",\"popcorn\",\"doughnut\",\"cookie\",\"beer\",\"beers\",\"wine_glass\",\"cocktail\",\"tropical_drink\",\"champagne\",\"sake\",\"tea\",\"coffee\",\"baby_bottle\",\"fork_and_knife\",\"knife_fork_plate\"]},{\"name\":\"Activity\",\"emojis\":[\"soccer\",\"basketball\",\"football\",\"baseball\",\"tennis\",\"volleyball\",\"rugby_football\",\"8ball\",\"golf\",\"golfer\",\"table_tennis_paddle_and_ball\",\"badminton_racquet_and_shuttlecock\",\"ice_hockey_stick_and_puck\",\"field_hockey_stick_and_ball\",\"cricket_bat_and_ball\",\"ski\",\"skier\",\"snowboarder\",\"ice_skate\",\"bow_and_arrow\",\"fishing_pole_and_fish\",\"rowboat\",\"swimmer\",\"surfer\",\"bath\",\"person_with_ball\",\"weight_lifter\",\"bicyclist\",\"mountain_bicyclist\",\"horse_racing\",\"man_in_business_suit_levitating\",\"trophy\",\"running_shirt_with_sash\",\"sports_medal\",\"medal\",\"reminder_ribbon\",\"rosette\",\"ticket\",\"admission_tickets\",\"performing_arts\",\"art\",\"circus_tent\",\"microphone\",\"headphones\",\"musical_score\",\"musical_keyboard\",\"saxophone\",\"trumpet\",\"guitar\",\"violin\",\"clapper\",\"video_game\",\"space_invader\",\"dart\",\"game_die\",\"slot_machine\",\"bowling\"]},{\"name\":\"Places\",\"emojis\":[\"car\",\"taxi\",\"blue_car\",\"bus\",\"trolleybus\",\"racing_car\",\"police_car\",\"ambulance\",\"fire_engine\",\"minibus\",\"truck\",\"articulated_lorry\",\"tractor\",\"racing_motorcycle\",\"bike\",\"rotating_light\",\"oncoming_police_car\",\"oncoming_bus\",\"oncoming_automobile\",\"oncoming_taxi\",\"aerial_tramway\",\"mountain_cableway\",\"suspension_railway\",\"railway_car\",\"train\",\"monorail\",\"bullettrain_side\",\"bullettrain_front\",\"light_rail\",\"mountain_railway\",\"steam_locomotive\",\"train2\",\"metro\",\"tram\",\"station\",\"helicopter\",\"small_airplane\",\"airplane\",\"airplane_departure\",\"airplane_arriving\",\"boat\",\"motor_boat\",\"speedboat\",\"ferry\",\"passenger_ship\",\"rocket\",\"satellite\",\"seat\",\"anchor\",\"construction\",\"fuelpump\",\"busstop\",\"vertical_traffic_light\",\"traffic_light\",\"checkered_flag\",\"ship\",\"ferris_wheel\",\"roller_coaster\",\"carousel_horse\",\"building_construction\",\"foggy\",\"tokyo_tower\",\"factory\",\"fountain\",\"rice_scene\",\"mountain\",\"snow_capped_mountain\",\"mount_fuji\",\"volcano\",\"japan\",\"camping\",\"tent\",\"national_park\",\"motorway\",\"railway_track\",\"sunrise\",\"sunrise_over_mountains\",\"desert\",\"beach_with_umbrella\",\"desert_island\",\"city_sunrise\",\"city_sunset\",\"cityscape\",\"night_with_stars\",\"bridge_at_night\",\"milky_way\",\"stars\",\"sparkler\",\"fireworks\",\"rainbow\",\"house_buildings\",\"european_castle\",\"japanese_castle\",\"stadium\",\"statue_of_liberty\",\"house\",\"house_with_garden\",\"derelict_house_building\",\"office\",\"department_store\",\"post_office\",\"european_post_office\",\"hospital\",\"bank\",\"hotel\",\"convenience_store\",\"school\",\"love_hotel\",\"wedding\",\"classical_building\",\"church\",\"mosque\",\"synagogue\",\"kaaba\",\"shinto_shrine\"]},{\"name\":\"Objects\",\"emojis\":[\"watch\",\"iphone\",\"calling\",\"computer\",\"keyboard\",\"desktop_computer\",\"printer\",\"three_button_mouse\",\"trackball\",\"joystick\",\"compression\",\"minidisc\",\"floppy_disk\",\"cd\",\"dvd\",\"vhs\",\"camera\",\"camera_with_flash\",\"video_camera\",\"movie_camera\",\"film_projector\",\"film_frames\",\"telephone_receiver\",\"phone\",\"pager\",\"fax\",\"tv\",\"radio\",\"studio_microphone\",\"level_slider\",\"control_knobs\",\"stopwatch\",\"timer_clock\",\"alarm_clock\",\"mantelpiece_clock\",\"hourglass_flowing_sand\",\"hourglass\",\"satellite_antenna\",\"battery\",\"electric_plug\",\"bulb\",\"flashlight\",\"candle\",\"wastebasket\",\"oil_drum\",\"money_with_wings\",\"dollar\",\"yen\",\"euro\",\"pound\",\"moneybag\",\"credit_card\",\"gem\",\"scales\",\"wrench\",\"hammer\",\"hammer_and_pick\",\"hammer_and_wrench\",\"pick\",\"nut_and_bolt\",\"gear\",\"chains\",\"gun\",\"bomb\",\"hocho\",\"dagger_knife\",\"crossed_swords\",\"shield\",\"smoking\",\"skull_and_crossbones\",\"coffin\",\"funeral_urn\",\"amphora\",\"crystal_ball\",\"prayer_beads\",\"barber\",\"alembic\",\"telescope\",\"microscope\",\"hole\",\"pill\",\"syringe\",\"thermometer\",\"label\",\"bookmark\",\"toilet\",\"shower\",\"bathtub\",\"key\",\"old_key\",\"couch_and_lamp\",\"sleeping_accommodation\",\"bed\",\"door\",\"bellhop_bell\",\"frame_with_picture\",\"world_map\",\"umbrella_on_ground\",\"moyai\",\"shopping_bags\",\"balloon\",\"flags\",\"ribbon\",\"gift\",\"confetti_ball\",\"tada\",\"dolls\",\"wind_chime\",\"crossed_flags\",\"izakaya_lantern\",\"email\",\"envelope_with_arrow\",\"incoming_envelope\",\"e-mail\",\"love_letter\",\"postbox\",\"mailbox_closed\",\"mailbox\",\"mailbox_with_mail\",\"mailbox_with_no_mail\",\"package\",\"postal_horn\",\"inbox_tray\",\"outbox_tray\",\"scroll\",\"page_with_curl\",\"bookmark_tabs\",\"bar_chart\",\"chart_with_upwards_trend\",\"chart_with_downwards_trend\",\"page_facing_up\",\"date\",\"calendar\",\"spiral_calendar_pad\",\"card_index\",\"card_file_box\",\"ballot_box_with_ballot\",\"file_cabinet\",\"clipboard\",\"spiral_note_pad\",\"file_folder\",\"open_file_folder\",\"card_index_dividers\",\"rolled_up_newspaper\",\"newspaper\",\"notebook\",\"closed_book\",\"green_book\",\"blue_book\",\"orange_book\",\"notebook_with_decorative_cover\",\"ledger\",\"books\",\"book\",\"link\",\"paperclip\",\"linked_paperclips\",\"scissors\",\"triangular_ruler\",\"straight_ruler\",\"pushpin\",\"round_pushpin\",\"triangular_flag_on_post\",\"waving_white_flag\",\"waving_black_flag\",\"closed_lock_with_key\",\"lock\",\"unlock\",\"lock_with_ink_pen\",\"lower_left_ballpoint_pen\",\"lower_left_fountain_pen\",\"black_nib\",\"memo\",\"pencil2\",\"lower_left_crayon\",\"lower_left_paintbrush\",\"mag\",\"mag_right\"]},{\"name\":\"Symbols\",\"emojis\":[\"heart\",\"yellow_heart\",\"green_heart\",\"blue_heart\",\"purple_heart\",\"broken_heart\",\"heavy_heart_exclamation_mark_ornament\",\"two_hearts\",\"revolving_hearts\",\"heartbeat\",\"heartpulse\",\"sparkling_heart\",\"cupid\",\"gift_heart\",\"heart_decoration\",\"peace_symbol\",\"latin_cross\",\"star_and_crescent\",\"om_symbol\",\"wheel_of_dharma\",\"star_of_david\",\"six_pointed_star\",\"menorah_with_nine_branches\",\"yin_yang\",\"orthodox_cross\",\"place_of_worship\",\"ophiuchus\",\"aries\",\"taurus\",\"gemini\",\"cancer\",\"leo\",\"virgo\",\"libra\",\"scorpius\",\"sagittarius\",\"capricorn\",\"aquarius\",\"pisces\",\"id\",\"atom_symbol\",\"u7a7a\",\"u5272\",\"radioactive_sign\",\"biohazard_sign\",\"mobile_phone_off\",\"vibration_mode\",\"u6709\",\"u7121\",\"u7533\",\"u55b6\",\"u6708\",\"eight_pointed_black_star\",\"vs\",\"accept\",\"white_flower\",\"ideograph_advantage\",\"secret\",\"congratulations\",\"u5408\",\"u6e80\",\"u7981\",\"a\",\"b\",\"ab\",\"cl\",\"o2\",\"sos\",\"no_entry\",\"name_badge\",\"no_entry_sign\",\"x\",\"o\",\"anger\",\"hotsprings\",\"no_pedestrians\",\"do_not_litter\",\"no_bicycles\",\"non-potable_water\",\"underage\",\"no_mobile_phones\",\"exclamation\",\"grey_exclamation\",\"question\",\"grey_question\",\"bangbang\",\"interrobang\",\"100\",\"low_brightness\",\"high_brightness\",\"trident\",\"fleur_de_lis\",\"part_alternation_mark\",\"warning\",\"children_crossing\",\"beginner\",\"recycle\",\"u6307\",\"chart\",\"sparkle\",\"eight_spoked_asterisk\",\"negative_squared_cross_mark\",\"white_check_mark\",\"diamond_shape_with_a_dot_inside\",\"cyclone\",\"loop\",\"globe_with_meridians\",\"m\",\"atm\",\"sa\",\"passport_control\",\"customs\",\"baggage_claim\",\"left_luggage\",\"wheelchair\",\"no_smoking\",\"wc\",\"parking\",\"potable_water\",\"mens\",\"womens\",\"baby_symbol\",\"restroom\",\"put_litter_in_its_place\",\"cinema\",\"signal_strength\",\"koko\",\"ng\",\"ok\",\"up\",\"cool\",\"new\",\"free\",\"zero\",\"one\",\"two\",\"three\",\"four\",\"five\",\"six\",\"seven\",\"eight\",\"nine\",\"keycap_ten\",\"keycap_star\",\"1234\",\"arrow_forward\",\"double_vertical_bar\",\"black_right_pointing_triangle_with_double_vertical_bar\",\"black_square_for_stop\",\"eject\",\"black_circle_for_record\",\"black_right_pointing_double_triangle_with_vertical_bar\",\"black_left_pointing_double_triangle_with_vertical_bar\",\"fast_forward\",\"rewind\",\"twisted_rightwards_arrows\",\"repeat\",\"repeat_one\",\"arrow_backward\",\"arrow_up_small\",\"arrow_down_small\",\"arrow_double_up\",\"arrow_double_down\",\"arrow_right\",\"arrow_left\",\"arrow_up\",\"arrow_down\",\"arrow_upper_right\",\"arrow_lower_right\",\"arrow_lower_left\",\"arrow_upper_left\",\"arrow_up_down\",\"left_right_arrow\",\"arrows_counterclockwise\",\"arrow_right_hook\",\"leftwards_arrow_with_hook\",\"arrow_heading_up\",\"arrow_heading_down\",\"hash\",\"information_source\",\"abc\",\"abcd\",\"capital_abcd\",\"symbols\",\"musical_note\",\"notes\",\"wavy_dash\",\"curly_loop\",\"heavy_check_mark\",\"arrows_clockwise\",\"heavy_plus_sign\",\"heavy_minus_sign\",\"heavy_division_sign\",\"heavy_multiplication_x\",\"heavy_dollar_sign\",\"currency_exchange\",\"copyright\",\"registered\",\"tm\",\"end\",\"back\",\"on\",\"top\",\"soon\",\"ballot_box_with_check\",\"radio_button\",\"white_circle\",\"black_circle\",\"red_circle\",\"large_blue_circle\",\"small_orange_diamond\",\"small_blue_diamond\",\"large_orange_diamond\",\"large_blue_diamond\",\"small_red_triangle\",\"black_small_square\",\"white_small_square\",\"black_large_square\",\"white_large_square\",\"small_red_triangle_down\",\"black_medium_square\",\"white_medium_square\",\"black_medium_small_square\",\"white_medium_small_square\",\"black_square_button\",\"white_square_button\",\"speaker\",\"sound\",\"loud_sound\",\"mute\",\"mega\",\"loudspeaker\",\"bell\",\"no_bell\",\"black_joker\",\"mahjong\",\"spades\",\"clubs\",\"hearts\",\"diamonds\",\"flower_playing_cards\",\"thought_balloon\",\"right_anger_bubble\",\"speech_balloon\",\"left_speech_bubble\",\"clock1\",\"clock2\",\"clock3\",\"clock4\",\"clock5\",\"clock6\",\"clock7\",\"clock8\",\"clock9\",\"clock10\",\"clock11\",\"clock12\",\"clock130\",\"clock230\",\"clock330\",\"clock430\",\"clock530\",\"clock630\",\"clock730\",\"clock830\",\"clock930\",\"clock1030\",\"clock1130\",\"clock1230\"]},{\"name\":\"Flags\",\"emojis\":[\"flag-ac\",\"flag-ad\",\"flag-ae\",\"flag-af\",\"flag-ag\",\"flag-ai\",\"flag-al\",\"flag-am\",\"flag-ao\",\"flag-aq\",\"flag-ar\",\"flag-as\",\"flag-at\",\"flag-au\",\"flag-aw\",\"flag-ax\",\"flag-az\",\"flag-ba\",\"flag-bb\",\"flag-bd\",\"flag-be\",\"flag-bf\",\"flag-bg\",\"flag-bh\",\"flag-bi\",\"flag-bj\",\"flag-bl\",\"flag-bm\",\"flag-bn\",\"flag-bo\",\"flag-bq\",\"flag-br\",\"flag-bs\",\"flag-bt\",\"flag-bv\",\"flag-bw\",\"flag-by\",\"flag-bz\",\"flag-ca\",\"flag-cc\",\"flag-cd\",\"flag-cf\",\"flag-cg\",\"flag-ch\",\"flag-ci\",\"flag-ck\",\"flag-cl\",\"flag-cm\",\"flag-cn\",\"flag-co\",\"flag-cp\",\"flag-cr\",\"flag-cu\",\"flag-cv\",\"flag-cw\",\"flag-cx\",\"flag-cy\",\"flag-cz\",\"flag-de\",\"flag-dg\",\"flag-dj\",\"flag-dk\",\"flag-dm\",\"flag-do\",\"flag-dz\",\"flag-ea\",\"flag-ec\",\"flag-ee\",\"flag-eg\",\"flag-eh\",\"flag-er\",\"flag-es\",\"flag-et\",\"flag-eu\",\"flag-fi\",\"flag-fj\",\"flag-fk\",\"flag-fm\",\"flag-fo\",\"flag-fr\",\"flag-ga\",\"flag-gb\",\"flag-gd\",\"flag-ge\",\"flag-gf\",\"flag-gg\",\"flag-gh\",\"flag-gi\",\"flag-gl\",\"flag-gm\",\"flag-gn\",\"flag-gp\",\"flag-gq\",\"flag-gr\",\"flag-gs\",\"flag-gt\",\"flag-gu\",\"flag-gw\",\"flag-gy\",\"flag-hk\",\"flag-hm\",\"flag-hn\",\"flag-hr\",\"flag-ht\",\"flag-hu\",\"flag-ic\",\"flag-id\",\"flag-ie\",\"flag-il\",\"flag-im\",\"flag-in\",\"flag-io\",\"flag-iq\",\"flag-ir\",\"flag-is\",\"flag-it\",\"flag-je\",\"flag-jm\",\"flag-jo\",\"flag-jp\",\"flag-ke\",\"flag-kg\",\"flag-kh\",\"flag-ki\",\"flag-km\",\"flag-kn\",\"flag-kp\",\"flag-kr\",\"flag-kw\",\"flag-ky\",\"flag-kz\",\"flag-la\",\"flag-lb\",\"flag-lc\",\"flag-li\",\"flag-lk\",\"flag-lr\",\"flag-ls\",\"flag-lt\",\"flag-lu\",\"flag-lv\",\"flag-ly\",\"flag-ma\",\"flag-mc\",\"flag-md\",\"flag-me\",\"flag-mf\",\"flag-mg\",\"flag-mh\",\"flag-mk\",\"flag-ml\",\"flag-mm\",\"flag-mn\",\"flag-mo\",\"flag-mp\",\"flag-mq\",\"flag-mr\",\"flag-ms\",\"flag-mt\",\"flag-mu\",\"flag-mv\",\"flag-mw\",\"flag-mx\",\"flag-my\",\"flag-mz\",\"flag-na\",\"flag-nc\",\"flag-ne\",\"flag-nf\",\"flag-ng\",\"flag-ni\",\"flag-nl\",\"flag-no\",\"flag-np\",\"flag-nr\",\"flag-nu\",\"flag-nz\",\"flag-om\",\"flag-pa\",\"flag-pe\",\"flag-pf\",\"flag-pg\",\"flag-ph\",\"flag-pk\",\"flag-pl\",\"flag-pm\",\"flag-pn\",\"flag-pr\",\"flag-ps\",\"flag-pt\",\"flag-pw\",\"flag-py\",\"flag-qa\",\"flag-re\",\"flag-ro\",\"flag-rs\",\"flag-ru\",\"flag-rw\",\"flag-sa\",\"flag-sb\",\"flag-sc\",\"flag-sd\",\"flag-se\",\"flag-sg\",\"flag-sh\",\"flag-si\",\"flag-sj\",\"flag-sk\",\"flag-sl\",\"flag-sm\",\"flag-sn\",\"flag-so\",\"flag-sr\",\"flag-ss\",\"flag-st\",\"flag-sv\",\"flag-sx\",\"flag-sy\",\"flag-sz\",\"flag-ta\",\"flag-tc\",\"flag-td\",\"flag-tf\",\"flag-tg\",\"flag-th\",\"flag-tj\",\"flag-tk\",\"flag-tl\",\"flag-tm\",\"flag-tn\",\"flag-to\",\"flag-tr\",\"flag-tt\",\"flag-tv\",\"flag-tw\",\"flag-tz\",\"flag-ua\",\"flag-ug\",\"flag-um\",\"flag-us\",\"flag-uy\",\"flag-uz\",\"flag-va\",\"flag-vc\",\"flag-ve\",\"flag-vg\",\"flag-vi\",\"flag-vn\",\"flag-vu\",\"flag-wf\",\"flag-ws\",\"flag-xk\",\"flag-ye\",\"flag-yt\",\"flag-za\",\"flag-zm\",\"flag-zw\"]}],\"emojis\":{\"100\":{\"name\":\"Hundred Points Symbol\",\"unified\":\"1F4AF\",\"variations\":[],\"docomo\":null,\"au\":\"E4F2\",\"softbank\":null,\"google\":\"FEB7B\",\"image\":\"1f4af.png\",\"sheet_x\":20,\"sheet_y\":27,\"short_name\":\"100\",\"short_names\":[\"100\"],\"category\":\"Symbols\",\"sort_order\":88,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"1234\":{\"name\":\"Input Symbol for Numbers\",\"unified\":\"1F522\",\"variations\":[],\"docomo\":null,\"au\":\"EAFF\",\"softbank\":null,\"google\":\"FEB7E\",\"image\":\"1f522.png\",\"sheet_x\":23,\"sheet_y\":18,\"short_name\":\"1234\",\"short_names\":[\"1234\"],\"category\":\"Symbols\",\"sort_order\":146,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"grinning\":{\"name\":\"Grinning Face\",\"unified\":\"1F600\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f600.png\",\"sheet_x\":26,\"sheet_y\":15,\"short_name\":\"grinning\",\"short_names\":[\"grinning\"],\"category\":\"People\",\"sort_order\":1,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[\":D\"]},\"heart\":{\"name\":\"Heavy Black Heart\",\"unified\":\"2764\",\"variations\":[\"2764-FE0F\"],\"docomo\":\"E6EC\",\"au\":\"E595\",\"softbank\":\"E022\",\"google\":\"FEB0C\",\"image\":\"2764.png\",\"sheet_x\":4,\"sheet_y\":10,\"short_name\":\"heart\",\"short_names\":[\"heart\"],\"category\":\"Symbols\",\"sort_order\":1,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[\"<3\"]},\"dog\":{\"name\":\"Dog Face\",\"unified\":\"1F436\",\"variations\":[],\"docomo\":\"E6A1\",\"au\":\"E4E1\",\"softbank\":\"E052\",\"google\":\"FE1B7\",\"image\":\"1f436.png\",\"sheet_x\":13,\"sheet_y\":18,\"short_name\":\"dog\",\"short_names\":[\"dog\"],\"category\":\"Nature\",\"sort_order\":1,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"soccer\":{\"name\":\"Soccer Ball\",\"unified\":\"26BD\",\"variations\":[\"26BD-FE0F\"],\"docomo\":\"E656\",\"au\":\"E4B6\",\"softbank\":\"E018\",\"google\":\"FE7D4\",\"image\":\"26bd.png\",\"sheet_x\":2,\"sheet_y\":18,\"short_name\":\"soccer\",\"short_names\":[\"soccer\"],\"category\":\"Activity\",\"sort_order\":1,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"watch\":{\"name\":\"Watch\",\"unified\":\"231A\",\"variations\":[\"231A-FE0F\"],\"docomo\":\"E71F\",\"au\":\"E57A\",\"softbank\":null,\"google\":\"FE01D\",\"image\":\"231a.png\",\"sheet_x\":0,\"sheet_y\":14,\"short_name\":\"watch\",\"short_names\":[\"watch\"],\"category\":\"Objects\",\"sort_order\":1,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"green_apple\":{\"name\":\"Green Apple\",\"unified\":\"1F34F\",\"variations\":[],\"docomo\":\"E745\",\"au\":\"EB5A\",\"softbank\":\"E345\",\"google\":\"FE05B\",\"image\":\"1f34f.png\",\"sheet_x\":7,\"sheet_y\":16,\"short_name\":\"green_apple\",\"short_names\":[\"green_apple\"],\"category\":\"Foods\",\"sort_order\":1,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-af\":{\"name\":\"Regional Indicator Symbol Letters AF\",\"unified\":\"1F1E6-1F1EB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e6-1f1eb.png\",\"sheet_x\":32,\"sheet_y\":36,\"short_name\":\"flag-af\",\"short_names\":[\"flag-af\"],\"category\":\"Flags\",\"sort_order\":1,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"car\":{\"name\":\"Automobile\",\"unified\":\"1F697\",\"variations\":[],\"docomo\":\"E65E\",\"au\":\"E4B1\",\"softbank\":\"E01B\",\"google\":\"FE7E4\",\"image\":\"1f697.png\",\"sheet_x\":29,\"sheet_y\":35,\"short_name\":\"car\",\"short_names\":[\"car\",\"red_car\"],\"category\":\"Places\",\"sort_order\":1,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ax\":{\"name\":\"Regional Indicator Symbol Letters AX\",\"unified\":\"1F1E6-1F1FD\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e6-1f1fd.png\",\"sheet_x\":33,\"sheet_y\":7,\"short_name\":\"flag-ax\",\"short_names\":[\"flag-ax\"],\"category\":\"Flags\",\"sort_order\":2,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"grimacing\":{\"name\":\"Grimacing Face\",\"unified\":\"1F62C\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f62c.png\",\"sheet_x\":27,\"sheet_y\":18,\"short_name\":\"grimacing\",\"short_names\":[\"grimacing\"],\"category\":\"People\",\"sort_order\":2,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"taxi\":{\"name\":\"Taxi\",\"unified\":\"1F695\",\"variations\":[],\"docomo\":\"E65E\",\"au\":\"E4B1\",\"softbank\":\"E15A\",\"google\":\"FE7EF\",\"image\":\"1f695.png\",\"sheet_x\":29,\"sheet_y\":33,\"short_name\":\"taxi\",\"short_names\":[\"taxi\"],\"category\":\"Places\",\"sort_order\":2,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"iphone\":{\"name\":\"Mobile Phone\",\"unified\":\"1F4F1\",\"variations\":[],\"docomo\":\"E688\",\"au\":\"E588\",\"softbank\":\"E00A\",\"google\":\"FE525\",\"image\":\"1f4f1.png\",\"sheet_x\":22,\"sheet_y\":11,\"short_name\":\"iphone\",\"short_names\":[\"iphone\"],\"category\":\"Objects\",\"sort_order\":2,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"basketball\":{\"name\":\"Basketball and Hoop\",\"unified\":\"1F3C0\",\"variations\":[],\"docomo\":\"E658\",\"au\":\"E59A\",\"softbank\":\"E42A\",\"google\":\"FE7D6\",\"image\":\"1f3c0.png\",\"sheet_x\":10,\"sheet_y\":6,\"short_name\":\"basketball\",\"short_names\":[\"basketball\"],\"category\":\"Activity\",\"sort_order\":2,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"cat\":{\"name\":\"Cat Face\",\"unified\":\"1F431\",\"variations\":[],\"docomo\":\"E6A2\",\"au\":\"E4DB\",\"softbank\":\"E04F\",\"google\":\"FE1B8\",\"image\":\"1f431.png\",\"sheet_x\":13,\"sheet_y\":13,\"short_name\":\"cat\",\"short_names\":[\"cat\"],\"category\":\"Nature\",\"sort_order\":2,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"apple\":{\"name\":\"Red Apple\",\"unified\":\"1F34E\",\"variations\":[],\"docomo\":\"E745\",\"au\":\"EAB9\",\"softbank\":\"E345\",\"google\":\"FE051\",\"image\":\"1f34e.png\",\"sheet_x\":7,\"sheet_y\":15,\"short_name\":\"apple\",\"short_names\":[\"apple\"],\"category\":\"Foods\",\"sort_order\":2,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"yellow_heart\":{\"name\":\"Yellow Heart\",\"unified\":\"1F49B\",\"variations\":[],\"docomo\":\"E6EC\",\"au\":\"EAA9\",\"softbank\":\"E32C\",\"google\":\"FEB15\",\"image\":\"1f49b.png\",\"sheet_x\":20,\"sheet_y\":2,\"short_name\":\"yellow_heart\",\"short_names\":[\"yellow_heart\"],\"category\":\"Symbols\",\"sort_order\":2,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[\"<3\"]},\"mouse\":{\"name\":\"Mouse Face\",\"unified\":\"1F42D\",\"variations\":[],\"docomo\":null,\"au\":\"E5C2\",\"softbank\":\"E053\",\"google\":\"FE1C2\",\"image\":\"1f42d.png\",\"sheet_x\":13,\"sheet_y\":9,\"short_name\":\"mouse\",\"short_names\":[\"mouse\"],\"category\":\"Nature\",\"sort_order\":3,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"pear\":{\"name\":\"Pear\",\"unified\":\"1F350\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f350.png\",\"sheet_x\":7,\"sheet_y\":17,\"short_name\":\"pear\",\"short_names\":[\"pear\"],\"category\":\"Foods\",\"sort_order\":3,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"green_heart\":{\"name\":\"Green Heart\",\"unified\":\"1F49A\",\"variations\":[],\"docomo\":\"E6EC\",\"au\":\"EAA8\",\"softbank\":\"E32B\",\"google\":\"FEB14\",\"image\":\"1f49a.png\",\"sheet_x\":20,\"sheet_y\":1,\"short_name\":\"green_heart\",\"short_names\":[\"green_heart\"],\"category\":\"Symbols\",\"sort_order\":3,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[\"<3\"]},\"football\":{\"name\":\"American Football\",\"unified\":\"1F3C8\",\"variations\":[],\"docomo\":null,\"au\":\"E4BB\",\"softbank\":\"E42B\",\"google\":\"FE7DD\",\"image\":\"1f3c8.png\",\"sheet_x\":10,\"sheet_y\":24,\"short_name\":\"football\",\"short_names\":[\"football\"],\"category\":\"Activity\",\"sort_order\":3,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"grin\":{\"name\":\"Grinning Face with Smiling Eyes\",\"unified\":\"1F601\",\"variations\":[],\"docomo\":\"E753\",\"au\":\"EB80\",\"softbank\":\"E404\",\"google\":\"FE333\",\"image\":\"1f601.png\",\"sheet_x\":26,\"sheet_y\":16,\"short_name\":\"grin\",\"short_names\":[\"grin\"],\"category\":\"People\",\"sort_order\":3,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-al\":{\"name\":\"Regional Indicator Symbol Letters AL\",\"unified\":\"1F1E6-1F1F1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e6-1f1f1.png\",\"sheet_x\":32,\"sheet_y\":39,\"short_name\":\"flag-al\",\"short_names\":[\"flag-al\"],\"category\":\"Flags\",\"sort_order\":3,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"calling\":{\"name\":\"Mobile Phone with Rightwards Arrow at Left\",\"unified\":\"1F4F2\",\"variations\":[],\"docomo\":\"E6CE\",\"au\":\"EB08\",\"softbank\":\"E104\",\"google\":\"FE526\",\"image\":\"1f4f2.png\",\"sheet_x\":22,\"sheet_y\":12,\"short_name\":\"calling\",\"short_names\":[\"calling\"],\"category\":\"Objects\",\"sort_order\":3,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"blue_car\":{\"name\":\"Recreational Vehicle\",\"unified\":\"1F699\",\"variations\":[],\"docomo\":\"E65F\",\"au\":\"E4B1\",\"softbank\":\"E42E\",\"google\":\"FE7E5\",\"image\":\"1f699.png\",\"sheet_x\":29,\"sheet_y\":37,\"short_name\":\"blue_car\",\"short_names\":[\"blue_car\"],\"category\":\"Places\",\"sort_order\":3,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"hamster\":{\"name\":\"Hamster Face\",\"unified\":\"1F439\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":\"E524\",\"google\":\"FE1CA\",\"image\":\"1f439.png\",\"sheet_x\":13,\"sheet_y\":21,\"short_name\":\"hamster\",\"short_names\":[\"hamster\"],\"category\":\"Nature\",\"sort_order\":4,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"blue_heart\":{\"name\":\"Blue Heart\",\"unified\":\"1F499\",\"variations\":[],\"docomo\":\"E6EC\",\"au\":\"EAA7\",\"softbank\":\"E32A\",\"google\":\"FEB13\",\"image\":\"1f499.png\",\"sheet_x\":20,\"sheet_y\":0,\"short_name\":\"blue_heart\",\"short_names\":[\"blue_heart\"],\"category\":\"Symbols\",\"sort_order\":4,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[\"<3\"]},\"bus\":{\"name\":\"Bus\",\"unified\":\"1F68C\",\"variations\":[],\"docomo\":\"E660\",\"au\":\"E4AF\",\"softbank\":\"E159\",\"google\":\"FE7E6\",\"image\":\"1f68c.png\",\"sheet_x\":29,\"sheet_y\":24,\"short_name\":\"bus\",\"short_names\":[\"bus\"],\"category\":\"Places\",\"sort_order\":4,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"joy\":{\"name\":\"Face with Tears of Joy\",\"unified\":\"1F602\",\"variations\":[],\"docomo\":\"E72A\",\"au\":\"EB64\",\"softbank\":\"E412\",\"google\":\"FE334\",\"image\":\"1f602.png\",\"sheet_x\":26,\"sheet_y\":17,\"short_name\":\"joy\",\"short_names\":[\"joy\"],\"category\":\"People\",\"sort_order\":4,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"computer\":{\"name\":\"Personal Computer\",\"unified\":\"1F4BB\",\"variations\":[],\"docomo\":\"E716\",\"au\":\"E5B8\",\"softbank\":\"E00C\",\"google\":\"FE538\",\"image\":\"1f4bb.png\",\"sheet_x\":20,\"sheet_y\":39,\"short_name\":\"computer\",\"short_names\":[\"computer\"],\"category\":\"Objects\",\"sort_order\":4,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"tangerine\":{\"name\":\"Tangerine\",\"unified\":\"1F34A\",\"variations\":[],\"docomo\":null,\"au\":\"EABA\",\"softbank\":\"E346\",\"google\":\"FE052\",\"image\":\"1f34a.png\",\"sheet_x\":7,\"sheet_y\":11,\"short_name\":\"tangerine\",\"short_names\":[\"tangerine\"],\"category\":\"Foods\",\"sort_order\":4,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"baseball\":{\"name\":\"Baseball\",\"unified\":\"26BE\",\"variations\":[\"26BE-FE0F\"],\"docomo\":\"E653\",\"au\":\"E4BA\",\"softbank\":\"E016\",\"google\":\"FE7D1\",\"image\":\"26be.png\",\"sheet_x\":2,\"sheet_y\":19,\"short_name\":\"baseball\",\"short_names\":[\"baseball\"],\"category\":\"Activity\",\"sort_order\":4,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-dz\":{\"name\":\"Regional Indicator Symbol Letters DZ\",\"unified\":\"1F1E9-1F1FF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e9-1f1ff.png\",\"sheet_x\":34,\"sheet_y\":15,\"short_name\":\"flag-dz\",\"short_names\":[\"flag-dz\"],\"category\":\"Flags\",\"sort_order\":4,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"tennis\":{\"name\":\"Tennis Racquet and Ball\",\"unified\":\"1F3BE\",\"variations\":[],\"docomo\":\"E655\",\"au\":\"E4B7\",\"softbank\":\"E015\",\"google\":\"FE7D3\",\"image\":\"1f3be.png\",\"sheet_x\":10,\"sheet_y\":4,\"short_name\":\"tennis\",\"short_names\":[\"tennis\"],\"category\":\"Activity\",\"sort_order\":5,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"trolleybus\":{\"name\":\"Trolleybus\",\"unified\":\"1F68E\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f68e.png\",\"sheet_x\":29,\"sheet_y\":26,\"short_name\":\"trolleybus\",\"short_names\":[\"trolleybus\"],\"category\":\"Places\",\"sort_order\":5,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"keyboard\":{\"name\":\"Keyboard\",\"unified\":\"2328\",\"variations\":[\"2328-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"2328.png\",\"sheet_x\":0,\"sheet_y\":16,\"short_name\":\"keyboard\",\"short_names\":[\"keyboard\"],\"category\":\"Objects\",\"sort_order\":5,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"rabbit\":{\"name\":\"Rabbit Face\",\"unified\":\"1F430\",\"variations\":[],\"docomo\":null,\"au\":\"E4D7\",\"softbank\":\"E52C\",\"google\":\"FE1D2\",\"image\":\"1f430.png\",\"sheet_x\":13,\"sheet_y\":12,\"short_name\":\"rabbit\",\"short_names\":[\"rabbit\"],\"category\":\"Nature\",\"sort_order\":5,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-as\":{\"name\":\"Regional Indicator Symbol Letters AS\",\"unified\":\"1F1E6-1F1F8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e6-1f1f8.png\",\"sheet_x\":33,\"sheet_y\":3,\"short_name\":\"flag-as\",\"short_names\":[\"flag-as\"],\"category\":\"Flags\",\"sort_order\":5,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"lemon\":{\"name\":\"Lemon\",\"unified\":\"1F34B\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f34b.png\",\"sheet_x\":7,\"sheet_y\":12,\"short_name\":\"lemon\",\"short_names\":[\"lemon\"],\"category\":\"Foods\",\"sort_order\":5,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"purple_heart\":{\"name\":\"Purple Heart\",\"unified\":\"1F49C\",\"variations\":[],\"docomo\":\"E6EC\",\"au\":\"EAAA\",\"softbank\":\"E32D\",\"google\":\"FEB16\",\"image\":\"1f49c.png\",\"sheet_x\":20,\"sheet_y\":3,\"short_name\":\"purple_heart\",\"short_names\":[\"purple_heart\"],\"category\":\"Symbols\",\"sort_order\":5,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[\"<3\"]},\"smiley\":{\"name\":\"Smiling Face with Open Mouth\",\"unified\":\"1F603\",\"variations\":[],\"docomo\":\"E6F0\",\"au\":\"E471\",\"softbank\":\"E057\",\"google\":\"FE330\",\"image\":\"1f603.png\",\"sheet_x\":26,\"sheet_y\":18,\"short_name\":\"smiley\",\"short_names\":[\"smiley\"],\"category\":\"People\",\"sort_order\":5,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[\"=)\",\"=-)\"]},\"desktop_computer\":{\"name\":\"Desktop Computer\",\"unified\":\"1F5A5\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5a5.png\",\"sheet_x\":25,\"sheet_y\":31,\"short_name\":\"desktop_computer\",\"short_names\":[\"desktop_computer\"],\"category\":\"Objects\",\"sort_order\":6,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"racing_car\":{\"name\":\"Racing Car\",\"unified\":\"1F3CE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3ce.png\",\"sheet_x\":10,\"sheet_y\":40,\"short_name\":\"racing_car\",\"short_names\":[\"racing_car\"],\"category\":\"Places\",\"sort_order\":6,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"volleyball\":{\"name\":\"Volleyball\",\"unified\":\"1F3D0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3d0.png\",\"sheet_x\":11,\"sheet_y\":1,\"short_name\":\"volleyball\",\"short_names\":[\"volleyball\"],\"category\":\"Activity\",\"sort_order\":6,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"banana\":{\"name\":\"Banana\",\"unified\":\"1F34C\",\"variations\":[],\"docomo\":\"E744\",\"au\":\"EB35\",\"softbank\":null,\"google\":\"FE050\",\"image\":\"1f34c.png\",\"sheet_x\":7,\"sheet_y\":13,\"short_name\":\"banana\",\"short_names\":[\"banana\"],\"category\":\"Foods\",\"sort_order\":6,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"bear\":{\"name\":\"Bear Face\",\"unified\":\"1F43B\",\"variations\":[],\"docomo\":null,\"au\":\"E5C1\",\"softbank\":\"E051\",\"google\":\"FE1C1\",\"image\":\"1f43b.png\",\"sheet_x\":13,\"sheet_y\":23,\"short_name\":\"bear\",\"short_names\":[\"bear\"],\"category\":\"Nature\",\"sort_order\":6,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"smile\":{\"name\":\"Smiling Face with Open Mouth and Smiling Eyes\",\"unified\":\"1F604\",\"variations\":[],\"docomo\":\"E6F0\",\"au\":\"E471\",\"softbank\":\"E415\",\"google\":\"FE338\",\"image\":\"1f604.png\",\"sheet_x\":26,\"sheet_y\":19,\"short_name\":\"smile\",\"short_names\":[\"smile\"],\"category\":\"People\",\"sort_order\":6,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[\"C:\",\"c:\",\":D\",\":-D\"]},\"flag-ad\":{\"name\":\"Regional Indicator Symbol Letters AD\",\"unified\":\"1F1E6-1F1E9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e6-1f1e9.png\",\"sheet_x\":32,\"sheet_y\":34,\"short_name\":\"flag-ad\",\"short_names\":[\"flag-ad\"],\"category\":\"Flags\",\"sort_order\":6,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"broken_heart\":{\"name\":\"Broken Heart\",\"unified\":\"1F494\",\"variations\":[],\"docomo\":\"E6EE\",\"au\":\"E477\",\"softbank\":\"E023\",\"google\":\"FEB0E\",\"image\":\"1f494.png\",\"sheet_x\":19,\"sheet_y\":36,\"short_name\":\"broken_heart\",\"short_names\":[\"broken_heart\"],\"category\":\"Symbols\",\"sort_order\":6,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[\"3\"]},\"sweat_smile\":{\"name\":\"Smiling Face with Open Mouth and Cold Sweat\",\"unified\":\"1F605\",\"variations\":[],\"docomo\":\"E722\",\"au\":\"E471-E5B1\",\"softbank\":\"E415-E331\",\"google\":\"FE331\",\"image\":\"1f605.png\",\"sheet_x\":26,\"sheet_y\":20,\"short_name\":\"sweat_smile\",\"short_names\":[\"sweat_smile\"],\"category\":\"People\",\"sort_order\":7,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"printer\":{\"name\":\"Printer\",\"unified\":\"1F5A8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5a8.png\",\"sheet_x\":25,\"sheet_y\":32,\"short_name\":\"printer\",\"short_names\":[\"printer\"],\"category\":\"Objects\",\"sort_order\":7,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"rugby_football\":{\"name\":\"Rugby Football\",\"unified\":\"1F3C9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3c9.png\",\"sheet_x\":10,\"sheet_y\":25,\"short_name\":\"rugby_football\",\"short_names\":[\"rugby_football\"],\"category\":\"Activity\",\"sort_order\":7,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"heavy_heart_exclamation_mark_ornament\":{\"name\":\"Heavy Heart Exclamation Mark Ornament\",\"unified\":\"2763\",\"variations\":[\"2763-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"2763.png\",\"sheet_x\":4,\"sheet_y\":9,\"short_name\":\"heavy_heart_exclamation_mark_ornament\",\"short_names\":[\"heavy_heart_exclamation_mark_ornament\"],\"category\":\"Symbols\",\"sort_order\":7,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ao\":{\"name\":\"Regional Indicator Symbol Letters AO\",\"unified\":\"1F1E6-1F1F4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e6-1f1f4.png\",\"sheet_x\":33,\"sheet_y\":0,\"short_name\":\"flag-ao\",\"short_names\":[\"flag-ao\"],\"category\":\"Flags\",\"sort_order\":7,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"watermelon\":{\"name\":\"Watermelon\",\"unified\":\"1F349\",\"variations\":[],\"docomo\":null,\"au\":\"E4CD\",\"softbank\":\"E348\",\"google\":\"FE054\",\"image\":\"1f349.png\",\"sheet_x\":7,\"sheet_y\":10,\"short_name\":\"watermelon\",\"short_names\":[\"watermelon\"],\"category\":\"Foods\",\"sort_order\":7,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"panda_face\":{\"name\":\"Panda Face\",\"unified\":\"1F43C\",\"variations\":[],\"docomo\":null,\"au\":\"EB46\",\"softbank\":null,\"google\":\"FE1DF\",\"image\":\"1f43c.png\",\"sheet_x\":13,\"sheet_y\":24,\"short_name\":\"panda_face\",\"short_names\":[\"panda_face\"],\"category\":\"Nature\",\"sort_order\":7,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"police_car\":{\"name\":\"Police Car\",\"unified\":\"1F693\",\"variations\":[],\"docomo\":null,\"au\":\"EAE1\",\"softbank\":\"E432\",\"google\":\"FE7F4\",\"image\":\"1f693.png\",\"sheet_x\":29,\"sheet_y\":31,\"short_name\":\"police_car\",\"short_names\":[\"police_car\"],\"category\":\"Places\",\"sort_order\":7,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"ambulance\":{\"name\":\"Ambulance\",\"unified\":\"1F691\",\"variations\":[],\"docomo\":null,\"au\":\"EAE0\",\"softbank\":\"E431\",\"google\":\"FE7F3\",\"image\":\"1f691.png\",\"sheet_x\":29,\"sheet_y\":29,\"short_name\":\"ambulance\",\"short_names\":[\"ambulance\"],\"category\":\"Places\",\"sort_order\":8,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"grapes\":{\"name\":\"Grapes\",\"unified\":\"1F347\",\"variations\":[],\"docomo\":null,\"au\":\"EB34\",\"softbank\":null,\"google\":\"FE059\",\"image\":\"1f347.png\",\"sheet_x\":7,\"sheet_y\":8,\"short_name\":\"grapes\",\"short_names\":[\"grapes\"],\"category\":\"Foods\",\"sort_order\":8,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"two_hearts\":{\"name\":\"Two Hearts\",\"unified\":\"1F495\",\"variations\":[],\"docomo\":\"E6EF\",\"au\":\"E478\",\"softbank\":\"E327\",\"google\":\"FEB0F\",\"image\":\"1f495.png\",\"sheet_x\":19,\"sheet_y\":37,\"short_name\":\"two_hearts\",\"short_names\":[\"two_hearts\"],\"category\":\"Symbols\",\"sort_order\":8,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ai\":{\"name\":\"Regional Indicator Symbol Letters AI\",\"unified\":\"1F1E6-1F1EE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e6-1f1ee.png\",\"sheet_x\":32,\"sheet_y\":38,\"short_name\":\"flag-ai\",\"short_names\":[\"flag-ai\"],\"category\":\"Flags\",\"sort_order\":8,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"three_button_mouse\":{\"name\":\"Three Button Mouse\",\"unified\":\"1F5B1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5b1.png\",\"sheet_x\":25,\"sheet_y\":33,\"short_name\":\"three_button_mouse\",\"short_names\":[\"three_button_mouse\"],\"category\":\"Objects\",\"sort_order\":8,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"8ball\":{\"name\":\"Billiards\",\"unified\":\"1F3B1\",\"variations\":[],\"docomo\":null,\"au\":\"EADD\",\"softbank\":\"E42C\",\"google\":\"FE80E\",\"image\":\"1f3b1.png\",\"sheet_x\":9,\"sheet_y\":32,\"short_name\":\"8ball\",\"short_names\":[\"8ball\"],\"category\":\"Activity\",\"sort_order\":8,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"laughing\":{\"name\":\"Smiling Face with Open Mouth and Tightly-Closed Eyes\",\"unified\":\"1F606\",\"variations\":[],\"docomo\":\"E72A\",\"au\":\"EAC5\",\"softbank\":\"E40A\",\"google\":\"FE332\",\"image\":\"1f606.png\",\"sheet_x\":26,\"sheet_y\":21,\"short_name\":\"laughing\",\"short_names\":[\"laughing\",\"satisfied\"],\"category\":\"People\",\"sort_order\":8,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[\":>\",\":->\"]},\"koala\":{\"name\":\"Koala\",\"unified\":\"1F428\",\"variations\":[],\"docomo\":null,\"au\":\"EB20\",\"softbank\":\"E527\",\"google\":\"FE1CD\",\"image\":\"1f428.png\",\"sheet_x\":13,\"sheet_y\":4,\"short_name\":\"koala\",\"short_names\":[\"koala\"],\"category\":\"Nature\",\"sort_order\":8,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-aq\":{\"name\":\"Regional Indicator Symbol Letters AQ\",\"unified\":\"1F1E6-1F1F6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e6-1f1f6.png\",\"sheet_x\":33,\"sheet_y\":1,\"short_name\":\"flag-aq\",\"short_names\":[\"flag-aq\"],\"category\":\"Flags\",\"sort_order\":9,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"fire_engine\":{\"name\":\"Fire Engine\",\"unified\":\"1F692\",\"variations\":[],\"docomo\":null,\"au\":\"EADF\",\"softbank\":\"E430\",\"google\":\"FE7F2\",\"image\":\"1f692.png\",\"sheet_x\":29,\"sheet_y\":30,\"short_name\":\"fire_engine\",\"short_names\":[\"fire_engine\"],\"category\":\"Places\",\"sort_order\":9,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"revolving_hearts\":{\"name\":\"Revolving Hearts\",\"unified\":\"1F49E\",\"variations\":[],\"docomo\":\"E6ED\",\"au\":\"E5AF\",\"softbank\":\"E327\",\"google\":\"FEB18\",\"image\":\"1f49e.png\",\"sheet_x\":20,\"sheet_y\":5,\"short_name\":\"revolving_hearts\",\"short_names\":[\"revolving_hearts\"],\"category\":\"Symbols\",\"sort_order\":9,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"golf\":{\"name\":\"Flag in Hole\",\"unified\":\"26F3\",\"variations\":[\"26F3-FE0F\"],\"docomo\":\"E654\",\"au\":\"E599\",\"softbank\":\"E014\",\"google\":\"FE7D2\",\"image\":\"26f3.png\",\"sheet_x\":2,\"sheet_y\":33,\"short_name\":\"golf\",\"short_names\":[\"golf\"],\"category\":\"Activity\",\"sort_order\":9,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"innocent\":{\"name\":\"Smiling Face with Halo\",\"unified\":\"1F607\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f607.png\",\"sheet_x\":26,\"sheet_y\":22,\"short_name\":\"innocent\",\"short_names\":[\"innocent\"],\"category\":\"People\",\"sort_order\":9,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"strawberry\":{\"name\":\"Strawberry\",\"unified\":\"1F353\",\"variations\":[],\"docomo\":null,\"au\":\"E4D4\",\"softbank\":\"E347\",\"google\":\"FE053\",\"image\":\"1f353.png\",\"sheet_x\":7,\"sheet_y\":20,\"short_name\":\"strawberry\",\"short_names\":[\"strawberry\"],\"category\":\"Foods\",\"sort_order\":9,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"trackball\":{\"name\":\"Trackball\",\"unified\":\"1F5B2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5b2.png\",\"sheet_x\":25,\"sheet_y\":34,\"short_name\":\"trackball\",\"short_names\":[\"trackball\"],\"category\":\"Objects\",\"sort_order\":9,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"tiger\":{\"name\":\"Tiger Face\",\"unified\":\"1F42F\",\"variations\":[],\"docomo\":null,\"au\":\"E5C0\",\"softbank\":\"E050\",\"google\":\"FE1C0\",\"image\":\"1f42f.png\",\"sheet_x\":13,\"sheet_y\":11,\"short_name\":\"tiger\",\"short_names\":[\"tiger\"],\"category\":\"Nature\",\"sort_order\":9,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"lion_face\":{\"name\":\"Lion Face\",\"unified\":\"1F981\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f981.png\",\"sheet_x\":32,\"sheet_y\":16,\"short_name\":\"lion_face\",\"short_names\":[\"lion_face\"],\"category\":\"Nature\",\"sort_order\":10,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ag\":{\"name\":\"Regional Indicator Symbol Letters AG\",\"unified\":\"1F1E6-1F1EC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e6-1f1ec.png\",\"sheet_x\":32,\"sheet_y\":37,\"short_name\":\"flag-ag\",\"short_names\":[\"flag-ag\"],\"category\":\"Flags\",\"sort_order\":10,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"minibus\":{\"name\":\"Minibus\",\"unified\":\"1F690\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f690.png\",\"sheet_x\":29,\"sheet_y\":28,\"short_name\":\"minibus\",\"short_names\":[\"minibus\"],\"category\":\"Places\",\"sort_order\":10,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"melon\":{\"name\":\"Melon\",\"unified\":\"1F348\",\"variations\":[],\"docomo\":null,\"au\":\"EB32\",\"softbank\":null,\"google\":\"FE057\",\"image\":\"1f348.png\",\"sheet_x\":7,\"sheet_y\":9,\"short_name\":\"melon\",\"short_names\":[\"melon\"],\"category\":\"Foods\",\"sort_order\":10,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"wink\":{\"name\":\"Winking Face\",\"unified\":\"1F609\",\"variations\":[],\"docomo\":\"E729\",\"au\":\"E5C3\",\"softbank\":\"E405\",\"google\":\"FE347\",\"image\":\"1f609.png\",\"sheet_x\":26,\"sheet_y\":24,\"short_name\":\"wink\",\"short_names\":[\"wink\"],\"category\":\"People\",\"sort_order\":10,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[\";)\",\";-)\"]},\"golfer\":{\"name\":\"Golfer\",\"unified\":\"1F3CC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3cc.png\",\"sheet_x\":10,\"sheet_y\":38,\"short_name\":\"golfer\",\"short_names\":[\"golfer\"],\"category\":\"Activity\",\"sort_order\":10,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"heartbeat\":{\"name\":\"Beating Heart\",\"unified\":\"1F493\",\"variations\":[],\"docomo\":\"E6ED\",\"au\":\"EB75\",\"softbank\":\"E327\",\"google\":\"FEB0D\",\"image\":\"1f493.png\",\"sheet_x\":19,\"sheet_y\":35,\"short_name\":\"heartbeat\",\"short_names\":[\"heartbeat\"],\"category\":\"Symbols\",\"sort_order\":10,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"joystick\":{\"name\":\"Joystick\",\"unified\":\"1F579\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f579.png\",\"sheet_x\":25,\"sheet_y\":7,\"short_name\":\"joystick\",\"short_names\":[\"joystick\"],\"category\":\"Objects\",\"sort_order\":10,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"heartpulse\":{\"name\":\"Growing Heart\",\"unified\":\"1F497\",\"variations\":[],\"docomo\":\"E6ED\",\"au\":\"EB75\",\"softbank\":\"E328\",\"google\":\"FEB11\",\"image\":\"1f497.png\",\"sheet_x\":19,\"sheet_y\":39,\"short_name\":\"heartpulse\",\"short_names\":[\"heartpulse\"],\"category\":\"Symbols\",\"sort_order\":11,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ar\":{\"name\":\"Regional Indicator Symbol Letters AR\",\"unified\":\"1F1E6-1F1F7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e6-1f1f7.png\",\"sheet_x\":33,\"sheet_y\":2,\"short_name\":\"flag-ar\",\"short_names\":[\"flag-ar\"],\"category\":\"Flags\",\"sort_order\":11,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"table_tennis_paddle_and_ball\":{\"name\":\"Table Tennis Paddle and Ball\",\"unified\":\"1F3D3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3d3.png\",\"sheet_x\":11,\"sheet_y\":4,\"short_name\":\"table_tennis_paddle_and_ball\",\"short_names\":[\"table_tennis_paddle_and_ball\"],\"category\":\"Activity\",\"sort_order\":11,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"cow\":{\"name\":\"Cow Face\",\"unified\":\"1F42E\",\"variations\":[],\"docomo\":null,\"au\":\"EB21\",\"softbank\":\"E52B\",\"google\":\"FE1D1\",\"image\":\"1f42e.png\",\"sheet_x\":13,\"sheet_y\":10,\"short_name\":\"cow\",\"short_names\":[\"cow\"],\"category\":\"Nature\",\"sort_order\":11,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"cherries\":{\"name\":\"Cherries\",\"unified\":\"1F352\",\"variations\":[],\"docomo\":\"E742\",\"au\":\"E4D2\",\"softbank\":null,\"google\":\"FE04F\",\"image\":\"1f352.png\",\"sheet_x\":7,\"sheet_y\":19,\"short_name\":\"cherries\",\"short_names\":[\"cherries\"],\"category\":\"Foods\",\"sort_order\":11,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"compression\":{\"name\":\"Compression\",\"unified\":\"1F5DC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5dc.png\",\"sheet_x\":26,\"sheet_y\":1,\"short_name\":\"compression\",\"short_names\":[\"compression\"],\"category\":\"Objects\",\"sort_order\":11,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"truck\":{\"name\":\"Delivery Truck\",\"unified\":\"1F69A\",\"variations\":[],\"docomo\":null,\"au\":\"E4B2\",\"softbank\":\"E42F\",\"google\":\"FE7F1\",\"image\":\"1f69a.png\",\"sheet_x\":29,\"sheet_y\":38,\"short_name\":\"truck\",\"short_names\":[\"truck\"],\"category\":\"Places\",\"sort_order\":11,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"blush\":{\"name\":\"Smiling Face with Smiling Eyes\",\"unified\":\"1F60A\",\"variations\":[],\"docomo\":\"E6F0\",\"au\":\"EACD\",\"softbank\":\"E056\",\"google\":\"FE335\",\"image\":\"1f60a.png\",\"sheet_x\":26,\"sheet_y\":25,\"short_name\":\"blush\",\"short_names\":[\"blush\"],\"category\":\"People\",\"sort_order\":11,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[\":)\"]},\"slightly_smiling_face\":{\"name\":\"Slightly Smiling Face\",\"unified\":\"1F642\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f642.png\",\"sheet_x\":27,\"sheet_y\":40,\"short_name\":\"slightly_smiling_face\",\"short_names\":[\"slightly_smiling_face\"],\"category\":\"People\",\"sort_order\":12,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[\":)\",\"(:\",\":-)\"]},\"pig\":{\"name\":\"Pig Face\",\"unified\":\"1F437\",\"variations\":[],\"docomo\":\"E755\",\"au\":\"E4DE\",\"softbank\":\"E10B\",\"google\":\"FE1BF\",\"image\":\"1f437.png\",\"sheet_x\":13,\"sheet_y\":19,\"short_name\":\"pig\",\"short_names\":[\"pig\"],\"category\":\"Nature\",\"sort_order\":12,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"sparkling_heart\":{\"name\":\"Sparkling Heart\",\"unified\":\"1F496\",\"variations\":[],\"docomo\":\"E6EC\",\"au\":\"EAA6\",\"softbank\":\"E327\",\"google\":\"FEB10\",\"image\":\"1f496.png\",\"sheet_x\":19,\"sheet_y\":38,\"short_name\":\"sparkling_heart\",\"short_names\":[\"sparkling_heart\"],\"category\":\"Symbols\",\"sort_order\":12,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"badminton_racquet_and_shuttlecock\":{\"name\":\"Badminton Racquet and Shuttlecock\",\"unified\":\"1F3F8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3f8.png\",\"sheet_x\":11,\"sheet_y\":38,\"short_name\":\"badminton_racquet_and_shuttlecock\",\"short_names\":[\"badminton_racquet_and_shuttlecock\"],\"category\":\"Activity\",\"sort_order\":12,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"peach\":{\"name\":\"Peach\",\"unified\":\"1F351\",\"variations\":[],\"docomo\":null,\"au\":\"EB39\",\"softbank\":null,\"google\":\"FE05A\",\"image\":\"1f351.png\",\"sheet_x\":7,\"sheet_y\":18,\"short_name\":\"peach\",\"short_names\":[\"peach\"],\"category\":\"Foods\",\"sort_order\":12,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"minidisc\":{\"name\":\"Minidisc\",\"unified\":\"1F4BD\",\"variations\":[],\"docomo\":null,\"au\":\"E582\",\"softbank\":\"E316\",\"google\":\"FE53C\",\"image\":\"1f4bd.png\",\"sheet_x\":21,\"sheet_y\":0,\"short_name\":\"minidisc\",\"short_names\":[\"minidisc\"],\"category\":\"Objects\",\"sort_order\":12,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"articulated_lorry\":{\"name\":\"Articulated Lorry\",\"unified\":\"1F69B\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f69b.png\",\"sheet_x\":29,\"sheet_y\":39,\"short_name\":\"articulated_lorry\",\"short_names\":[\"articulated_lorry\"],\"category\":\"Places\",\"sort_order\":12,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-am\":{\"name\":\"Regional Indicator Symbol Letters AM\",\"unified\":\"1F1E6-1F1F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e6-1f1f2.png\",\"sheet_x\":32,\"sheet_y\":40,\"short_name\":\"flag-am\",\"short_names\":[\"flag-am\"],\"category\":\"Flags\",\"sort_order\":12,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"ice_hockey_stick_and_puck\":{\"name\":\"Ice Hockey Stick and Puck\",\"unified\":\"1F3D2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3d2.png\",\"sheet_x\":11,\"sheet_y\":3,\"short_name\":\"ice_hockey_stick_and_puck\",\"short_names\":[\"ice_hockey_stick_and_puck\"],\"category\":\"Activity\",\"sort_order\":13,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"pineapple\":{\"name\":\"Pineapple\",\"unified\":\"1F34D\",\"variations\":[],\"docomo\":null,\"au\":\"EB33\",\"softbank\":null,\"google\":\"FE058\",\"image\":\"1f34d.png\",\"sheet_x\":7,\"sheet_y\":14,\"short_name\":\"pineapple\",\"short_names\":[\"pineapple\"],\"category\":\"Foods\",\"sort_order\":13,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-aw\":{\"name\":\"Regional Indicator Symbol Letters AW\",\"unified\":\"1F1E6-1F1FC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e6-1f1fc.png\",\"sheet_x\":33,\"sheet_y\":6,\"short_name\":\"flag-aw\",\"short_names\":[\"flag-aw\"],\"category\":\"Flags\",\"sort_order\":13,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"pig_nose\":{\"name\":\"Pig Nose\",\"unified\":\"1F43D\",\"variations\":[],\"docomo\":\"E755\",\"au\":\"EB48\",\"softbank\":\"E10B\",\"google\":\"FE1E0\",\"image\":\"1f43d.png\",\"sheet_x\":13,\"sheet_y\":25,\"short_name\":\"pig_nose\",\"short_names\":[\"pig_nose\"],\"category\":\"Nature\",\"sort_order\":13,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"floppy_disk\":{\"name\":\"Floppy Disk\",\"unified\":\"1F4BE\",\"variations\":[],\"docomo\":null,\"au\":\"E562\",\"softbank\":\"E316\",\"google\":\"FE53D\",\"image\":\"1f4be.png\",\"sheet_x\":21,\"sheet_y\":1,\"short_name\":\"floppy_disk\",\"short_names\":[\"floppy_disk\"],\"category\":\"Objects\",\"sort_order\":13,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"tractor\":{\"name\":\"Tractor\",\"unified\":\"1F69C\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f69c.png\",\"sheet_x\":29,\"sheet_y\":40,\"short_name\":\"tractor\",\"short_names\":[\"tractor\"],\"category\":\"Places\",\"sort_order\":13,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"upside_down_face\":{\"name\":\"Upside-Down Face\",\"unified\":\"1F643\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f643.png\",\"sheet_x\":28,\"sheet_y\":0,\"short_name\":\"upside_down_face\",\"short_names\":[\"upside_down_face\"],\"category\":\"People\",\"sort_order\":13,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"cupid\":{\"name\":\"Heart with Arrow\",\"unified\":\"1F498\",\"variations\":[],\"docomo\":\"E6EC\",\"au\":\"E4EA\",\"softbank\":\"E329\",\"google\":\"FEB12\",\"image\":\"1f498.png\",\"sheet_x\":19,\"sheet_y\":40,\"short_name\":\"cupid\",\"short_names\":[\"cupid\"],\"category\":\"Symbols\",\"sort_order\":13,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"cd\":{\"name\":\"Optical Disc\",\"unified\":\"1F4BF\",\"variations\":[],\"docomo\":\"E68C\",\"au\":\"E50C\",\"softbank\":\"E126\",\"google\":\"FE81D\",\"image\":\"1f4bf.png\",\"sheet_x\":21,\"sheet_y\":2,\"short_name\":\"cd\",\"short_names\":[\"cd\"],\"category\":\"Objects\",\"sort_order\":14,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"gift_heart\":{\"name\":\"Heart with Ribbon\",\"unified\":\"1F49D\",\"variations\":[],\"docomo\":\"E6EC\",\"au\":\"EB54\",\"softbank\":\"E437\",\"google\":\"FEB17\",\"image\":\"1f49d.png\",\"sheet_x\":20,\"sheet_y\":4,\"short_name\":\"gift_heart\",\"short_names\":[\"gift_heart\"],\"category\":\"Symbols\",\"sort_order\":14,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-au\":{\"name\":\"Regional Indicator Symbol Letters AU\",\"unified\":\"1F1E6-1F1FA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e6-1f1fa.png\",\"sheet_x\":33,\"sheet_y\":5,\"short_name\":\"flag-au\",\"short_names\":[\"flag-au\"],\"category\":\"Flags\",\"sort_order\":14,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"field_hockey_stick_and_ball\":{\"name\":\"Field Hockey Stick and Ball\",\"unified\":\"1F3D1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3d1.png\",\"sheet_x\":11,\"sheet_y\":2,\"short_name\":\"field_hockey_stick_and_ball\",\"short_names\":[\"field_hockey_stick_and_ball\"],\"category\":\"Activity\",\"sort_order\":14,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"tomato\":{\"name\":\"Tomato\",\"unified\":\"1F345\",\"variations\":[],\"docomo\":null,\"au\":\"EABB\",\"softbank\":\"E349\",\"google\":\"FE055\",\"image\":\"1f345.png\",\"sheet_x\":7,\"sheet_y\":6,\"short_name\":\"tomato\",\"short_names\":[\"tomato\"],\"category\":\"Foods\",\"sort_order\":14,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"racing_motorcycle\":{\"name\":\"Racing Motorcycle\",\"unified\":\"1F3CD\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3cd.png\",\"sheet_x\":10,\"sheet_y\":39,\"short_name\":\"racing_motorcycle\",\"short_names\":[\"racing_motorcycle\"],\"category\":\"Places\",\"sort_order\":14,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"relaxed\":{\"name\":\"White Smiling Face\",\"unified\":\"263A\",\"variations\":[\"263A-FE0F\"],\"docomo\":\"E6F0\",\"au\":\"E4FB\",\"softbank\":\"E414\",\"google\":\"FE336\",\"image\":\"263a.png\",\"sheet_x\":1,\"sheet_y\":25,\"short_name\":\"relaxed\",\"short_names\":[\"relaxed\"],\"category\":\"People\",\"sort_order\":14,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"frog\":{\"name\":\"Frog Face\",\"unified\":\"1F438\",\"variations\":[],\"docomo\":null,\"au\":\"E4DA\",\"softbank\":\"E531\",\"google\":\"FE1D7\",\"image\":\"1f438.png\",\"sheet_x\":13,\"sheet_y\":20,\"short_name\":\"frog\",\"short_names\":[\"frog\"],\"category\":\"Nature\",\"sort_order\":14,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"cricket_bat_and_ball\":{\"name\":\"Cricket Bat and Ball\",\"unified\":\"1F3CF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3cf.png\",\"sheet_x\":11,\"sheet_y\":0,\"short_name\":\"cricket_bat_and_ball\",\"short_names\":[\"cricket_bat_and_ball\"],\"category\":\"Activity\",\"sort_order\":15,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"dvd\":{\"name\":\"Dvd\",\"unified\":\"1F4C0\",\"variations\":[],\"docomo\":\"E68C\",\"au\":\"E50C\",\"softbank\":\"E127\",\"google\":\"FE81E\",\"image\":\"1f4c0.png\",\"sheet_x\":21,\"sheet_y\":3,\"short_name\":\"dvd\",\"short_names\":[\"dvd\"],\"category\":\"Objects\",\"sort_order\":15,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"octopus\":{\"name\":\"Octopus\",\"unified\":\"1F419\",\"variations\":[],\"docomo\":null,\"au\":\"E5C7\",\"softbank\":\"E10A\",\"google\":\"FE1C5\",\"image\":\"1f419.png\",\"sheet_x\":12,\"sheet_y\":30,\"short_name\":\"octopus\",\"short_names\":[\"octopus\"],\"category\":\"Nature\",\"sort_order\":15,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"bike\":{\"name\":\"Bicycle\",\"unified\":\"1F6B2\",\"variations\":[],\"docomo\":\"E71D\",\"au\":\"E4AE\",\"softbank\":\"E136\",\"google\":\"FE7EB\",\"image\":\"1f6b2.png\",\"sheet_x\":30,\"sheet_y\":26,\"short_name\":\"bike\",\"short_names\":[\"bike\"],\"category\":\"Places\",\"sort_order\":15,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"heart_decoration\":{\"name\":\"Heart Decoration\",\"unified\":\"1F49F\",\"variations\":[],\"docomo\":\"E6F8\",\"au\":\"E595\",\"softbank\":\"E204\",\"google\":\"FEB19\",\"image\":\"1f49f.png\",\"sheet_x\":20,\"sheet_y\":6,\"short_name\":\"heart_decoration\",\"short_names\":[\"heart_decoration\"],\"category\":\"Symbols\",\"sort_order\":15,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"yum\":{\"name\":\"Face Savouring Delicious Food\",\"unified\":\"1F60B\",\"variations\":[],\"docomo\":\"E752\",\"au\":\"EACD\",\"softbank\":\"E056\",\"google\":\"FE32B\",\"image\":\"1f60b.png\",\"sheet_x\":26,\"sheet_y\":26,\"short_name\":\"yum\",\"short_names\":[\"yum\"],\"category\":\"People\",\"sort_order\":15,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"eggplant\":{\"name\":\"Aubergine\",\"unified\":\"1F346\",\"variations\":[],\"docomo\":null,\"au\":\"EABC\",\"softbank\":\"E34A\",\"google\":\"FE056\",\"image\":\"1f346.png\",\"sheet_x\":7,\"sheet_y\":7,\"short_name\":\"eggplant\",\"short_names\":[\"eggplant\"],\"category\":\"Foods\",\"sort_order\":15,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-at\":{\"name\":\"Regional Indicator Symbol Letters AT\",\"unified\":\"1F1E6-1F1F9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e6-1f1f9.png\",\"sheet_x\":33,\"sheet_y\":4,\"short_name\":\"flag-at\",\"short_names\":[\"flag-at\"],\"category\":\"Flags\",\"sort_order\":15,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"rotating_light\":{\"name\":\"Police Cars Revolving Light\",\"unified\":\"1F6A8\",\"variations\":[],\"docomo\":null,\"au\":\"EB73\",\"softbank\":\"E432\",\"google\":\"FE7F9\",\"image\":\"1f6a8.png\",\"sheet_x\":30,\"sheet_y\":16,\"short_name\":\"rotating_light\",\"short_names\":[\"rotating_light\"],\"category\":\"Places\",\"sort_order\":16,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"monkey_face\":{\"name\":\"Monkey Face\",\"unified\":\"1F435\",\"variations\":[],\"docomo\":null,\"au\":\"E4D9\",\"softbank\":\"E109\",\"google\":\"FE1C4\",\"image\":\"1f435.png\",\"sheet_x\":13,\"sheet_y\":17,\"short_name\":\"monkey_face\",\"short_names\":[\"monkey_face\"],\"category\":\"Nature\",\"sort_order\":16,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[\":o)\"]},\"ski\":{\"name\":\"Ski and Ski Boot\",\"unified\":\"1F3BF\",\"variations\":[],\"docomo\":\"E657\",\"au\":\"EAAC\",\"softbank\":\"E013\",\"google\":\"FE7D5\",\"image\":\"1f3bf.png\",\"sheet_x\":10,\"sheet_y\":5,\"short_name\":\"ski\",\"short_names\":[\"ski\"],\"category\":\"Activity\",\"sort_order\":16,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"hot_pepper\":{\"name\":\"Hot Pepper\",\"unified\":\"1F336\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f336.png\",\"sheet_x\":6,\"sheet_y\":32,\"short_name\":\"hot_pepper\",\"short_names\":[\"hot_pepper\"],\"category\":\"Foods\",\"sort_order\":16,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"peace_symbol\":{\"name\":\"Peace Symbol\",\"unified\":\"262E\",\"variations\":[\"262E-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"262e.png\",\"sheet_x\":1,\"sheet_y\":21,\"short_name\":\"peace_symbol\",\"short_names\":[\"peace_symbol\"],\"category\":\"Symbols\",\"sort_order\":16,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-az\":{\"name\":\"Regional Indicator Symbol Letters AZ\",\"unified\":\"1F1E6-1F1FF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e6-1f1ff.png\",\"sheet_x\":33,\"sheet_y\":8,\"short_name\":\"flag-az\",\"short_names\":[\"flag-az\"],\"category\":\"Flags\",\"sort_order\":16,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"relieved\":{\"name\":\"Relieved Face\",\"unified\":\"1F60C\",\"variations\":[],\"docomo\":\"E721\",\"au\":\"EAC5\",\"softbank\":\"E40A\",\"google\":\"FE33E\",\"image\":\"1f60c.png\",\"sheet_x\":26,\"sheet_y\":27,\"short_name\":\"relieved\",\"short_names\":[\"relieved\"],\"category\":\"People\",\"sort_order\":16,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"vhs\":{\"name\":\"Videocassette\",\"unified\":\"1F4FC\",\"variations\":[],\"docomo\":null,\"au\":\"E580\",\"softbank\":\"E129\",\"google\":\"FE820\",\"image\":\"1f4fc.png\",\"sheet_x\":22,\"sheet_y\":22,\"short_name\":\"vhs\",\"short_names\":[\"vhs\"],\"category\":\"Objects\",\"sort_order\":16,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"oncoming_police_car\":{\"name\":\"Oncoming Police Car\",\"unified\":\"1F694\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f694.png\",\"sheet_x\":29,\"sheet_y\":32,\"short_name\":\"oncoming_police_car\",\"short_names\":[\"oncoming_police_car\"],\"category\":\"Places\",\"sort_order\":17,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"corn\":{\"name\":\"Ear of Maize\",\"unified\":\"1F33D\",\"variations\":[],\"docomo\":null,\"au\":\"EB36\",\"softbank\":null,\"google\":\"FE04A\",\"image\":\"1f33d.png\",\"sheet_x\":6,\"sheet_y\":39,\"short_name\":\"corn\",\"short_names\":[\"corn\"],\"category\":\"Foods\",\"sort_order\":17,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"latin_cross\":{\"name\":\"Latin Cross\",\"unified\":\"271D\",\"variations\":[\"271D-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"271d.png\",\"sheet_x\":3,\"sheet_y\":37,\"short_name\":\"latin_cross\",\"short_names\":[\"latin_cross\"],\"category\":\"Symbols\",\"sort_order\":17,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"camera\":{\"name\":\"Camera\",\"unified\":\"1F4F7\",\"variations\":[],\"docomo\":\"E681\",\"au\":\"E515\",\"softbank\":\"E008\",\"google\":\"FE4EF\",\"image\":\"1f4f7.png\",\"sheet_x\":22,\"sheet_y\":17,\"short_name\":\"camera\",\"short_names\":[\"camera\"],\"category\":\"Objects\",\"sort_order\":17,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"see_no_evil\":{\"name\":\"See-No-Evil Monkey\",\"unified\":\"1F648\",\"variations\":[],\"docomo\":null,\"au\":\"EB50\",\"softbank\":null,\"google\":\"FE354\",\"image\":\"1f648.png\",\"sheet_x\":28,\"sheet_y\":20,\"short_name\":\"see_no_evil\",\"short_names\":[\"see_no_evil\"],\"category\":\"Nature\",\"sort_order\":17,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"heart_eyes\":{\"name\":\"Smiling Face with Heart-Shaped Eyes\",\"unified\":\"1F60D\",\"variations\":[],\"docomo\":\"E726\",\"au\":\"E5C4\",\"softbank\":\"E106\",\"google\":\"FE327\",\"image\":\"1f60d.png\",\"sheet_x\":26,\"sheet_y\":28,\"short_name\":\"heart_eyes\",\"short_names\":[\"heart_eyes\"],\"category\":\"People\",\"sort_order\":17,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-bs\":{\"name\":\"Regional Indicator Symbol Letters BS\",\"unified\":\"1F1E7-1F1F8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1f8.png\",\"sheet_x\":33,\"sheet_y\":24,\"short_name\":\"flag-bs\",\"short_names\":[\"flag-bs\"],\"category\":\"Flags\",\"sort_order\":17,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"skier\":{\"name\":\"Skier\",\"unified\":\"26F7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"26f7.png\",\"sheet_x\":2,\"sheet_y\":36,\"short_name\":\"skier\",\"short_names\":[\"skier\"],\"category\":\"Activity\",\"sort_order\":17,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"oncoming_bus\":{\"name\":\"Oncoming Bus\",\"unified\":\"1F68D\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f68d.png\",\"sheet_x\":29,\"sheet_y\":25,\"short_name\":\"oncoming_bus\",\"short_names\":[\"oncoming_bus\"],\"category\":\"Places\",\"sort_order\":18,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"snowboarder\":{\"name\":\"Snowboarder\",\"unified\":\"1F3C2\",\"variations\":[],\"docomo\":\"E712\",\"au\":\"E4B8\",\"softbank\":null,\"google\":\"FE7D8\",\"image\":\"1f3c2.png\",\"sheet_x\":10,\"sheet_y\":8,\"short_name\":\"snowboarder\",\"short_names\":[\"snowboarder\"],\"category\":\"Activity\",\"sort_order\":18,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"sweet_potato\":{\"name\":\"Roasted Sweet Potato\",\"unified\":\"1F360\",\"variations\":[],\"docomo\":null,\"au\":\"EB3A\",\"softbank\":null,\"google\":\"FE974\",\"image\":\"1f360.png\",\"sheet_x\":7,\"sheet_y\":33,\"short_name\":\"sweet_potato\",\"short_names\":[\"sweet_potato\"],\"category\":\"Foods\",\"sort_order\":18,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"hear_no_evil\":{\"name\":\"Hear-No-Evil Monkey\",\"unified\":\"1F649\",\"variations\":[],\"docomo\":null,\"au\":\"EB52\",\"softbank\":null,\"google\":\"FE356\",\"image\":\"1f649.png\",\"sheet_x\":28,\"sheet_y\":21,\"short_name\":\"hear_no_evil\",\"short_names\":[\"hear_no_evil\"],\"category\":\"Nature\",\"sort_order\":18,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-bh\":{\"name\":\"Regional Indicator Symbol Letters BH\",\"unified\":\"1F1E7-1F1ED\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1ed.png\",\"sheet_x\":33,\"sheet_y\":15,\"short_name\":\"flag-bh\",\"short_names\":[\"flag-bh\"],\"category\":\"Flags\",\"sort_order\":18,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"star_and_crescent\":{\"name\":\"Star and Crescent\",\"unified\":\"262A\",\"variations\":[\"262A-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"262a.png\",\"sheet_x\":1,\"sheet_y\":20,\"short_name\":\"star_and_crescent\",\"short_names\":[\"star_and_crescent\"],\"category\":\"Symbols\",\"sort_order\":18,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"kissing_heart\":{\"name\":\"Face Throwing a Kiss\",\"unified\":\"1F618\",\"variations\":[],\"docomo\":\"E726\",\"au\":\"EACF\",\"softbank\":\"E418\",\"google\":\"FE32C\",\"image\":\"1f618.png\",\"sheet_x\":26,\"sheet_y\":39,\"short_name\":\"kissing_heart\",\"short_names\":[\"kissing_heart\"],\"category\":\"People\",\"sort_order\":18,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"camera_with_flash\":{\"name\":\"Camera with Flash\",\"unified\":\"1F4F8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f4f8.png\",\"sheet_x\":22,\"sheet_y\":18,\"short_name\":\"camera_with_flash\",\"short_names\":[\"camera_with_flash\"],\"category\":\"Objects\",\"sort_order\":18,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"ice_skate\":{\"name\":\"Ice Skate\",\"unified\":\"26F8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"26f8.png\",\"sheet_x\":2,\"sheet_y\":37,\"short_name\":\"ice_skate\",\"short_names\":[\"ice_skate\"],\"category\":\"Activity\",\"sort_order\":19,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"oncoming_automobile\":{\"name\":\"Oncoming Automobile\",\"unified\":\"1F698\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f698.png\",\"sheet_x\":29,\"sheet_y\":36,\"short_name\":\"oncoming_automobile\",\"short_names\":[\"oncoming_automobile\"],\"category\":\"Places\",\"sort_order\":19,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"speak_no_evil\":{\"name\":\"Speak-No-Evil Monkey\",\"unified\":\"1F64A\",\"variations\":[],\"docomo\":null,\"au\":\"EB51\",\"softbank\":null,\"google\":\"FE355\",\"image\":\"1f64a.png\",\"sheet_x\":28,\"sheet_y\":22,\"short_name\":\"speak_no_evil\",\"short_names\":[\"speak_no_evil\"],\"category\":\"Nature\",\"sort_order\":19,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"honey_pot\":{\"name\":\"Honey Pot\",\"unified\":\"1F36F\",\"variations\":[],\"docomo\":null,\"au\":\"EB59\",\"softbank\":null,\"google\":\"FE97E\",\"image\":\"1f36f.png\",\"sheet_x\":8,\"sheet_y\":7,\"short_name\":\"honey_pot\",\"short_names\":[\"honey_pot\"],\"category\":\"Foods\",\"sort_order\":19,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"kissing\":{\"name\":\"Kissing Face\",\"unified\":\"1F617\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f617.png\",\"sheet_x\":26,\"sheet_y\":38,\"short_name\":\"kissing\",\"short_names\":[\"kissing\"],\"category\":\"People\",\"sort_order\":19,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"video_camera\":{\"name\":\"Video Camera\",\"unified\":\"1F4F9\",\"variations\":[],\"docomo\":\"E677\",\"au\":\"E57E\",\"softbank\":\"E03D\",\"google\":\"FE4F9\",\"image\":\"1f4f9.png\",\"sheet_x\":22,\"sheet_y\":19,\"short_name\":\"video_camera\",\"short_names\":[\"video_camera\"],\"category\":\"Objects\",\"sort_order\":19,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"om_symbol\":{\"name\":\"Om Symbol\",\"unified\":\"1F549\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f549.png\",\"sheet_x\":24,\"sheet_y\":5,\"short_name\":\"om_symbol\",\"short_names\":[\"om_symbol\"],\"category\":\"Symbols\",\"sort_order\":19,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-bd\":{\"name\":\"Regional Indicator Symbol Letters BD\",\"unified\":\"1F1E7-1F1E9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1e9.png\",\"sheet_x\":33,\"sheet_y\":11,\"short_name\":\"flag-bd\",\"short_names\":[\"flag-bd\"],\"category\":\"Flags\",\"sort_order\":19,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"monkey\":{\"name\":\"Monkey\",\"unified\":\"1F412\",\"variations\":[],\"docomo\":null,\"au\":\"E4D9\",\"softbank\":\"E528\",\"google\":\"FE1CE\",\"image\":\"1f412.png\",\"sheet_x\":12,\"sheet_y\":23,\"short_name\":\"monkey\",\"short_names\":[\"monkey\"],\"category\":\"Nature\",\"sort_order\":20,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"movie_camera\":{\"name\":\"Movie Camera\",\"unified\":\"1F3A5\",\"variations\":[],\"docomo\":\"E677\",\"au\":\"E517\",\"softbank\":\"E03D\",\"google\":\"FE801\",\"image\":\"1f3a5.png\",\"sheet_x\":9,\"sheet_y\":20,\"short_name\":\"movie_camera\",\"short_names\":[\"movie_camera\"],\"category\":\"Objects\",\"sort_order\":20,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"oncoming_taxi\":{\"name\":\"Oncoming Taxi\",\"unified\":\"1F696\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f696.png\",\"sheet_x\":29,\"sheet_y\":34,\"short_name\":\"oncoming_taxi\",\"short_names\":[\"oncoming_taxi\"],\"category\":\"Places\",\"sort_order\":20,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-bb\":{\"name\":\"Regional Indicator Symbol Letters BB\",\"unified\":\"1F1E7-1F1E7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1e7.png\",\"sheet_x\":33,\"sheet_y\":10,\"short_name\":\"flag-bb\",\"short_names\":[\"flag-bb\"],\"category\":\"Flags\",\"sort_order\":20,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"kissing_smiling_eyes\":{\"name\":\"Kissing Face with Smiling Eyes\",\"unified\":\"1F619\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f619.png\",\"sheet_x\":26,\"sheet_y\":40,\"short_name\":\"kissing_smiling_eyes\",\"short_names\":[\"kissing_smiling_eyes\"],\"category\":\"People\",\"sort_order\":20,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"bread\":{\"name\":\"Bread\",\"unified\":\"1F35E\",\"variations\":[],\"docomo\":\"E74D\",\"au\":\"EAAF\",\"softbank\":\"E339\",\"google\":\"FE964\",\"image\":\"1f35e.png\",\"sheet_x\":7,\"sheet_y\":31,\"short_name\":\"bread\",\"short_names\":[\"bread\"],\"category\":\"Foods\",\"sort_order\":20,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"bow_and_arrow\":{\"name\":\"Bow and Arrow\",\"unified\":\"1F3F9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3f9.png\",\"sheet_x\":11,\"sheet_y\":39,\"short_name\":\"bow_and_arrow\",\"short_names\":[\"bow_and_arrow\"],\"category\":\"Activity\",\"sort_order\":20,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"wheel_of_dharma\":{\"name\":\"Wheel of Dharma\",\"unified\":\"2638\",\"variations\":[\"2638-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"2638.png\",\"sheet_x\":1,\"sheet_y\":23,\"short_name\":\"wheel_of_dharma\",\"short_names\":[\"wheel_of_dharma\"],\"category\":\"Symbols\",\"sort_order\":20,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"aerial_tramway\":{\"name\":\"Aerial Tramway\",\"unified\":\"1F6A1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6a1.png\",\"sheet_x\":30,\"sheet_y\":4,\"short_name\":\"aerial_tramway\",\"short_names\":[\"aerial_tramway\"],\"category\":\"Places\",\"sort_order\":21,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"cheese_wedge\":{\"name\":\"Cheese Wedge\",\"unified\":\"1F9C0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f9c0.png\",\"sheet_x\":32,\"sheet_y\":20,\"short_name\":\"cheese_wedge\",\"short_names\":[\"cheese_wedge\"],\"category\":\"Foods\",\"sort_order\":21,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"film_projector\":{\"name\":\"Film Projector\",\"unified\":\"1F4FD\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f4fd.png\",\"sheet_x\":22,\"sheet_y\":23,\"short_name\":\"film_projector\",\"short_names\":[\"film_projector\"],\"category\":\"Objects\",\"sort_order\":21,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"fishing_pole_and_fish\":{\"name\":\"Fishing Pole and Fish\",\"unified\":\"1F3A3\",\"variations\":[],\"docomo\":\"E751\",\"au\":\"EB42\",\"softbank\":\"E019\",\"google\":\"FE7FF\",\"image\":\"1f3a3.png\",\"sheet_x\":9,\"sheet_y\":18,\"short_name\":\"fishing_pole_and_fish\",\"short_names\":[\"fishing_pole_and_fish\"],\"category\":\"Activity\",\"sort_order\":21,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"kissing_closed_eyes\":{\"name\":\"Kissing Face with Closed Eyes\",\"unified\":\"1F61A\",\"variations\":[],\"docomo\":\"E726\",\"au\":\"EACE\",\"softbank\":\"E417\",\"google\":\"FE32D\",\"image\":\"1f61a.png\",\"sheet_x\":27,\"sheet_y\":0,\"short_name\":\"kissing_closed_eyes\",\"short_names\":[\"kissing_closed_eyes\"],\"category\":\"People\",\"sort_order\":21,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"star_of_david\":{\"name\":\"Star of David\",\"unified\":\"2721\",\"variations\":[\"2721-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"2721.png\",\"sheet_x\":3,\"sheet_y\":38,\"short_name\":\"star_of_david\",\"short_names\":[\"star_of_david\"],\"category\":\"Symbols\",\"sort_order\":21,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"chicken\":{\"name\":\"Chicken\",\"unified\":\"1F414\",\"variations\":[],\"docomo\":null,\"au\":\"EB23\",\"softbank\":\"E52E\",\"google\":\"FE1D4\",\"image\":\"1f414.png\",\"sheet_x\":12,\"sheet_y\":25,\"short_name\":\"chicken\",\"short_names\":[\"chicken\"],\"category\":\"Nature\",\"sort_order\":21,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-by\":{\"name\":\"Regional Indicator Symbol Letters BY\",\"unified\":\"1F1E7-1F1FE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1fe.png\",\"sheet_x\":33,\"sheet_y\":28,\"short_name\":\"flag-by\",\"short_names\":[\"flag-by\"],\"category\":\"Flags\",\"sort_order\":21,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"six_pointed_star\":{\"name\":\"Six Pointed Star with Middle Dot\",\"unified\":\"1F52F\",\"variations\":[],\"docomo\":null,\"au\":\"EA8F\",\"softbank\":\"E23E\",\"google\":\"FE4F8\",\"image\":\"1f52f.png\",\"sheet_x\":23,\"sheet_y\":31,\"short_name\":\"six_pointed_star\",\"short_names\":[\"six_pointed_star\"],\"category\":\"Symbols\",\"sort_order\":22,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"penguin\":{\"name\":\"Penguin\",\"unified\":\"1F427\",\"variations\":[],\"docomo\":\"E750\",\"au\":\"E4DC\",\"softbank\":\"E055\",\"google\":\"FE1BC\",\"image\":\"1f427.png\",\"sheet_x\":13,\"sheet_y\":3,\"short_name\":\"penguin\",\"short_names\":[\"penguin\"],\"category\":\"Nature\",\"sort_order\":22,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"mountain_cableway\":{\"name\":\"Mountain Cableway\",\"unified\":\"1F6A0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6a0.png\",\"sheet_x\":30,\"sheet_y\":3,\"short_name\":\"mountain_cableway\",\"short_names\":[\"mountain_cableway\"],\"category\":\"Places\",\"sort_order\":22,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"stuck_out_tongue_winking_eye\":{\"name\":\"Face with Stuck-out Tongue and Winking Eye\",\"unified\":\"1F61C\",\"variations\":[],\"docomo\":\"E728\",\"au\":\"E4E7\",\"softbank\":\"E105\",\"google\":\"FE329\",\"image\":\"1f61c.png\",\"sheet_x\":27,\"sheet_y\":2,\"short_name\":\"stuck_out_tongue_winking_eye\",\"short_names\":[\"stuck_out_tongue_winking_eye\"],\"category\":\"People\",\"sort_order\":22,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[\";p\",\";-p\",\";b\",\";-b\",\";P\",\";-P\"]},\"flag-be\":{\"name\":\"Regional Indicator Symbol Letters BE\",\"unified\":\"1F1E7-1F1EA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1ea.png\",\"sheet_x\":33,\"sheet_y\":12,\"short_name\":\"flag-be\",\"short_names\":[\"flag-be\"],\"category\":\"Flags\",\"sort_order\":22,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"film_frames\":{\"name\":\"Film Frames\",\"unified\":\"1F39E\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f39e.png\",\"sheet_x\":9,\"sheet_y\":13,\"short_name\":\"film_frames\",\"short_names\":[\"film_frames\"],\"category\":\"Objects\",\"sort_order\":22,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"poultry_leg\":{\"name\":\"Poultry Leg\",\"unified\":\"1F357\",\"variations\":[],\"docomo\":null,\"au\":\"EB3C\",\"softbank\":null,\"google\":\"FE976\",\"image\":\"1f357.png\",\"sheet_x\":7,\"sheet_y\":24,\"short_name\":\"poultry_leg\",\"short_names\":[\"poultry_leg\"],\"category\":\"Foods\",\"sort_order\":22,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"rowboat\":{\"name\":\"Rowboat\",\"unified\":\"1F6A3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6a3.png\",\"sheet_x\":30,\"sheet_y\":6,\"short_name\":\"rowboat\",\"short_names\":[\"rowboat\"],\"category\":\"Activity\",\"sort_order\":22,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F6A3-1F3FB\":{\"unified\":\"1F6A3-1F3FB\",\"image\":\"1f6a3-1f3fb.png\",\"sheet_x\":30,\"sheet_y\":7,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6A3-1F3FC\":{\"unified\":\"1F6A3-1F3FC\",\"image\":\"1f6a3-1f3fc.png\",\"sheet_x\":30,\"sheet_y\":8,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6A3-1F3FD\":{\"unified\":\"1F6A3-1F3FD\",\"image\":\"1f6a3-1f3fd.png\",\"sheet_x\":30,\"sheet_y\":9,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6A3-1F3FE\":{\"unified\":\"1F6A3-1F3FE\",\"image\":\"1f6a3-1f3fe.png\",\"sheet_x\":30,\"sheet_y\":10,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6A3-1F3FF\":{\"unified\":\"1F6A3-1F3FF\",\"image\":\"1f6a3-1f3ff.png\",\"sheet_x\":30,\"sheet_y\":11,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"menorah_with_nine_branches\":{\"name\":\"Menorah with Nine Branches\",\"unified\":\"1F54E\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f54e.png\",\"sheet_x\":24,\"sheet_y\":10,\"short_name\":\"menorah_with_nine_branches\",\"short_names\":[\"menorah_with_nine_branches\"],\"category\":\"Symbols\",\"sort_order\":23,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"stuck_out_tongue_closed_eyes\":{\"name\":\"Face with Stuck-out Tongue and Tightly-Closed Eyes\",\"unified\":\"1F61D\",\"variations\":[],\"docomo\":\"E728\",\"au\":\"E4E7\",\"softbank\":\"E409\",\"google\":\"FE32A\",\"image\":\"1f61d.png\",\"sheet_x\":27,\"sheet_y\":3,\"short_name\":\"stuck_out_tongue_closed_eyes\",\"short_names\":[\"stuck_out_tongue_closed_eyes\"],\"category\":\"People\",\"sort_order\":23,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-bz\":{\"name\":\"Regional Indicator Symbol Letters BZ\",\"unified\":\"1F1E7-1F1FF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1ff.png\",\"sheet_x\":33,\"sheet_y\":29,\"short_name\":\"flag-bz\",\"short_names\":[\"flag-bz\"],\"category\":\"Flags\",\"sort_order\":23,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"swimmer\":{\"name\":\"Swimmer\",\"unified\":\"1F3CA\",\"variations\":[],\"docomo\":null,\"au\":\"EADE\",\"softbank\":\"E42D\",\"google\":\"FE7DE\",\"image\":\"1f3ca.png\",\"sheet_x\":10,\"sheet_y\":26,\"short_name\":\"swimmer\",\"short_names\":[\"swimmer\"],\"category\":\"Activity\",\"sort_order\":23,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F3CA-1F3FB\":{\"unified\":\"1F3CA-1F3FB\",\"image\":\"1f3ca-1f3fb.png\",\"sheet_x\":10,\"sheet_y\":27,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F3CA-1F3FC\":{\"unified\":\"1F3CA-1F3FC\",\"image\":\"1f3ca-1f3fc.png\",\"sheet_x\":10,\"sheet_y\":28,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F3CA-1F3FD\":{\"unified\":\"1F3CA-1F3FD\",\"image\":\"1f3ca-1f3fd.png\",\"sheet_x\":10,\"sheet_y\":29,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F3CA-1F3FE\":{\"unified\":\"1F3CA-1F3FE\",\"image\":\"1f3ca-1f3fe.png\",\"sheet_x\":10,\"sheet_y\":30,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F3CA-1F3FF\":{\"unified\":\"1F3CA-1F3FF\",\"image\":\"1f3ca-1f3ff.png\",\"sheet_x\":10,\"sheet_y\":31,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"bird\":{\"name\":\"Bird\",\"unified\":\"1F426\",\"variations\":[],\"docomo\":\"E74F\",\"au\":\"E4E0\",\"softbank\":\"E521\",\"google\":\"FE1C8\",\"image\":\"1f426.png\",\"sheet_x\":13,\"sheet_y\":2,\"short_name\":\"bird\",\"short_names\":[\"bird\"],\"category\":\"Nature\",\"sort_order\":23,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"telephone_receiver\":{\"name\":\"Telephone Receiver\",\"unified\":\"1F4DE\",\"variations\":[],\"docomo\":\"E687\",\"au\":\"E51E\",\"softbank\":\"E009\",\"google\":\"FE524\",\"image\":\"1f4de.png\",\"sheet_x\":21,\"sheet_y\":33,\"short_name\":\"telephone_receiver\",\"short_names\":[\"telephone_receiver\"],\"category\":\"Objects\",\"sort_order\":23,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"meat_on_bone\":{\"name\":\"Meat on Bone\",\"unified\":\"1F356\",\"variations\":[],\"docomo\":null,\"au\":\"E4C4\",\"softbank\":null,\"google\":\"FE972\",\"image\":\"1f356.png\",\"sheet_x\":7,\"sheet_y\":23,\"short_name\":\"meat_on_bone\",\"short_names\":[\"meat_on_bone\"],\"category\":\"Foods\",\"sort_order\":23,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"suspension_railway\":{\"name\":\"Suspension Railway\",\"unified\":\"1F69F\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f69f.png\",\"sheet_x\":30,\"sheet_y\":2,\"short_name\":\"suspension_railway\",\"short_names\":[\"suspension_railway\"],\"category\":\"Places\",\"sort_order\":23,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-bj\":{\"name\":\"Regional Indicator Symbol Letters BJ\",\"unified\":\"1F1E7-1F1EF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1ef.png\",\"sheet_x\":33,\"sheet_y\":17,\"short_name\":\"flag-bj\",\"short_names\":[\"flag-bj\"],\"category\":\"Flags\",\"sort_order\":24,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"yin_yang\":{\"name\":\"Yin Yang\",\"unified\":\"262F\",\"variations\":[\"262F-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"262f.png\",\"sheet_x\":1,\"sheet_y\":22,\"short_name\":\"yin_yang\",\"short_names\":[\"yin_yang\"],\"category\":\"Symbols\",\"sort_order\":24,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"stuck_out_tongue\":{\"name\":\"Face with Stuck-out Tongue\",\"unified\":\"1F61B\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f61b.png\",\"sheet_x\":27,\"sheet_y\":1,\"short_name\":\"stuck_out_tongue\",\"short_names\":[\"stuck_out_tongue\"],\"category\":\"People\",\"sort_order\":24,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[\":p\",\":-p\",\":P\",\":-P\",\":b\",\":-b\"]},\"phone\":{\"name\":\"Black Telephone\",\"unified\":\"260E\",\"variations\":[\"260E-FE0F\"],\"docomo\":\"E687\",\"au\":\"E596\",\"softbank\":\"E009\",\"google\":\"FE523\",\"image\":\"260e.png\",\"sheet_x\":1,\"sheet_y\":5,\"short_name\":\"phone\",\"short_names\":[\"phone\",\"telephone\"],\"category\":\"Objects\",\"sort_order\":24,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"railway_car\":{\"name\":\"Railway Car\",\"unified\":\"1F683\",\"variations\":[],\"docomo\":\"E65B\",\"au\":\"E4B5\",\"softbank\":\"E01E\",\"google\":\"FE7DF\",\"image\":\"1f683.png\",\"sheet_x\":29,\"sheet_y\":15,\"short_name\":\"railway_car\",\"short_names\":[\"railway_car\"],\"category\":\"Places\",\"sort_order\":24,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"fried_shrimp\":{\"name\":\"Fried Shrimp\",\"unified\":\"1F364\",\"variations\":[],\"docomo\":null,\"au\":\"EB70\",\"softbank\":null,\"google\":\"FE97F\",\"image\":\"1f364.png\",\"sheet_x\":7,\"sheet_y\":37,\"short_name\":\"fried_shrimp\",\"short_names\":[\"fried_shrimp\"],\"category\":\"Foods\",\"sort_order\":24,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"surfer\":{\"name\":\"Surfer\",\"unified\":\"1F3C4\",\"variations\":[],\"docomo\":\"E712\",\"au\":\"EB41\",\"softbank\":\"E017\",\"google\":\"FE7DA\",\"image\":\"1f3c4.png\",\"sheet_x\":10,\"sheet_y\":15,\"short_name\":\"surfer\",\"short_names\":[\"surfer\"],\"category\":\"Activity\",\"sort_order\":24,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F3C4-1F3FB\":{\"unified\":\"1F3C4-1F3FB\",\"image\":\"1f3c4-1f3fb.png\",\"sheet_x\":10,\"sheet_y\":16,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F3C4-1F3FC\":{\"unified\":\"1F3C4-1F3FC\",\"image\":\"1f3c4-1f3fc.png\",\"sheet_x\":10,\"sheet_y\":17,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F3C4-1F3FD\":{\"unified\":\"1F3C4-1F3FD\",\"image\":\"1f3c4-1f3fd.png\",\"sheet_x\":10,\"sheet_y\":18,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F3C4-1F3FE\":{\"unified\":\"1F3C4-1F3FE\",\"image\":\"1f3c4-1f3fe.png\",\"sheet_x\":10,\"sheet_y\":19,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F3C4-1F3FF\":{\"unified\":\"1F3C4-1F3FF\",\"image\":\"1f3c4-1f3ff.png\",\"sheet_x\":10,\"sheet_y\":20,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"baby_chick\":{\"name\":\"Baby Chick\",\"unified\":\"1F424\",\"variations\":[],\"docomo\":\"E74F\",\"au\":\"E4E0\",\"softbank\":\"E523\",\"google\":\"FE1BA\",\"image\":\"1f424.png\",\"sheet_x\":13,\"sheet_y\":0,\"short_name\":\"baby_chick\",\"short_names\":[\"baby_chick\"],\"category\":\"Nature\",\"sort_order\":24,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"egg\":{\"name\":\"Cooking\",\"unified\":\"1F373\",\"variations\":[],\"docomo\":null,\"au\":\"E4D1\",\"softbank\":\"E147\",\"google\":\"FE965\",\"image\":\"1f373.png\",\"sheet_x\":8,\"sheet_y\":11,\"short_name\":\"egg\",\"short_names\":[\"egg\"],\"category\":\"Foods\",\"sort_order\":25,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-bm\":{\"name\":\"Regional Indicator Symbol Letters BM\",\"unified\":\"1F1E7-1F1F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1f2.png\",\"sheet_x\":33,\"sheet_y\":19,\"short_name\":\"flag-bm\",\"short_names\":[\"flag-bm\"],\"category\":\"Flags\",\"sort_order\":25,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"hatching_chick\":{\"name\":\"Hatching Chick\",\"unified\":\"1F423\",\"variations\":[],\"docomo\":\"E74F\",\"au\":\"E5DB\",\"softbank\":\"E523\",\"google\":\"FE1DD\",\"image\":\"1f423.png\",\"sheet_x\":12,\"sheet_y\":40,\"short_name\":\"hatching_chick\",\"short_names\":[\"hatching_chick\"],\"category\":\"Nature\",\"sort_order\":25,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"train\":{\"name\":\"Tram Car\",\"unified\":\"1F68B\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f68b.png\",\"sheet_x\":29,\"sheet_y\":23,\"short_name\":\"train\",\"short_names\":[\"train\"],\"category\":\"Places\",\"sort_order\":25,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"pager\":{\"name\":\"Pager\",\"unified\":\"1F4DF\",\"variations\":[],\"docomo\":\"E65A\",\"au\":\"E59B\",\"softbank\":null,\"google\":\"FE522\",\"image\":\"1f4df.png\",\"sheet_x\":21,\"sheet_y\":34,\"short_name\":\"pager\",\"short_names\":[\"pager\"],\"category\":\"Objects\",\"sort_order\":25,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"bath\":{\"name\":\"Bath\",\"unified\":\"1F6C0\",\"variations\":[],\"docomo\":\"E6F7\",\"au\":\"E5D8\",\"softbank\":\"E13F\",\"google\":\"FE505\",\"image\":\"1f6c0.png\",\"sheet_x\":31,\"sheet_y\":14,\"short_name\":\"bath\",\"short_names\":[\"bath\"],\"category\":\"Activity\",\"sort_order\":25,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F6C0-1F3FB\":{\"unified\":\"1F6C0-1F3FB\",\"image\":\"1f6c0-1f3fb.png\",\"sheet_x\":31,\"sheet_y\":15,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6C0-1F3FC\":{\"unified\":\"1F6C0-1F3FC\",\"image\":\"1f6c0-1f3fc.png\",\"sheet_x\":31,\"sheet_y\":16,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6C0-1F3FD\":{\"unified\":\"1F6C0-1F3FD\",\"image\":\"1f6c0-1f3fd.png\",\"sheet_x\":31,\"sheet_y\":17,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6C0-1F3FE\":{\"unified\":\"1F6C0-1F3FE\",\"image\":\"1f6c0-1f3fe.png\",\"sheet_x\":31,\"sheet_y\":18,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6C0-1F3FF\":{\"unified\":\"1F6C0-1F3FF\",\"image\":\"1f6c0-1f3ff.png\",\"sheet_x\":31,\"sheet_y\":19,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"money_mouth_face\":{\"name\":\"Money-Mouth Face\",\"unified\":\"1F911\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f911.png\",\"sheet_x\":32,\"sheet_y\":2,\"short_name\":\"money_mouth_face\",\"short_names\":[\"money_mouth_face\"],\"category\":\"People\",\"sort_order\":25,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"orthodox_cross\":{\"name\":\"Orthodox Cross\",\"unified\":\"2626\",\"variations\":[\"2626-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"2626.png\",\"sheet_x\":1,\"sheet_y\":19,\"short_name\":\"orthodox_cross\",\"short_names\":[\"orthodox_cross\"],\"category\":\"Symbols\",\"sort_order\":25,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"hatched_chick\":{\"name\":\"Front-Facing Baby Chick\",\"unified\":\"1F425\",\"variations\":[],\"docomo\":\"E74F\",\"au\":\"EB76\",\"softbank\":\"E523\",\"google\":\"FE1BB\",\"image\":\"1f425.png\",\"sheet_x\":13,\"sheet_y\":1,\"short_name\":\"hatched_chick\",\"short_names\":[\"hatched_chick\"],\"category\":\"Nature\",\"sort_order\":26,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"place_of_worship\":{\"name\":\"Place of Worship\",\"unified\":\"1F6D0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6d0.png\",\"sheet_x\":31,\"sheet_y\":30,\"short_name\":\"place_of_worship\",\"short_names\":[\"place_of_worship\"],\"category\":\"Symbols\",\"sort_order\":26,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"hamburger\":{\"name\":\"Hamburger\",\"unified\":\"1F354\",\"variations\":[],\"docomo\":\"E673\",\"au\":\"E4D6\",\"softbank\":\"E120\",\"google\":\"FE960\",\"image\":\"1f354.png\",\"sheet_x\":7,\"sheet_y\":21,\"short_name\":\"hamburger\",\"short_names\":[\"hamburger\"],\"category\":\"Foods\",\"sort_order\":26,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-bt\":{\"name\":\"Regional Indicator Symbol Letters BT\",\"unified\":\"1F1E7-1F1F9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1f9.png\",\"sheet_x\":33,\"sheet_y\":25,\"short_name\":\"flag-bt\",\"short_names\":[\"flag-bt\"],\"category\":\"Flags\",\"sort_order\":26,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"fax\":{\"name\":\"Fax Machine\",\"unified\":\"1F4E0\",\"variations\":[],\"docomo\":\"E6D0\",\"au\":\"E520\",\"softbank\":\"E00B\",\"google\":\"FE528\",\"image\":\"1f4e0.png\",\"sheet_x\":21,\"sheet_y\":35,\"short_name\":\"fax\",\"short_names\":[\"fax\"],\"category\":\"Objects\",\"sort_order\":26,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"nerd_face\":{\"name\":\"Nerd Face\",\"unified\":\"1F913\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f913.png\",\"sheet_x\":32,\"sheet_y\":4,\"short_name\":\"nerd_face\",\"short_names\":[\"nerd_face\"],\"category\":\"People\",\"sort_order\":26,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"monorail\":{\"name\":\"Monorail\",\"unified\":\"1F69D\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f69d.png\",\"sheet_x\":30,\"sheet_y\":0,\"short_name\":\"monorail\",\"short_names\":[\"monorail\"],\"category\":\"Places\",\"sort_order\":26,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"person_with_ball\":{\"name\":\"Person with Ball\",\"unified\":\"26F9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"26f9.png\",\"sheet_x\":2,\"sheet_y\":38,\"short_name\":\"person_with_ball\",\"short_names\":[\"person_with_ball\"],\"category\":\"Activity\",\"sort_order\":26,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"26F9-1F3FB\":{\"unified\":\"26F9-1F3FB\",\"image\":\"26f9-1f3fb.png\",\"sheet_x\":2,\"sheet_y\":39,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"26F9-1F3FC\":{\"unified\":\"26F9-1F3FC\",\"image\":\"26f9-1f3fc.png\",\"sheet_x\":2,\"sheet_y\":40,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"26F9-1F3FD\":{\"unified\":\"26F9-1F3FD\",\"image\":\"26f9-1f3fd.png\",\"sheet_x\":3,\"sheet_y\":0,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"26F9-1F3FE\":{\"unified\":\"26F9-1F3FE\",\"image\":\"26f9-1f3fe.png\",\"sheet_x\":3,\"sheet_y\":1,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"26F9-1F3FF\":{\"unified\":\"26F9-1F3FF\",\"image\":\"26f9-1f3ff.png\",\"sheet_x\":3,\"sheet_y\":2,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"weight_lifter\":{\"name\":\"Weight Lifter\",\"unified\":\"1F3CB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3cb.png\",\"sheet_x\":10,\"sheet_y\":32,\"short_name\":\"weight_lifter\",\"short_names\":[\"weight_lifter\"],\"category\":\"Activity\",\"sort_order\":27,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F3CB-1F3FB\":{\"unified\":\"1F3CB-1F3FB\",\"image\":\"1f3cb-1f3fb.png\",\"sheet_x\":10,\"sheet_y\":33,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F3CB-1F3FC\":{\"unified\":\"1F3CB-1F3FC\",\"image\":\"1f3cb-1f3fc.png\",\"sheet_x\":10,\"sheet_y\":34,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F3CB-1F3FD\":{\"unified\":\"1F3CB-1F3FD\",\"image\":\"1f3cb-1f3fd.png\",\"sheet_x\":10,\"sheet_y\":35,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F3CB-1F3FE\":{\"unified\":\"1F3CB-1F3FE\",\"image\":\"1f3cb-1f3fe.png\",\"sheet_x\":10,\"sheet_y\":36,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F3CB-1F3FF\":{\"unified\":\"1F3CB-1F3FF\",\"image\":\"1f3cb-1f3ff.png\",\"sheet_x\":10,\"sheet_y\":37,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"sunglasses\":{\"name\":\"Smiling Face with Sunglasses\",\"unified\":\"1F60E\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f60e.png\",\"sheet_x\":26,\"sheet_y\":29,\"short_name\":\"sunglasses\",\"short_names\":[\"sunglasses\"],\"category\":\"People\",\"sort_order\":27,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[\"8)\"]},\"wolf\":{\"name\":\"Wolf Face\",\"unified\":\"1F43A\",\"variations\":[],\"docomo\":\"E6A1\",\"au\":\"E4E1\",\"softbank\":\"E52A\",\"google\":\"FE1D0\",\"image\":\"1f43a.png\",\"sheet_x\":13,\"sheet_y\":22,\"short_name\":\"wolf\",\"short_names\":[\"wolf\"],\"category\":\"Nature\",\"sort_order\":27,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"bullettrain_side\":{\"name\":\"High-Speed Train\",\"unified\":\"1F684\",\"variations\":[],\"docomo\":\"E65D\",\"au\":\"E4B0\",\"softbank\":\"E435\",\"google\":\"FE7E2\",\"image\":\"1f684.png\",\"sheet_x\":29,\"sheet_y\":16,\"short_name\":\"bullettrain_side\",\"short_names\":[\"bullettrain_side\"],\"category\":\"Places\",\"sort_order\":27,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"ophiuchus\":{\"name\":\"Ophiuchus\",\"unified\":\"26CE\",\"variations\":[],\"docomo\":null,\"au\":\"E49B\",\"softbank\":\"E24B\",\"google\":\"FE037\",\"image\":\"26ce.png\",\"sheet_x\":2,\"sheet_y\":23,\"short_name\":\"ophiuchus\",\"short_names\":[\"ophiuchus\"],\"category\":\"Symbols\",\"sort_order\":27,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-bo\":{\"name\":\"Regional Indicator Symbol Letters BO\",\"unified\":\"1F1E7-1F1F4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1f4.png\",\"sheet_x\":33,\"sheet_y\":21,\"short_name\":\"flag-bo\",\"short_names\":[\"flag-bo\"],\"category\":\"Flags\",\"sort_order\":27,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"tv\":{\"name\":\"Television\",\"unified\":\"1F4FA\",\"variations\":[],\"docomo\":\"E68A\",\"au\":\"E502\",\"softbank\":\"E12A\",\"google\":\"FE81C\",\"image\":\"1f4fa.png\",\"sheet_x\":22,\"sheet_y\":20,\"short_name\":\"tv\",\"short_names\":[\"tv\"],\"category\":\"Objects\",\"sort_order\":27,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"fries\":{\"name\":\"French Fries\",\"unified\":\"1F35F\",\"variations\":[],\"docomo\":null,\"au\":\"EAB1\",\"softbank\":\"E33B\",\"google\":\"FE967\",\"image\":\"1f35f.png\",\"sheet_x\":7,\"sheet_y\":32,\"short_name\":\"fries\",\"short_names\":[\"fries\"],\"category\":\"Foods\",\"sort_order\":27,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"bicyclist\":{\"name\":\"Bicyclist\",\"unified\":\"1F6B4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6b4.png\",\"sheet_x\":30,\"sheet_y\":28,\"short_name\":\"bicyclist\",\"short_names\":[\"bicyclist\"],\"category\":\"Activity\",\"sort_order\":28,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F6B4-1F3FB\":{\"unified\":\"1F6B4-1F3FB\",\"image\":\"1f6b4-1f3fb.png\",\"sheet_x\":30,\"sheet_y\":29,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6B4-1F3FC\":{\"unified\":\"1F6B4-1F3FC\",\"image\":\"1f6b4-1f3fc.png\",\"sheet_x\":30,\"sheet_y\":30,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6B4-1F3FD\":{\"unified\":\"1F6B4-1F3FD\",\"image\":\"1f6b4-1f3fd.png\",\"sheet_x\":30,\"sheet_y\":31,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6B4-1F3FE\":{\"unified\":\"1F6B4-1F3FE\",\"image\":\"1f6b4-1f3fe.png\",\"sheet_x\":30,\"sheet_y\":32,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6B4-1F3FF\":{\"unified\":\"1F6B4-1F3FF\",\"image\":\"1f6b4-1f3ff.png\",\"sheet_x\":30,\"sheet_y\":33,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"aries\":{\"name\":\"Aries\",\"unified\":\"2648\",\"variations\":[\"2648-FE0F\"],\"docomo\":\"E646\",\"au\":\"E48F\",\"softbank\":\"E23F\",\"google\":\"FE02B\",\"image\":\"2648.png\",\"sheet_x\":1,\"sheet_y\":26,\"short_name\":\"aries\",\"short_names\":[\"aries\"],\"category\":\"Symbols\",\"sort_order\":28,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"hugging_face\":{\"name\":\"Hugging Face\",\"unified\":\"1F917\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f917.png\",\"sheet_x\":32,\"sheet_y\":8,\"short_name\":\"hugging_face\",\"short_names\":[\"hugging_face\"],\"category\":\"People\",\"sort_order\":28,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-bq\":{\"name\":\"Regional Indicator Symbol Letters BQ\",\"unified\":\"1F1E7-1F1F6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1f6.png\",\"sheet_x\":33,\"sheet_y\":22,\"short_name\":\"flag-bq\",\"short_names\":[\"flag-bq\"],\"category\":\"Flags\",\"sort_order\":28,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"bullettrain_front\":{\"name\":\"High-Speed Train with Bullet Nose\",\"unified\":\"1F685\",\"variations\":[],\"docomo\":\"E65D\",\"au\":\"E4B0\",\"softbank\":\"E01F\",\"google\":\"FE7E3\",\"image\":\"1f685.png\",\"sheet_x\":29,\"sheet_y\":17,\"short_name\":\"bullettrain_front\",\"short_names\":[\"bullettrain_front\"],\"category\":\"Places\",\"sort_order\":28,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"radio\":{\"name\":\"Radio\",\"unified\":\"1F4FB\",\"variations\":[],\"docomo\":null,\"au\":\"E5B9\",\"softbank\":\"E128\",\"google\":\"FE81F\",\"image\":\"1f4fb.png\",\"sheet_x\":22,\"sheet_y\":21,\"short_name\":\"radio\",\"short_names\":[\"radio\"],\"category\":\"Objects\",\"sort_order\":28,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"hotdog\":{\"name\":\"Hot Dog\",\"unified\":\"1F32D\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f32d.png\",\"sheet_x\":6,\"sheet_y\":23,\"short_name\":\"hotdog\",\"short_names\":[\"hotdog\"],\"category\":\"Foods\",\"sort_order\":28,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"boar\":{\"name\":\"Boar\",\"unified\":\"1F417\",\"variations\":[],\"docomo\":null,\"au\":\"EB24\",\"softbank\":\"E52F\",\"google\":\"FE1D5\",\"image\":\"1f417.png\",\"sheet_x\":12,\"sheet_y\":28,\"short_name\":\"boar\",\"short_names\":[\"boar\"],\"category\":\"Nature\",\"sort_order\":28,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"studio_microphone\":{\"name\":\"Studio Microphone\",\"unified\":\"1F399\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f399.png\",\"sheet_x\":9,\"sheet_y\":10,\"short_name\":\"studio_microphone\",\"short_names\":[\"studio_microphone\"],\"category\":\"Objects\",\"sort_order\":29,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"pizza\":{\"name\":\"Slice of Pizza\",\"unified\":\"1F355\",\"variations\":[],\"docomo\":null,\"au\":\"EB3B\",\"softbank\":null,\"google\":\"FE975\",\"image\":\"1f355.png\",\"sheet_x\":7,\"sheet_y\":22,\"short_name\":\"pizza\",\"short_names\":[\"pizza\"],\"category\":\"Foods\",\"sort_order\":29,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ba\":{\"name\":\"Regional Indicator Symbol Letters BA\",\"unified\":\"1F1E7-1F1E6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1e6.png\",\"sheet_x\":33,\"sheet_y\":9,\"short_name\":\"flag-ba\",\"short_names\":[\"flag-ba\"],\"category\":\"Flags\",\"sort_order\":29,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"mountain_bicyclist\":{\"name\":\"Mountain Bicyclist\",\"unified\":\"1F6B5\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6b5.png\",\"sheet_x\":30,\"sheet_y\":34,\"short_name\":\"mountain_bicyclist\",\"short_names\":[\"mountain_bicyclist\"],\"category\":\"Activity\",\"sort_order\":29,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F6B5-1F3FB\":{\"unified\":\"1F6B5-1F3FB\",\"image\":\"1f6b5-1f3fb.png\",\"sheet_x\":30,\"sheet_y\":35,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6B5-1F3FC\":{\"unified\":\"1F6B5-1F3FC\",\"image\":\"1f6b5-1f3fc.png\",\"sheet_x\":30,\"sheet_y\":36,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6B5-1F3FD\":{\"unified\":\"1F6B5-1F3FD\",\"image\":\"1f6b5-1f3fd.png\",\"sheet_x\":30,\"sheet_y\":37,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6B5-1F3FE\":{\"unified\":\"1F6B5-1F3FE\",\"image\":\"1f6b5-1f3fe.png\",\"sheet_x\":30,\"sheet_y\":38,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6B5-1F3FF\":{\"unified\":\"1F6B5-1F3FF\",\"image\":\"1f6b5-1f3ff.png\",\"sheet_x\":30,\"sheet_y\":39,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"smirk\":{\"name\":\"Smirking Face\",\"unified\":\"1F60F\",\"variations\":[],\"docomo\":\"E72C\",\"au\":\"EABF\",\"softbank\":\"E402\",\"google\":\"FE343\",\"image\":\"1f60f.png\",\"sheet_x\":26,\"sheet_y\":30,\"short_name\":\"smirk\",\"short_names\":[\"smirk\"],\"category\":\"People\",\"sort_order\":29,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"light_rail\":{\"name\":\"Light Rail\",\"unified\":\"1F688\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f688.png\",\"sheet_x\":29,\"sheet_y\":20,\"short_name\":\"light_rail\",\"short_names\":[\"light_rail\"],\"category\":\"Places\",\"sort_order\":29,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"horse\":{\"name\":\"Horse Face\",\"unified\":\"1F434\",\"variations\":[],\"docomo\":\"E754\",\"au\":\"E4D8\",\"softbank\":\"E01A\",\"google\":\"FE1BE\",\"image\":\"1f434.png\",\"sheet_x\":13,\"sheet_y\":16,\"short_name\":\"horse\",\"short_names\":[\"horse\"],\"category\":\"Nature\",\"sort_order\":29,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"taurus\":{\"name\":\"Taurus\",\"unified\":\"2649\",\"variations\":[\"2649-FE0F\"],\"docomo\":\"E647\",\"au\":\"E490\",\"softbank\":\"E240\",\"google\":\"FE02C\",\"image\":\"2649.png\",\"sheet_x\":1,\"sheet_y\":27,\"short_name\":\"taurus\",\"short_names\":[\"taurus\"],\"category\":\"Symbols\",\"sort_order\":29,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"gemini\":{\"name\":\"Gemini\",\"unified\":\"264A\",\"variations\":[\"264A-FE0F\"],\"docomo\":\"E648\",\"au\":\"E491\",\"softbank\":\"E241\",\"google\":\"FE02D\",\"image\":\"264a.png\",\"sheet_x\":1,\"sheet_y\":28,\"short_name\":\"gemini\",\"short_names\":[\"gemini\"],\"category\":\"Symbols\",\"sort_order\":30,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"horse_racing\":{\"name\":\"Horse Racing\",\"unified\":\"1F3C7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3c7.png\",\"sheet_x\":10,\"sheet_y\":23,\"short_name\":\"horse_racing\",\"short_names\":[\"horse_racing\"],\"category\":\"Activity\",\"sort_order\":30,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"level_slider\":{\"name\":\"Level Slider\",\"unified\":\"1F39A\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f39a.png\",\"sheet_x\":9,\"sheet_y\":11,\"short_name\":\"level_slider\",\"short_names\":[\"level_slider\"],\"category\":\"Objects\",\"sort_order\":30,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-bw\":{\"name\":\"Regional Indicator Symbol Letters BW\",\"unified\":\"1F1E7-1F1FC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1fc.png\",\"sheet_x\":33,\"sheet_y\":27,\"short_name\":\"flag-bw\",\"short_names\":[\"flag-bw\"],\"category\":\"Flags\",\"sort_order\":30,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"unicorn_face\":{\"name\":\"Unicorn Face\",\"unified\":\"1F984\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f984.png\",\"sheet_x\":32,\"sheet_y\":19,\"short_name\":\"unicorn_face\",\"short_names\":[\"unicorn_face\"],\"category\":\"Nature\",\"sort_order\":30,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"mountain_railway\":{\"name\":\"Mountain Railway\",\"unified\":\"1F69E\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f69e.png\",\"sheet_x\":30,\"sheet_y\":1,\"short_name\":\"mountain_railway\",\"short_names\":[\"mountain_railway\"],\"category\":\"Places\",\"sort_order\":30,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"spaghetti\":{\"name\":\"Spaghetti\",\"unified\":\"1F35D\",\"variations\":[],\"docomo\":null,\"au\":\"EAB5\",\"softbank\":\"E33F\",\"google\":\"FE96B\",\"image\":\"1f35d.png\",\"sheet_x\":7,\"sheet_y\":30,\"short_name\":\"spaghetti\",\"short_names\":[\"spaghetti\"],\"category\":\"Foods\",\"sort_order\":30,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"no_mouth\":{\"name\":\"Face Without Mouth\",\"unified\":\"1F636\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f636.png\",\"sheet_x\":27,\"sheet_y\":28,\"short_name\":\"no_mouth\",\"short_names\":[\"no_mouth\"],\"category\":\"People\",\"sort_order\":30,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-br\":{\"name\":\"Regional Indicator Symbol Letters BR\",\"unified\":\"1F1E7-1F1F7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1f7.png\",\"sheet_x\":33,\"sheet_y\":23,\"short_name\":\"flag-br\",\"short_names\":[\"flag-br\"],\"category\":\"Flags\",\"sort_order\":31,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"man_in_business_suit_levitating\":{\"name\":\"Man in Business Suit Levitating\",\"unified\":\"1F574\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f574.png\",\"sheet_x\":24,\"sheet_y\":38,\"short_name\":\"man_in_business_suit_levitating\",\"short_names\":[\"man_in_business_suit_levitating\"],\"category\":\"Activity\",\"sort_order\":31,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"control_knobs\":{\"name\":\"Control Knobs\",\"unified\":\"1F39B\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f39b.png\",\"sheet_x\":9,\"sheet_y\":12,\"short_name\":\"control_knobs\",\"short_names\":[\"control_knobs\"],\"category\":\"Objects\",\"sort_order\":31,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"bee\":{\"name\":\"Honeybee\",\"unified\":\"1F41D\",\"variations\":[],\"docomo\":null,\"au\":\"EB57\",\"softbank\":null,\"google\":\"FE1E1\",\"image\":\"1f41d.png\",\"sheet_x\":12,\"sheet_y\":34,\"short_name\":\"bee\",\"short_names\":[\"bee\",\"honeybee\"],\"category\":\"Nature\",\"sort_order\":31,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"neutral_face\":{\"name\":\"Neutral Face\",\"unified\":\"1F610\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f610.png\",\"sheet_x\":26,\"sheet_y\":31,\"short_name\":\"neutral_face\",\"short_names\":[\"neutral_face\"],\"category\":\"People\",\"sort_order\":31,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[\":|\",\":-|\"]},\"steam_locomotive\":{\"name\":\"Steam Locomotive\",\"unified\":\"1F682\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f682.png\",\"sheet_x\":29,\"sheet_y\":14,\"short_name\":\"steam_locomotive\",\"short_names\":[\"steam_locomotive\"],\"category\":\"Places\",\"sort_order\":31,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"cancer\":{\"name\":\"Cancer\",\"unified\":\"264B\",\"variations\":[\"264B-FE0F\"],\"docomo\":\"E649\",\"au\":\"E492\",\"softbank\":\"E242\",\"google\":\"FE02E\",\"image\":\"264b.png\",\"sheet_x\":1,\"sheet_y\":29,\"short_name\":\"cancer\",\"short_names\":[\"cancer\"],\"category\":\"Symbols\",\"sort_order\":31,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"taco\":{\"name\":\"Taco\",\"unified\":\"1F32E\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f32e.png\",\"sheet_x\":6,\"sheet_y\":24,\"short_name\":\"taco\",\"short_names\":[\"taco\"],\"category\":\"Foods\",\"sort_order\":31,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"burrito\":{\"name\":\"Burrito\",\"unified\":\"1F32F\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f32f.png\",\"sheet_x\":6,\"sheet_y\":25,\"short_name\":\"burrito\",\"short_names\":[\"burrito\"],\"category\":\"Foods\",\"sort_order\":32,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"expressionless\":{\"name\":\"Expressionless Face\",\"unified\":\"1F611\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f611.png\",\"sheet_x\":26,\"sheet_y\":32,\"short_name\":\"expressionless\",\"short_names\":[\"expressionless\"],\"category\":\"People\",\"sort_order\":32,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"trophy\":{\"name\":\"Trophy\",\"unified\":\"1F3C6\",\"variations\":[],\"docomo\":null,\"au\":\"E5D3\",\"softbank\":\"E131\",\"google\":\"FE7DB\",\"image\":\"1f3c6.png\",\"sheet_x\":10,\"sheet_y\":22,\"short_name\":\"trophy\",\"short_names\":[\"trophy\"],\"category\":\"Activity\",\"sort_order\":32,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"train2\":{\"name\":\"Train\",\"unified\":\"1F686\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f686.png\",\"sheet_x\":29,\"sheet_y\":18,\"short_name\":\"train2\",\"short_names\":[\"train2\"],\"category\":\"Places\",\"sort_order\":32,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-io\":{\"name\":\"Regional Indicator Symbol Letters IO\",\"unified\":\"1F1EE-1F1F4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ee-1f1f4.png\",\"sheet_x\":35,\"sheet_y\":21,\"short_name\":\"flag-io\",\"short_names\":[\"flag-io\"],\"category\":\"Flags\",\"sort_order\":32,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"bug\":{\"name\":\"Bug\",\"unified\":\"1F41B\",\"variations\":[],\"docomo\":null,\"au\":\"EB1E\",\"softbank\":\"E525\",\"google\":\"FE1CB\",\"image\":\"1f41b.png\",\"sheet_x\":12,\"sheet_y\":32,\"short_name\":\"bug\",\"short_names\":[\"bug\"],\"category\":\"Nature\",\"sort_order\":32,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"stopwatch\":{\"name\":\"Stopwatch\",\"unified\":\"23F1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"23f1.png\",\"sheet_x\":0,\"sheet_y\":26,\"short_name\":\"stopwatch\",\"short_names\":[\"stopwatch\"],\"category\":\"Objects\",\"sort_order\":32,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"leo\":{\"name\":\"Leo\",\"unified\":\"264C\",\"variations\":[\"264C-FE0F\"],\"docomo\":\"E64A\",\"au\":\"E493\",\"softbank\":\"E243\",\"google\":\"FE02F\",\"image\":\"264c.png\",\"sheet_x\":1,\"sheet_y\":30,\"short_name\":\"leo\",\"short_names\":[\"leo\"],\"category\":\"Symbols\",\"sort_order\":32,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"virgo\":{\"name\":\"Virgo\",\"unified\":\"264D\",\"variations\":[\"264D-FE0F\"],\"docomo\":\"E64B\",\"au\":\"E494\",\"softbank\":\"E244\",\"google\":\"FE030\",\"image\":\"264d.png\",\"sheet_x\":1,\"sheet_y\":31,\"short_name\":\"virgo\",\"short_names\":[\"virgo\"],\"category\":\"Symbols\",\"sort_order\":33,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"running_shirt_with_sash\":{\"name\":\"Running Shirt with Sash\",\"unified\":\"1F3BD\",\"variations\":[],\"docomo\":\"E652\",\"au\":null,\"softbank\":null,\"google\":\"FE7D0\",\"image\":\"1f3bd.png\",\"sheet_x\":10,\"sheet_y\":3,\"short_name\":\"running_shirt_with_sash\",\"short_names\":[\"running_shirt_with_sash\"],\"category\":\"Activity\",\"sort_order\":33,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-vg\":{\"name\":\"Regional Indicator Symbol Letters VG\",\"unified\":\"1F1FB-1F1EC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1fb-1f1ec.png\",\"sheet_x\":38,\"sheet_y\":32,\"short_name\":\"flag-vg\",\"short_names\":[\"flag-vg\"],\"category\":\"Flags\",\"sort_order\":33,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"metro\":{\"name\":\"Metro\",\"unified\":\"1F687\",\"variations\":[],\"docomo\":\"E65C\",\"au\":\"E5BC\",\"softbank\":\"E434\",\"google\":\"FE7E0\",\"image\":\"1f687.png\",\"sheet_x\":29,\"sheet_y\":19,\"short_name\":\"metro\",\"short_names\":[\"metro\"],\"category\":\"Places\",\"sort_order\":33,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"unamused\":{\"name\":\"Unamused Face\",\"unified\":\"1F612\",\"variations\":[],\"docomo\":\"E725\",\"au\":\"EAC9\",\"softbank\":\"E40E\",\"google\":\"FE326\",\"image\":\"1f612.png\",\"sheet_x\":26,\"sheet_y\":33,\"short_name\":\"unamused\",\"short_names\":[\"unamused\"],\"category\":\"People\",\"sort_order\":33,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[\":(\"]},\"snail\":{\"name\":\"Snail\",\"unified\":\"1F40C\",\"variations\":[],\"docomo\":\"E74E\",\"au\":\"EB7E\",\"softbank\":null,\"google\":\"FE1B9\",\"image\":\"1f40c.png\",\"sheet_x\":12,\"sheet_y\":17,\"short_name\":\"snail\",\"short_names\":[\"snail\"],\"category\":\"Nature\",\"sort_order\":33,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"timer_clock\":{\"name\":\"Timer Clock\",\"unified\":\"23F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"23f2.png\",\"sheet_x\":0,\"sheet_y\":27,\"short_name\":\"timer_clock\",\"short_names\":[\"timer_clock\"],\"category\":\"Objects\",\"sort_order\":33,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"ramen\":{\"name\":\"Steaming Bowl\",\"unified\":\"1F35C\",\"variations\":[],\"docomo\":\"E74C\",\"au\":\"E5B4\",\"softbank\":\"E340\",\"google\":\"FE963\",\"image\":\"1f35c.png\",\"sheet_x\":7,\"sheet_y\":29,\"short_name\":\"ramen\",\"short_names\":[\"ramen\"],\"category\":\"Foods\",\"sort_order\":33,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"beetle\":{\"name\":\"Lady Beetle\",\"unified\":\"1F41E\",\"variations\":[],\"docomo\":null,\"au\":\"EB58\",\"softbank\":null,\"google\":\"FE1E2\",\"image\":\"1f41e.png\",\"sheet_x\":12,\"sheet_y\":35,\"short_name\":\"beetle\",\"short_names\":[\"beetle\"],\"category\":\"Nature\",\"sort_order\":34,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"face_with_rolling_eyes\":{\"name\":\"Face with Rolling Eyes\",\"unified\":\"1F644\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f644.png\",\"sheet_x\":28,\"sheet_y\":1,\"short_name\":\"face_with_rolling_eyes\",\"short_names\":[\"face_with_rolling_eyes\"],\"category\":\"People\",\"sort_order\":34,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"libra\":{\"name\":\"Libra\",\"unified\":\"264E\",\"variations\":[\"264E-FE0F\"],\"docomo\":\"E64C\",\"au\":\"E495\",\"softbank\":\"E245\",\"google\":\"FE031\",\"image\":\"264e.png\",\"sheet_x\":1,\"sheet_y\":32,\"short_name\":\"libra\",\"short_names\":[\"libra\"],\"category\":\"Symbols\",\"sort_order\":34,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"stew\":{\"name\":\"Pot of Food\",\"unified\":\"1F372\",\"variations\":[],\"docomo\":null,\"au\":\"EABE\",\"softbank\":\"E34D\",\"google\":\"FE970\",\"image\":\"1f372.png\",\"sheet_x\":8,\"sheet_y\":10,\"short_name\":\"stew\",\"short_names\":[\"stew\"],\"category\":\"Foods\",\"sort_order\":34,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"sports_medal\":{\"name\":\"Sports Medal\",\"unified\":\"1F3C5\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3c5.png\",\"sheet_x\":10,\"sheet_y\":21,\"short_name\":\"sports_medal\",\"short_names\":[\"sports_medal\"],\"category\":\"Activity\",\"sort_order\":34,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-bn\":{\"name\":\"Regional Indicator Symbol Letters BN\",\"unified\":\"1F1E7-1F1F3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1f3.png\",\"sheet_x\":33,\"sheet_y\":20,\"short_name\":\"flag-bn\",\"short_names\":[\"flag-bn\"],\"category\":\"Flags\",\"sort_order\":34,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"alarm_clock\":{\"name\":\"Alarm Clock\",\"unified\":\"23F0\",\"variations\":[],\"docomo\":\"E6BA\",\"au\":\"E594\",\"softbank\":\"E02D\",\"google\":\"FE02A\",\"image\":\"23f0.png\",\"sheet_x\":0,\"sheet_y\":25,\"short_name\":\"alarm_clock\",\"short_names\":[\"alarm_clock\"],\"category\":\"Objects\",\"sort_order\":34,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"tram\":{\"name\":\"Tram\",\"unified\":\"1F68A\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f68a.png\",\"sheet_x\":29,\"sheet_y\":22,\"short_name\":\"tram\",\"short_names\":[\"tram\"],\"category\":\"Places\",\"sort_order\":34,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"fish_cake\":{\"name\":\"Fish Cake with Swirl Design\",\"unified\":\"1F365\",\"variations\":[],\"docomo\":\"E643\",\"au\":\"E4ED\",\"softbank\":null,\"google\":\"FE973\",\"image\":\"1f365.png\",\"sheet_x\":7,\"sheet_y\":38,\"short_name\":\"fish_cake\",\"short_names\":[\"fish_cake\"],\"category\":\"Foods\",\"sort_order\":35,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"thinking_face\":{\"name\":\"Thinking Face\",\"unified\":\"1F914\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f914.png\",\"sheet_x\":32,\"sheet_y\":5,\"short_name\":\"thinking_face\",\"short_names\":[\"thinking_face\"],\"category\":\"People\",\"sort_order\":35,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"medal\":{\"name\":\"Military Medal\",\"unified\":\"1F396\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f396.png\",\"sheet_x\":9,\"sheet_y\":8,\"short_name\":\"medal\",\"short_names\":[\"medal\"],\"category\":\"Activity\",\"sort_order\":35,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"mantelpiece_clock\":{\"name\":\"Mantelpiece Clock\",\"unified\":\"1F570\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f570.png\",\"sheet_x\":24,\"sheet_y\":36,\"short_name\":\"mantelpiece_clock\",\"short_names\":[\"mantelpiece_clock\"],\"category\":\"Objects\",\"sort_order\":35,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"station\":{\"name\":\"Station\",\"unified\":\"1F689\",\"variations\":[],\"docomo\":null,\"au\":\"EB6D\",\"softbank\":\"E039\",\"google\":\"FE7EC\",\"image\":\"1f689.png\",\"sheet_x\":29,\"sheet_y\":21,\"short_name\":\"station\",\"short_names\":[\"station\"],\"category\":\"Places\",\"sort_order\":35,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-bg\":{\"name\":\"Regional Indicator Symbol Letters BG\",\"unified\":\"1F1E7-1F1EC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1ec.png\",\"sheet_x\":33,\"sheet_y\":14,\"short_name\":\"flag-bg\",\"short_names\":[\"flag-bg\"],\"category\":\"Flags\",\"sort_order\":35,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"ant\":{\"name\":\"Ant\",\"unified\":\"1F41C\",\"variations\":[],\"docomo\":null,\"au\":\"E4DD\",\"softbank\":null,\"google\":\"FE1DA\",\"image\":\"1f41c.png\",\"sheet_x\":12,\"sheet_y\":33,\"short_name\":\"ant\",\"short_names\":[\"ant\"],\"category\":\"Nature\",\"sort_order\":35,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"scorpius\":{\"name\":\"Scorpius\",\"unified\":\"264F\",\"variations\":[\"264F-FE0F\"],\"docomo\":\"E64D\",\"au\":\"E496\",\"softbank\":\"E246\",\"google\":\"FE032\",\"image\":\"264f.png\",\"sheet_x\":1,\"sheet_y\":33,\"short_name\":\"scorpius\",\"short_names\":[\"scorpius\"],\"category\":\"Symbols\",\"sort_order\":35,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"sushi\":{\"name\":\"Sushi\",\"unified\":\"1F363\",\"variations\":[],\"docomo\":null,\"au\":\"EAB8\",\"softbank\":\"E344\",\"google\":\"FE96E\",\"image\":\"1f363.png\",\"sheet_x\":7,\"sheet_y\":36,\"short_name\":\"sushi\",\"short_names\":[\"sushi\"],\"category\":\"Foods\",\"sort_order\":36,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flushed\":{\"name\":\"Flushed Face\",\"unified\":\"1F633\",\"variations\":[],\"docomo\":\"E72A\",\"au\":\"EAC8\",\"softbank\":\"E40D\",\"google\":\"FE32F\",\"image\":\"1f633.png\",\"sheet_x\":27,\"sheet_y\":25,\"short_name\":\"flushed\",\"short_names\":[\"flushed\"],\"category\":\"People\",\"sort_order\":36,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"spider\":{\"name\":\"Spider\",\"unified\":\"1F577\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f577.png\",\"sheet_x\":25,\"sheet_y\":5,\"short_name\":\"spider\",\"short_names\":[\"spider\"],\"category\":\"Nature\",\"sort_order\":36,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"reminder_ribbon\":{\"name\":\"Reminder Ribbon\",\"unified\":\"1F397\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f397.png\",\"sheet_x\":9,\"sheet_y\":9,\"short_name\":\"reminder_ribbon\",\"short_names\":[\"reminder_ribbon\"],\"category\":\"Activity\",\"sort_order\":36,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"helicopter\":{\"name\":\"Helicopter\",\"unified\":\"1F681\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f681.png\",\"sheet_x\":29,\"sheet_y\":13,\"short_name\":\"helicopter\",\"short_names\":[\"helicopter\"],\"category\":\"Places\",\"sort_order\":36,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"sagittarius\":{\"name\":\"Sagittarius\",\"unified\":\"2650\",\"variations\":[\"2650-FE0F\"],\"docomo\":\"E64E\",\"au\":\"E497\",\"softbank\":\"E247\",\"google\":\"FE033\",\"image\":\"2650.png\",\"sheet_x\":1,\"sheet_y\":34,\"short_name\":\"sagittarius\",\"short_names\":[\"sagittarius\"],\"category\":\"Symbols\",\"sort_order\":36,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-bf\":{\"name\":\"Regional Indicator Symbol Letters BF\",\"unified\":\"1F1E7-1F1EB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1eb.png\",\"sheet_x\":33,\"sheet_y\":13,\"short_name\":\"flag-bf\",\"short_names\":[\"flag-bf\"],\"category\":\"Flags\",\"sort_order\":36,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"hourglass_flowing_sand\":{\"name\":\"Hourglass with Flowing Sand\",\"unified\":\"23F3\",\"variations\":[],\"docomo\":\"E71C\",\"au\":\"E47C\",\"softbank\":null,\"google\":\"FE01B\",\"image\":\"23f3.png\",\"sheet_x\":0,\"sheet_y\":28,\"short_name\":\"hourglass_flowing_sand\",\"short_names\":[\"hourglass_flowing_sand\"],\"category\":\"Objects\",\"sort_order\":36,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"small_airplane\":{\"name\":\"Small Airplane\",\"unified\":\"1F6E9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6e9.png\",\"sheet_x\":31,\"sheet_y\":37,\"short_name\":\"small_airplane\",\"short_names\":[\"small_airplane\"],\"category\":\"Places\",\"sort_order\":37,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"rosette\":{\"name\":\"Rosette\",\"unified\":\"1F3F5\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3f5.png\",\"sheet_x\":11,\"sheet_y\":36,\"short_name\":\"rosette\",\"short_names\":[\"rosette\"],\"category\":\"Activity\",\"sort_order\":37,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"bento\":{\"name\":\"Bento Box\",\"unified\":\"1F371\",\"variations\":[],\"docomo\":null,\"au\":\"EABD\",\"softbank\":\"E34C\",\"google\":\"FE96F\",\"image\":\"1f371.png\",\"sheet_x\":8,\"sheet_y\":9,\"short_name\":\"bento\",\"short_names\":[\"bento\"],\"category\":\"Foods\",\"sort_order\":37,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"capricorn\":{\"name\":\"Capricorn\",\"unified\":\"2651\",\"variations\":[\"2651-FE0F\"],\"docomo\":\"E64F\",\"au\":\"E498\",\"softbank\":\"E248\",\"google\":\"FE034\",\"image\":\"2651.png\",\"sheet_x\":1,\"sheet_y\":35,\"short_name\":\"capricorn\",\"short_names\":[\"capricorn\"],\"category\":\"Symbols\",\"sort_order\":37,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-bi\":{\"name\":\"Regional Indicator Symbol Letters BI\",\"unified\":\"1F1E7-1F1EE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1ee.png\",\"sheet_x\":33,\"sheet_y\":16,\"short_name\":\"flag-bi\",\"short_names\":[\"flag-bi\"],\"category\":\"Flags\",\"sort_order\":37,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"disappointed\":{\"name\":\"Disappointed Face\",\"unified\":\"1F61E\",\"variations\":[],\"docomo\":\"E6F2\",\"au\":\"EAC0\",\"softbank\":\"E058\",\"google\":\"FE323\",\"image\":\"1f61e.png\",\"sheet_x\":27,\"sheet_y\":4,\"short_name\":\"disappointed\",\"short_names\":[\"disappointed\"],\"category\":\"People\",\"sort_order\":37,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[\"):\",\":(\",\":-(\"]},\"scorpion\":{\"name\":\"Scorpion\",\"unified\":\"1F982\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f982.png\",\"sheet_x\":32,\"sheet_y\":17,\"short_name\":\"scorpion\",\"short_names\":[\"scorpion\"],\"category\":\"Nature\",\"sort_order\":37,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"hourglass\":{\"name\":\"Hourglass\",\"unified\":\"231B\",\"variations\":[\"231B-FE0F\"],\"docomo\":\"E71C\",\"au\":\"E57B\",\"softbank\":null,\"google\":\"FE01C\",\"image\":\"231b.png\",\"sheet_x\":0,\"sheet_y\":15,\"short_name\":\"hourglass\",\"short_names\":[\"hourglass\"],\"category\":\"Objects\",\"sort_order\":37,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"crab\":{\"name\":\"Crab\",\"unified\":\"1F980\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f980.png\",\"sheet_x\":32,\"sheet_y\":15,\"short_name\":\"crab\",\"short_names\":[\"crab\"],\"category\":\"Nature\",\"sort_order\":38,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"satellite_antenna\":{\"name\":\"Satellite Antenna\",\"unified\":\"1F4E1\",\"variations\":[],\"docomo\":null,\"au\":\"E4A8\",\"softbank\":\"E14B\",\"google\":\"FE531\",\"image\":\"1f4e1.png\",\"sheet_x\":21,\"sheet_y\":36,\"short_name\":\"satellite_antenna\",\"short_names\":[\"satellite_antenna\"],\"category\":\"Objects\",\"sort_order\":38,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"airplane\":{\"name\":\"Airplane\",\"unified\":\"2708\",\"variations\":[\"2708-FE0F\"],\"docomo\":\"E662\",\"au\":\"E4B3\",\"softbank\":\"E01D\",\"google\":\"FE7E9\",\"image\":\"2708.png\",\"sheet_x\":3,\"sheet_y\":7,\"short_name\":\"airplane\",\"short_names\":[\"airplane\"],\"category\":\"Places\",\"sort_order\":38,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"aquarius\":{\"name\":\"Aquarius\",\"unified\":\"2652\",\"variations\":[\"2652-FE0F\"],\"docomo\":\"E650\",\"au\":\"E499\",\"softbank\":\"E249\",\"google\":\"FE035\",\"image\":\"2652.png\",\"sheet_x\":1,\"sheet_y\":36,\"short_name\":\"aquarius\",\"short_names\":[\"aquarius\"],\"category\":\"Symbols\",\"sort_order\":38,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"ticket\":{\"name\":\"Ticket\",\"unified\":\"1F3AB\",\"variations\":[],\"docomo\":\"E67E\",\"au\":\"E49E\",\"softbank\":\"E125\",\"google\":\"FE807\",\"image\":\"1f3ab.png\",\"sheet_x\":9,\"sheet_y\":26,\"short_name\":\"ticket\",\"short_names\":[\"ticket\"],\"category\":\"Activity\",\"sort_order\":38,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"worried\":{\"name\":\"Worried Face\",\"unified\":\"1F61F\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f61f.png\",\"sheet_x\":27,\"sheet_y\":5,\"short_name\":\"worried\",\"short_names\":[\"worried\"],\"category\":\"People\",\"sort_order\":38,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-cv\":{\"name\":\"Regional Indicator Symbol Letters CV\",\"unified\":\"1F1E8-1F1FB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1fb.png\",\"sheet_x\":34,\"sheet_y\":4,\"short_name\":\"flag-cv\",\"short_names\":[\"flag-cv\"],\"category\":\"Flags\",\"sort_order\":38,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"curry\":{\"name\":\"Curry and Rice\",\"unified\":\"1F35B\",\"variations\":[],\"docomo\":null,\"au\":\"EAB6\",\"softbank\":\"E341\",\"google\":\"FE96C\",\"image\":\"1f35b.png\",\"sheet_x\":7,\"sheet_y\":28,\"short_name\":\"curry\",\"short_names\":[\"curry\"],\"category\":\"Foods\",\"sort_order\":38,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"pisces\":{\"name\":\"Pisces\",\"unified\":\"2653\",\"variations\":[\"2653-FE0F\"],\"docomo\":\"E651\",\"au\":\"E49A\",\"softbank\":\"E24A\",\"google\":\"FE036\",\"image\":\"2653.png\",\"sheet_x\":1,\"sheet_y\":37,\"short_name\":\"pisces\",\"short_names\":[\"pisces\"],\"category\":\"Symbols\",\"sort_order\":39,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"airplane_departure\":{\"name\":\"Airplane Departure\",\"unified\":\"1F6EB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6eb.png\",\"sheet_x\":31,\"sheet_y\":38,\"short_name\":\"airplane_departure\",\"short_names\":[\"airplane_departure\"],\"category\":\"Places\",\"sort_order\":39,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-kh\":{\"name\":\"Regional Indicator Symbol Letters KH\",\"unified\":\"1F1F0-1F1ED\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f0-1f1ed.png\",\"sheet_x\":35,\"sheet_y\":32,\"short_name\":\"flag-kh\",\"short_names\":[\"flag-kh\"],\"category\":\"Flags\",\"sort_order\":39,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"battery\":{\"name\":\"Battery\",\"unified\":\"1F50B\",\"variations\":[],\"docomo\":null,\"au\":\"E584\",\"softbank\":null,\"google\":\"FE4FC\",\"image\":\"1f50b.png\",\"sheet_x\":22,\"sheet_y\":36,\"short_name\":\"battery\",\"short_names\":[\"battery\"],\"category\":\"Objects\",\"sort_order\":39,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"snake\":{\"name\":\"Snake\",\"unified\":\"1F40D\",\"variations\":[],\"docomo\":null,\"au\":\"EB22\",\"softbank\":\"E52D\",\"google\":\"FE1D3\",\"image\":\"1f40d.png\",\"sheet_x\":12,\"sheet_y\":18,\"short_name\":\"snake\",\"short_names\":[\"snake\"],\"category\":\"Nature\",\"sort_order\":39,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"angry\":{\"name\":\"Angry Face\",\"unified\":\"1F620\",\"variations\":[],\"docomo\":\"E6F1\",\"au\":\"E472\",\"softbank\":\"E059\",\"google\":\"FE320\",\"image\":\"1f620.png\",\"sheet_x\":27,\"sheet_y\":6,\"short_name\":\"angry\",\"short_names\":[\"angry\"],\"category\":\"People\",\"sort_order\":39,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[\">:(\",\">:-(\"]},\"rice_ball\":{\"name\":\"Rice Ball\",\"unified\":\"1F359\",\"variations\":[],\"docomo\":\"E749\",\"au\":\"E4D5\",\"softbank\":\"E342\",\"google\":\"FE961\",\"image\":\"1f359.png\",\"sheet_x\":7,\"sheet_y\":26,\"short_name\":\"rice_ball\",\"short_names\":[\"rice_ball\"],\"category\":\"Foods\",\"sort_order\":39,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"admission_tickets\":{\"name\":\"Admission Tickets\",\"unified\":\"1F39F\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f39f.png\",\"sheet_x\":9,\"sheet_y\":14,\"short_name\":\"admission_tickets\",\"short_names\":[\"admission_tickets\"],\"category\":\"Activity\",\"sort_order\":39,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"performing_arts\":{\"name\":\"Performing Arts\",\"unified\":\"1F3AD\",\"variations\":[],\"docomo\":null,\"au\":\"E59D\",\"softbank\":\"E503\",\"google\":\"FE809\",\"image\":\"1f3ad.png\",\"sheet_x\":9,\"sheet_y\":28,\"short_name\":\"performing_arts\",\"short_names\":[\"performing_arts\"],\"category\":\"Activity\",\"sort_order\":40,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"rage\":{\"name\":\"Pouting Face\",\"unified\":\"1F621\",\"variations\":[],\"docomo\":\"E724\",\"au\":\"EB5D\",\"softbank\":\"E416\",\"google\":\"FE33D\",\"image\":\"1f621.png\",\"sheet_x\":27,\"sheet_y\":7,\"short_name\":\"rage\",\"short_names\":[\"rage\"],\"category\":\"People\",\"sort_order\":40,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"rice\":{\"name\":\"Cooked Rice\",\"unified\":\"1F35A\",\"variations\":[],\"docomo\":\"E74C\",\"au\":\"EAB4\",\"softbank\":\"E33E\",\"google\":\"FE96A\",\"image\":\"1f35a.png\",\"sheet_x\":7,\"sheet_y\":27,\"short_name\":\"rice\",\"short_names\":[\"rice\"],\"category\":\"Foods\",\"sort_order\":40,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"airplane_arriving\":{\"name\":\"Airplane Arriving\",\"unified\":\"1F6EC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6ec.png\",\"sheet_x\":31,\"sheet_y\":39,\"short_name\":\"airplane_arriving\",\"short_names\":[\"airplane_arriving\"],\"category\":\"Places\",\"sort_order\":40,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"id\":{\"name\":\"Squared Id\",\"unified\":\"1F194\",\"variations\":[],\"docomo\":\"E6D8\",\"au\":\"EA88\",\"softbank\":\"E229\",\"google\":\"FEB81\",\"image\":\"1f194.png\",\"sheet_x\":4,\"sheet_y\":40,\"short_name\":\"id\",\"short_names\":[\"id\"],\"category\":\"Symbols\",\"sort_order\":40,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-cm\":{\"name\":\"Regional Indicator Symbol Letters CM\",\"unified\":\"1F1E8-1F1F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1f2.png\",\"sheet_x\":33,\"sheet_y\":39,\"short_name\":\"flag-cm\",\"short_names\":[\"flag-cm\"],\"category\":\"Flags\",\"sort_order\":40,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"turtle\":{\"name\":\"Turtle\",\"unified\":\"1F422\",\"variations\":[],\"docomo\":null,\"au\":\"E5D4\",\"softbank\":null,\"google\":\"FE1DC\",\"image\":\"1f422.png\",\"sheet_x\":12,\"sheet_y\":39,\"short_name\":\"turtle\",\"short_names\":[\"turtle\"],\"category\":\"Nature\",\"sort_order\":40,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"electric_plug\":{\"name\":\"Electric Plug\",\"unified\":\"1F50C\",\"variations\":[],\"docomo\":null,\"au\":\"E589\",\"softbank\":null,\"google\":\"FE4FE\",\"image\":\"1f50c.png\",\"sheet_x\":22,\"sheet_y\":37,\"short_name\":\"electric_plug\",\"short_names\":[\"electric_plug\"],\"category\":\"Objects\",\"sort_order\":40,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"tropical_fish\":{\"name\":\"Tropical Fish\",\"unified\":\"1F420\",\"variations\":[],\"docomo\":\"E751\",\"au\":\"EB1D\",\"softbank\":\"E522\",\"google\":\"FE1C9\",\"image\":\"1f420.png\",\"sheet_x\":12,\"sheet_y\":37,\"short_name\":\"tropical_fish\",\"short_names\":[\"tropical_fish\"],\"category\":\"Nature\",\"sort_order\":41,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"bulb\":{\"name\":\"Electric Light Bulb\",\"unified\":\"1F4A1\",\"variations\":[],\"docomo\":\"E6FB\",\"au\":\"E476\",\"softbank\":\"E10F\",\"google\":\"FEB56\",\"image\":\"1f4a1.png\",\"sheet_x\":20,\"sheet_y\":8,\"short_name\":\"bulb\",\"short_names\":[\"bulb\"],\"category\":\"Objects\",\"sort_order\":41,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"pensive\":{\"name\":\"Pensive Face\",\"unified\":\"1F614\",\"variations\":[],\"docomo\":\"E720\",\"au\":\"EAC0\",\"softbank\":\"E403\",\"google\":\"FE340\",\"image\":\"1f614.png\",\"sheet_x\":26,\"sheet_y\":35,\"short_name\":\"pensive\",\"short_names\":[\"pensive\"],\"category\":\"People\",\"sort_order\":41,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"rice_cracker\":{\"name\":\"Rice Cracker\",\"unified\":\"1F358\",\"variations\":[],\"docomo\":null,\"au\":\"EAB3\",\"softbank\":\"E33D\",\"google\":\"FE969\",\"image\":\"1f358.png\",\"sheet_x\":7,\"sheet_y\":25,\"short_name\":\"rice_cracker\",\"short_names\":[\"rice_cracker\"],\"category\":\"Foods\",\"sort_order\":41,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"art\":{\"name\":\"Artist Palette\",\"unified\":\"1F3A8\",\"variations\":[],\"docomo\":\"E67B\",\"au\":\"E59C\",\"softbank\":\"E502\",\"google\":\"FE804\",\"image\":\"1f3a8.png\",\"sheet_x\":9,\"sheet_y\":23,\"short_name\":\"art\",\"short_names\":[\"art\"],\"category\":\"Activity\",\"sort_order\":41,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"boat\":{\"name\":\"Sailboat\",\"unified\":\"26F5\",\"variations\":[\"26F5-FE0F\"],\"docomo\":\"E6A3\",\"au\":\"E4B4\",\"softbank\":\"E01C\",\"google\":\"FE7EA\",\"image\":\"26f5.png\",\"sheet_x\":2,\"sheet_y\":35,\"short_name\":\"boat\",\"short_names\":[\"boat\",\"sailboat\"],\"category\":\"Places\",\"sort_order\":41,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"atom_symbol\":{\"name\":\"Atom Symbol\",\"unified\":\"269B\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"269b.png\",\"sheet_x\":2,\"sheet_y\":10,\"short_name\":\"atom_symbol\",\"short_names\":[\"atom_symbol\"],\"category\":\"Symbols\",\"sort_order\":41,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ca\":{\"name\":\"Regional Indicator Symbol Letters CA\",\"unified\":\"1F1E8-1F1E6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1e6.png\",\"sheet_x\":33,\"sheet_y\":30,\"short_name\":\"flag-ca\",\"short_names\":[\"flag-ca\"],\"category\":\"Flags\",\"sort_order\":41,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"oden\":{\"name\":\"Oden\",\"unified\":\"1F362\",\"variations\":[],\"docomo\":null,\"au\":\"EAB7\",\"softbank\":\"E343\",\"google\":\"FE96D\",\"image\":\"1f362.png\",\"sheet_x\":7,\"sheet_y\":35,\"short_name\":\"oden\",\"short_names\":[\"oden\"],\"category\":\"Foods\",\"sort_order\":42,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flashlight\":{\"name\":\"Electric Torch\",\"unified\":\"1F526\",\"variations\":[],\"docomo\":\"E6FB\",\"au\":\"E583\",\"softbank\":null,\"google\":\"FE4FB\",\"image\":\"1f526.png\",\"sheet_x\":23,\"sheet_y\":22,\"short_name\":\"flashlight\",\"short_names\":[\"flashlight\"],\"category\":\"Objects\",\"sort_order\":42,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"confused\":{\"name\":\"Confused Face\",\"unified\":\"1F615\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f615.png\",\"sheet_x\":26,\"sheet_y\":36,\"short_name\":\"confused\",\"short_names\":[\"confused\"],\"category\":\"People\",\"sort_order\":42,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[\":\\\\\",\":-\\\\\",\":/\",\":-/\"]},\"u7a7a\":{\"name\":\"Squared Cjk Unified Ideograph-7a7a\",\"unified\":\"1F233\",\"variations\":[],\"docomo\":\"E739\",\"au\":\"EA8A\",\"softbank\":\"E22B\",\"google\":\"FEB2F\",\"image\":\"1f233.png\",\"sheet_x\":5,\"sheet_y\":11,\"short_name\":\"u7a7a\",\"short_names\":[\"u7a7a\"],\"category\":\"Symbols\",\"sort_order\":42,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"circus_tent\":{\"name\":\"Circus Tent\",\"unified\":\"1F3AA\",\"variations\":[],\"docomo\":\"E67D\",\"au\":\"E59E\",\"softbank\":null,\"google\":\"FE806\",\"image\":\"1f3aa.png\",\"sheet_x\":9,\"sheet_y\":25,\"short_name\":\"circus_tent\",\"short_names\":[\"circus_tent\"],\"category\":\"Activity\",\"sort_order\":42,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"motor_boat\":{\"name\":\"Motor Boat\",\"unified\":\"1F6E5\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6e5.png\",\"sheet_x\":31,\"sheet_y\":36,\"short_name\":\"motor_boat\",\"short_names\":[\"motor_boat\"],\"category\":\"Places\",\"sort_order\":42,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ic\":{\"name\":\"Regional Indicator Symbol Letters IC\",\"unified\":\"1F1EE-1F1E8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ee-1f1e8.png\",\"sheet_x\":35,\"sheet_y\":15,\"short_name\":\"flag-ic\",\"short_names\":[\"flag-ic\"],\"category\":\"Flags\",\"sort_order\":42,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"fish\":{\"name\":\"Fish\",\"unified\":\"1F41F\",\"variations\":[],\"docomo\":\"E751\",\"au\":\"E49A\",\"softbank\":\"E019\",\"google\":\"FE1BD\",\"image\":\"1f41f.png\",\"sheet_x\":12,\"sheet_y\":36,\"short_name\":\"fish\",\"short_names\":[\"fish\"],\"category\":\"Nature\",\"sort_order\":42,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"microphone\":{\"name\":\"Microphone\",\"unified\":\"1F3A4\",\"variations\":[],\"docomo\":\"E676\",\"au\":\"E503\",\"softbank\":\"E03C\",\"google\":\"FE800\",\"image\":\"1f3a4.png\",\"sheet_x\":9,\"sheet_y\":19,\"short_name\":\"microphone\",\"short_names\":[\"microphone\"],\"category\":\"Activity\",\"sort_order\":43,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ky\":{\"name\":\"Regional Indicator Symbol Letters KY\",\"unified\":\"1F1F0-1F1FE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f0-1f1fe.png\",\"sheet_x\":35,\"sheet_y\":39,\"short_name\":\"flag-ky\",\"short_names\":[\"flag-ky\"],\"category\":\"Flags\",\"sort_order\":43,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"candle\":{\"name\":\"Candle\",\"unified\":\"1F56F\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f56f.png\",\"sheet_x\":24,\"sheet_y\":35,\"short_name\":\"candle\",\"short_names\":[\"candle\"],\"category\":\"Objects\",\"sort_order\":43,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"dango\":{\"name\":\"Dango\",\"unified\":\"1F361\",\"variations\":[],\"docomo\":null,\"au\":\"EAB2\",\"softbank\":\"E33C\",\"google\":\"FE968\",\"image\":\"1f361.png\",\"sheet_x\":7,\"sheet_y\":34,\"short_name\":\"dango\",\"short_names\":[\"dango\"],\"category\":\"Foods\",\"sort_order\":43,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"slightly_frowning_face\":{\"name\":\"Slightly Frowning Face\",\"unified\":\"1F641\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f641.png\",\"sheet_x\":27,\"sheet_y\":39,\"short_name\":\"slightly_frowning_face\",\"short_names\":[\"slightly_frowning_face\"],\"category\":\"People\",\"sort_order\":43,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"blowfish\":{\"name\":\"Blowfish\",\"unified\":\"1F421\",\"variations\":[],\"docomo\":\"E751\",\"au\":\"E4D3\",\"softbank\":\"E019\",\"google\":\"FE1D9\",\"image\":\"1f421.png\",\"sheet_x\":12,\"sheet_y\":38,\"short_name\":\"blowfish\",\"short_names\":[\"blowfish\"],\"category\":\"Nature\",\"sort_order\":43,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"u5272\":{\"name\":\"Squared Cjk Unified Ideograph-5272\",\"unified\":\"1F239\",\"variations\":[],\"docomo\":null,\"au\":\"EA86\",\"softbank\":\"E227\",\"google\":\"FEB3E\",\"image\":\"1f239.png\",\"sheet_x\":5,\"sheet_y\":17,\"short_name\":\"u5272\",\"short_names\":[\"u5272\"],\"category\":\"Symbols\",\"sort_order\":43,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"speedboat\":{\"name\":\"Speedboat\",\"unified\":\"1F6A4\",\"variations\":[],\"docomo\":\"E6A3\",\"au\":\"E4B4\",\"softbank\":\"E135\",\"google\":\"FE7EE\",\"image\":\"1f6a4.png\",\"sheet_x\":30,\"sheet_y\":12,\"short_name\":\"speedboat\",\"short_names\":[\"speedboat\"],\"category\":\"Places\",\"sort_order\":43,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"white_frowning_face\":{\"name\":\"White Frowning Face\",\"unified\":\"2639\",\"variations\":[\"2639-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"2639.png\",\"sheet_x\":1,\"sheet_y\":24,\"short_name\":\"white_frowning_face\",\"short_names\":[\"white_frowning_face\"],\"category\":\"People\",\"sort_order\":44,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"dolphin\":{\"name\":\"Dolphin\",\"unified\":\"1F42C\",\"variations\":[],\"docomo\":null,\"au\":\"EB1B\",\"softbank\":\"E520\",\"google\":\"FE1C7\",\"image\":\"1f42c.png\",\"sheet_x\":13,\"sheet_y\":8,\"short_name\":\"dolphin\",\"short_names\":[\"dolphin\",\"flipper\"],\"category\":\"Nature\",\"sort_order\":44,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"radioactive_sign\":{\"name\":\"Radioactive Sign\",\"unified\":\"2622\",\"variations\":[\"2622-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"2622.png\",\"sheet_x\":1,\"sheet_y\":17,\"short_name\":\"radioactive_sign\",\"short_names\":[\"radioactive_sign\"],\"category\":\"Symbols\",\"sort_order\":44,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"headphones\":{\"name\":\"Headphone\",\"unified\":\"1F3A7\",\"variations\":[],\"docomo\":\"E67A\",\"au\":\"E508\",\"softbank\":\"E30A\",\"google\":\"FE803\",\"image\":\"1f3a7.png\",\"sheet_x\":9,\"sheet_y\":22,\"short_name\":\"headphones\",\"short_names\":[\"headphones\"],\"category\":\"Activity\",\"sort_order\":44,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-cf\":{\"name\":\"Regional Indicator Symbol Letters CF\",\"unified\":\"1F1E8-1F1EB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1eb.png\",\"sheet_x\":33,\"sheet_y\":33,\"short_name\":\"flag-cf\",\"short_names\":[\"flag-cf\"],\"category\":\"Flags\",\"sort_order\":44,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"ferry\":{\"name\":\"Ferry\",\"unified\":\"26F4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"26f4.png\",\"sheet_x\":2,\"sheet_y\":34,\"short_name\":\"ferry\",\"short_names\":[\"ferry\"],\"category\":\"Places\",\"sort_order\":44,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"wastebasket\":{\"name\":\"Wastebasket\",\"unified\":\"1F5D1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5d1.png\",\"sheet_x\":25,\"sheet_y\":39,\"short_name\":\"wastebasket\",\"short_names\":[\"wastebasket\"],\"category\":\"Objects\",\"sort_order\":44,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"shaved_ice\":{\"name\":\"Shaved Ice\",\"unified\":\"1F367\",\"variations\":[],\"docomo\":null,\"au\":\"EAEA\",\"softbank\":\"E43F\",\"google\":\"FE971\",\"image\":\"1f367.png\",\"sheet_x\":7,\"sheet_y\":40,\"short_name\":\"shaved_ice\",\"short_names\":[\"shaved_ice\"],\"category\":\"Foods\",\"sort_order\":44,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"whale\":{\"name\":\"Spouting Whale\",\"unified\":\"1F433\",\"variations\":[],\"docomo\":null,\"au\":\"E470\",\"softbank\":\"E054\",\"google\":\"FE1C3\",\"image\":\"1f433.png\",\"sheet_x\":13,\"sheet_y\":15,\"short_name\":\"whale\",\"short_names\":[\"whale\"],\"category\":\"Nature\",\"sort_order\":45,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"oil_drum\":{\"name\":\"Oil Drum\",\"unified\":\"1F6E2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6e2.png\",\"sheet_x\":31,\"sheet_y\":33,\"short_name\":\"oil_drum\",\"short_names\":[\"oil_drum\"],\"category\":\"Objects\",\"sort_order\":45,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"ice_cream\":{\"name\":\"Ice Cream\",\"unified\":\"1F368\",\"variations\":[],\"docomo\":null,\"au\":\"EB4A\",\"softbank\":null,\"google\":\"FE977\",\"image\":\"1f368.png\",\"sheet_x\":8,\"sheet_y\":0,\"short_name\":\"ice_cream\",\"short_names\":[\"ice_cream\"],\"category\":\"Foods\",\"sort_order\":45,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"passenger_ship\":{\"name\":\"Passenger Ship\",\"unified\":\"1F6F3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6f3.png\",\"sheet_x\":32,\"sheet_y\":0,\"short_name\":\"passenger_ship\",\"short_names\":[\"passenger_ship\"],\"category\":\"Places\",\"sort_order\":45,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"biohazard_sign\":{\"name\":\"Biohazard Sign\",\"unified\":\"2623\",\"variations\":[\"2623-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"2623.png\",\"sheet_x\":1,\"sheet_y\":18,\"short_name\":\"biohazard_sign\",\"short_names\":[\"biohazard_sign\"],\"category\":\"Symbols\",\"sort_order\":45,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"musical_score\":{\"name\":\"Musical Score\",\"unified\":\"1F3BC\",\"variations\":[],\"docomo\":\"E6FF\",\"au\":\"EACC\",\"softbank\":\"E326\",\"google\":\"FE81A\",\"image\":\"1f3bc.png\",\"sheet_x\":10,\"sheet_y\":2,\"short_name\":\"musical_score\",\"short_names\":[\"musical_score\"],\"category\":\"Activity\",\"sort_order\":45,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"persevere\":{\"name\":\"Persevering Face\",\"unified\":\"1F623\",\"variations\":[],\"docomo\":\"E72B\",\"au\":\"EAC2\",\"softbank\":\"E406\",\"google\":\"FE33C\",\"image\":\"1f623.png\",\"sheet_x\":27,\"sheet_y\":9,\"short_name\":\"persevere\",\"short_names\":[\"persevere\"],\"category\":\"People\",\"sort_order\":45,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-td\":{\"name\":\"Regional Indicator Symbol Letters TD\",\"unified\":\"1F1F9-1F1E9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f9-1f1e9.png\",\"sheet_x\":38,\"sheet_y\":8,\"short_name\":\"flag-td\",\"short_names\":[\"flag-td\"],\"category\":\"Flags\",\"sort_order\":45,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"icecream\":{\"name\":\"Soft Ice Cream\",\"unified\":\"1F366\",\"variations\":[],\"docomo\":null,\"au\":\"EAB0\",\"softbank\":\"E33A\",\"google\":\"FE966\",\"image\":\"1f366.png\",\"sheet_x\":7,\"sheet_y\":39,\"short_name\":\"icecream\",\"short_names\":[\"icecream\"],\"category\":\"Foods\",\"sort_order\":46,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"whale2\":{\"name\":\"Whale\",\"unified\":\"1F40B\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f40b.png\",\"sheet_x\":12,\"sheet_y\":16,\"short_name\":\"whale2\",\"short_names\":[\"whale2\"],\"category\":\"Nature\",\"sort_order\":46,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"musical_keyboard\":{\"name\":\"Musical Keyboard\",\"unified\":\"1F3B9\",\"variations\":[],\"docomo\":null,\"au\":\"EB40\",\"softbank\":null,\"google\":\"FE817\",\"image\":\"1f3b9.png\",\"sheet_x\":9,\"sheet_y\":40,\"short_name\":\"musical_keyboard\",\"short_names\":[\"musical_keyboard\"],\"category\":\"Activity\",\"sort_order\":46,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"money_with_wings\":{\"name\":\"Money with Wings\",\"unified\":\"1F4B8\",\"variations\":[],\"docomo\":null,\"au\":\"EB5B\",\"softbank\":null,\"google\":\"FE4E4\",\"image\":\"1f4b8.png\",\"sheet_x\":20,\"sheet_y\":36,\"short_name\":\"money_with_wings\",\"short_names\":[\"money_with_wings\"],\"category\":\"Objects\",\"sort_order\":46,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"confounded\":{\"name\":\"Confounded Face\",\"unified\":\"1F616\",\"variations\":[],\"docomo\":\"E6F3\",\"au\":\"EAC3\",\"softbank\":\"E407\",\"google\":\"FE33F\",\"image\":\"1f616.png\",\"sheet_x\":26,\"sheet_y\":37,\"short_name\":\"confounded\",\"short_names\":[\"confounded\"],\"category\":\"People\",\"sort_order\":46,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"rocket\":{\"name\":\"Rocket\",\"unified\":\"1F680\",\"variations\":[],\"docomo\":null,\"au\":\"E5C8\",\"softbank\":\"E10D\",\"google\":\"FE7ED\",\"image\":\"1f680.png\",\"sheet_x\":29,\"sheet_y\":12,\"short_name\":\"rocket\",\"short_names\":[\"rocket\"],\"category\":\"Places\",\"sort_order\":46,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"mobile_phone_off\":{\"name\":\"Mobile Phone off\",\"unified\":\"1F4F4\",\"variations\":[],\"docomo\":null,\"au\":\"EA91\",\"softbank\":\"E251\",\"google\":\"FE83A\",\"image\":\"1f4f4.png\",\"sheet_x\":22,\"sheet_y\":14,\"short_name\":\"mobile_phone_off\",\"short_names\":[\"mobile_phone_off\"],\"category\":\"Symbols\",\"sort_order\":46,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-cl\":{\"name\":\"Regional Indicator Symbol Letters CL\",\"unified\":\"1F1E8-1F1F1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1f1.png\",\"sheet_x\":33,\"sheet_y\":38,\"short_name\":\"flag-cl\",\"short_names\":[\"flag-cl\"],\"category\":\"Flags\",\"sort_order\":46,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"satellite\":{\"name\":\"Satellite\",\"unified\":\"1F6F0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6f0.png\",\"sheet_x\":31,\"sheet_y\":40,\"short_name\":\"satellite\",\"short_names\":[\"satellite\"],\"category\":\"Places\",\"sort_order\":47,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-cn\":{\"name\":\"Regional Indicator Symbol Letters CN\",\"unified\":\"1F1E8-1F1F3\",\"variations\":[],\"docomo\":null,\"au\":\"EB11\",\"softbank\":\"E513\",\"google\":\"FE4ED\",\"image\":\"1f1e8-1f1f3.png\",\"sheet_x\":33,\"sheet_y\":40,\"short_name\":\"flag-cn\",\"short_names\":[\"flag-cn\",\"cn\"],\"category\":\"Flags\",\"sort_order\":47,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"crocodile\":{\"name\":\"Crocodile\",\"unified\":\"1F40A\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f40a.png\",\"sheet_x\":12,\"sheet_y\":15,\"short_name\":\"crocodile\",\"short_names\":[\"crocodile\"],\"category\":\"Nature\",\"sort_order\":47,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"cake\":{\"name\":\"Shortcake\",\"unified\":\"1F370\",\"variations\":[],\"docomo\":\"E74A\",\"au\":\"E4D0\",\"softbank\":\"E046\",\"google\":\"FE962\",\"image\":\"1f370.png\",\"sheet_x\":8,\"sheet_y\":8,\"short_name\":\"cake\",\"short_names\":[\"cake\"],\"category\":\"Foods\",\"sort_order\":47,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"dollar\":{\"name\":\"Banknote with Dollar Sign\",\"unified\":\"1F4B5\",\"variations\":[],\"docomo\":\"E715\",\"au\":\"E585\",\"softbank\":\"E12F\",\"google\":\"FE4E3\",\"image\":\"1f4b5.png\",\"sheet_x\":20,\"sheet_y\":33,\"short_name\":\"dollar\",\"short_names\":[\"dollar\"],\"category\":\"Objects\",\"sort_order\":47,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"vibration_mode\":{\"name\":\"Vibration Mode\",\"unified\":\"1F4F3\",\"variations\":[],\"docomo\":null,\"au\":\"EA90\",\"softbank\":\"E250\",\"google\":\"FE839\",\"image\":\"1f4f3.png\",\"sheet_x\":22,\"sheet_y\":13,\"short_name\":\"vibration_mode\",\"short_names\":[\"vibration_mode\"],\"category\":\"Symbols\",\"sort_order\":47,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"tired_face\":{\"name\":\"Tired Face\",\"unified\":\"1F62B\",\"variations\":[],\"docomo\":\"E72B\",\"au\":\"E474\",\"softbank\":\"E406\",\"google\":\"FE346\",\"image\":\"1f62b.png\",\"sheet_x\":27,\"sheet_y\":17,\"short_name\":\"tired_face\",\"short_names\":[\"tired_face\"],\"category\":\"People\",\"sort_order\":47,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"saxophone\":{\"name\":\"Saxophone\",\"unified\":\"1F3B7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":\"E040\",\"google\":\"FE815\",\"image\":\"1f3b7.png\",\"sheet_x\":9,\"sheet_y\":38,\"short_name\":\"saxophone\",\"short_names\":[\"saxophone\"],\"category\":\"Activity\",\"sort_order\":47,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-cx\":{\"name\":\"Regional Indicator Symbol Letters CX\",\"unified\":\"1F1E8-1F1FD\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1fd.png\",\"sheet_x\":34,\"sheet_y\":6,\"short_name\":\"flag-cx\",\"short_names\":[\"flag-cx\"],\"category\":\"Flags\",\"sort_order\":48,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"seat\":{\"name\":\"Seat\",\"unified\":\"1F4BA\",\"variations\":[],\"docomo\":\"E6B2\",\"au\":null,\"softbank\":\"E11F\",\"google\":\"FE537\",\"image\":\"1f4ba.png\",\"sheet_x\":20,\"sheet_y\":38,\"short_name\":\"seat\",\"short_names\":[\"seat\"],\"category\":\"Places\",\"sort_order\":48,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"trumpet\":{\"name\":\"Trumpet\",\"unified\":\"1F3BA\",\"variations\":[],\"docomo\":null,\"au\":\"EADC\",\"softbank\":\"E042\",\"google\":\"FE818\",\"image\":\"1f3ba.png\",\"sheet_x\":10,\"sheet_y\":0,\"short_name\":\"trumpet\",\"short_names\":[\"trumpet\"],\"category\":\"Activity\",\"sort_order\":48,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"yen\":{\"name\":\"Banknote with Yen Sign\",\"unified\":\"1F4B4\",\"variations\":[],\"docomo\":\"E6D6\",\"au\":\"E57D\",\"softbank\":null,\"google\":\"FE4E2\",\"image\":\"1f4b4.png\",\"sheet_x\":20,\"sheet_y\":32,\"short_name\":\"yen\",\"short_names\":[\"yen\"],\"category\":\"Objects\",\"sort_order\":48,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"leopard\":{\"name\":\"Leopard\",\"unified\":\"1F406\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f406.png\",\"sheet_x\":12,\"sheet_y\":11,\"short_name\":\"leopard\",\"short_names\":[\"leopard\"],\"category\":\"Nature\",\"sort_order\":48,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"u6709\":{\"name\":\"Squared Cjk Unified Ideograph-6709\",\"unified\":\"1F236\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":\"E215\",\"google\":\"FEB39\",\"image\":\"1f236.png\",\"sheet_x\":5,\"sheet_y\":14,\"short_name\":\"u6709\",\"short_names\":[\"u6709\"],\"category\":\"Symbols\",\"sort_order\":48,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"birthday\":{\"name\":\"Birthday Cake\",\"unified\":\"1F382\",\"variations\":[],\"docomo\":\"E686\",\"au\":\"E5A0\",\"softbank\":\"E34B\",\"google\":\"FE511\",\"image\":\"1f382.png\",\"sheet_x\":8,\"sheet_y\":26,\"short_name\":\"birthday\",\"short_names\":[\"birthday\"],\"category\":\"Foods\",\"sort_order\":48,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"weary\":{\"name\":\"Weary Face\",\"unified\":\"1F629\",\"variations\":[],\"docomo\":\"E6F3\",\"au\":\"EB67\",\"softbank\":\"E403\",\"google\":\"FE321\",\"image\":\"1f629.png\",\"sheet_x\":27,\"sheet_y\":15,\"short_name\":\"weary\",\"short_names\":[\"weary\"],\"category\":\"People\",\"sort_order\":48,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"tiger2\":{\"name\":\"Tiger\",\"unified\":\"1F405\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f405.png\",\"sheet_x\":12,\"sheet_y\":10,\"short_name\":\"tiger2\",\"short_names\":[\"tiger2\"],\"category\":\"Nature\",\"sort_order\":49,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-cc\":{\"name\":\"Regional Indicator Symbol Letters CC\",\"unified\":\"1F1E8-1F1E8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1e8.png\",\"sheet_x\":33,\"sheet_y\":31,\"short_name\":\"flag-cc\",\"short_names\":[\"flag-cc\"],\"category\":\"Flags\",\"sort_order\":49,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"u7121\":{\"name\":\"Squared Cjk Unified Ideograph-7121\",\"unified\":\"1F21A\",\"variations\":[\"1F21A-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":\"E216\",\"google\":\"FEB3A\",\"image\":\"1f21a.png\",\"sheet_x\":5,\"sheet_y\":8,\"short_name\":\"u7121\",\"short_names\":[\"u7121\"],\"category\":\"Symbols\",\"sort_order\":49,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"euro\":{\"name\":\"Banknote with Euro Sign\",\"unified\":\"1F4B6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f4b6.png\",\"sheet_x\":20,\"sheet_y\":34,\"short_name\":\"euro\",\"short_names\":[\"euro\"],\"category\":\"Objects\",\"sort_order\":49,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"custard\":{\"name\":\"Custard\",\"unified\":\"1F36E\",\"variations\":[],\"docomo\":null,\"au\":\"EB56\",\"softbank\":null,\"google\":\"FE97D\",\"image\":\"1f36e.png\",\"sheet_x\":8,\"sheet_y\":6,\"short_name\":\"custard\",\"short_names\":[\"custard\"],\"category\":\"Foods\",\"sort_order\":49,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"triumph\":{\"name\":\"Face with Look of Triumph\",\"unified\":\"1F624\",\"variations\":[],\"docomo\":\"E753\",\"au\":\"EAC1\",\"softbank\":\"E404\",\"google\":\"FE328\",\"image\":\"1f624.png\",\"sheet_x\":27,\"sheet_y\":10,\"short_name\":\"triumph\",\"short_names\":[\"triumph\"],\"category\":\"People\",\"sort_order\":49,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"anchor\":{\"name\":\"Anchor\",\"unified\":\"2693\",\"variations\":[\"2693-FE0F\"],\"docomo\":\"E661\",\"au\":\"E4A9\",\"softbank\":\"E202\",\"google\":\"FE4C1\",\"image\":\"2693.png\",\"sheet_x\":2,\"sheet_y\":5,\"short_name\":\"anchor\",\"short_names\":[\"anchor\"],\"category\":\"Places\",\"sort_order\":49,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"guitar\":{\"name\":\"Guitar\",\"unified\":\"1F3B8\",\"variations\":[],\"docomo\":null,\"au\":\"E506\",\"softbank\":\"E041\",\"google\":\"FE816\",\"image\":\"1f3b8.png\",\"sheet_x\":9,\"sheet_y\":39,\"short_name\":\"guitar\",\"short_names\":[\"guitar\"],\"category\":\"Activity\",\"sort_order\":49,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"violin\":{\"name\":\"Violin\",\"unified\":\"1F3BB\",\"variations\":[],\"docomo\":null,\"au\":\"E507\",\"softbank\":null,\"google\":\"FE819\",\"image\":\"1f3bb.png\",\"sheet_x\":10,\"sheet_y\":1,\"short_name\":\"violin\",\"short_names\":[\"violin\"],\"category\":\"Activity\",\"sort_order\":50,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"construction\":{\"name\":\"Construction Sign\",\"unified\":\"1F6A7\",\"variations\":[],\"docomo\":null,\"au\":\"E5D7\",\"softbank\":\"E137\",\"google\":\"FE7F8\",\"image\":\"1f6a7.png\",\"sheet_x\":30,\"sheet_y\":15,\"short_name\":\"construction\",\"short_names\":[\"construction\"],\"category\":\"Places\",\"sort_order\":50,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"water_buffalo\":{\"name\":\"Water Buffalo\",\"unified\":\"1F403\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f403.png\",\"sheet_x\":12,\"sheet_y\":8,\"short_name\":\"water_buffalo\",\"short_names\":[\"water_buffalo\"],\"category\":\"Nature\",\"sort_order\":50,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"candy\":{\"name\":\"Candy\",\"unified\":\"1F36C\",\"variations\":[],\"docomo\":null,\"au\":\"EB4E\",\"softbank\":null,\"google\":\"FE97B\",\"image\":\"1f36c.png\",\"sheet_x\":8,\"sheet_y\":4,\"short_name\":\"candy\",\"short_names\":[\"candy\"],\"category\":\"Foods\",\"sort_order\":50,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"pound\":{\"name\":\"Banknote with Pound Sign\",\"unified\":\"1F4B7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f4b7.png\",\"sheet_x\":20,\"sheet_y\":35,\"short_name\":\"pound\",\"short_names\":[\"pound\"],\"category\":\"Objects\",\"sort_order\":50,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-co\":{\"name\":\"Regional Indicator Symbol Letters CO\",\"unified\":\"1F1E8-1F1F4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1f4.png\",\"sheet_x\":34,\"sheet_y\":0,\"short_name\":\"flag-co\",\"short_names\":[\"flag-co\"],\"category\":\"Flags\",\"sort_order\":50,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"open_mouth\":{\"name\":\"Face with Open Mouth\",\"unified\":\"1F62E\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f62e.png\",\"sheet_x\":27,\"sheet_y\":20,\"short_name\":\"open_mouth\",\"short_names\":[\"open_mouth\"],\"category\":\"People\",\"sort_order\":50,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[\":o\",\":-o\",\":O\",\":-O\"]},\"u7533\":{\"name\":\"Squared Cjk Unified Ideograph-7533\",\"unified\":\"1F238\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":\"E218\",\"google\":\"FEB3C\",\"image\":\"1f238.png\",\"sheet_x\":5,\"sheet_y\":16,\"short_name\":\"u7533\",\"short_names\":[\"u7533\"],\"category\":\"Symbols\",\"sort_order\":50,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"ox\":{\"name\":\"Ox\",\"unified\":\"1F402\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f402.png\",\"sheet_x\":12,\"sheet_y\":7,\"short_name\":\"ox\",\"short_names\":[\"ox\"],\"category\":\"Nature\",\"sort_order\":51,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"scream\":{\"name\":\"Face Screaming in Fear\",\"unified\":\"1F631\",\"variations\":[],\"docomo\":\"E757\",\"au\":\"E5C5\",\"softbank\":\"E107\",\"google\":\"FE341\",\"image\":\"1f631.png\",\"sheet_x\":27,\"sheet_y\":23,\"short_name\":\"scream\",\"short_names\":[\"scream\"],\"category\":\"People\",\"sort_order\":51,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-km\":{\"name\":\"Regional Indicator Symbol Letters KM\",\"unified\":\"1F1F0-1F1F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f0-1f1f2.png\",\"sheet_x\":35,\"sheet_y\":34,\"short_name\":\"flag-km\",\"short_names\":[\"flag-km\"],\"category\":\"Flags\",\"sort_order\":51,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"clapper\":{\"name\":\"Clapper Board\",\"unified\":\"1F3AC\",\"variations\":[],\"docomo\":\"E6AC\",\"au\":\"E4BE\",\"softbank\":\"E324\",\"google\":\"FE808\",\"image\":\"1f3ac.png\",\"sheet_x\":9,\"sheet_y\":27,\"short_name\":\"clapper\",\"short_names\":[\"clapper\"],\"category\":\"Activity\",\"sort_order\":51,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"u55b6\":{\"name\":\"Squared Cjk Unified Ideograph-55b6\",\"unified\":\"1F23A\",\"variations\":[],\"docomo\":null,\"au\":\"EA8C\",\"softbank\":\"E22D\",\"google\":\"FEB41\",\"image\":\"1f23a.png\",\"sheet_x\":5,\"sheet_y\":18,\"short_name\":\"u55b6\",\"short_names\":[\"u55b6\"],\"category\":\"Symbols\",\"sort_order\":51,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"fuelpump\":{\"name\":\"Fuel Pump\",\"unified\":\"26FD\",\"variations\":[\"26FD-FE0F\"],\"docomo\":\"E66B\",\"au\":\"E571\",\"softbank\":\"E03A\",\"google\":\"FE7F5\",\"image\":\"26fd.png\",\"sheet_x\":3,\"sheet_y\":4,\"short_name\":\"fuelpump\",\"short_names\":[\"fuelpump\"],\"category\":\"Places\",\"sort_order\":51,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"moneybag\":{\"name\":\"Money Bag\",\"unified\":\"1F4B0\",\"variations\":[],\"docomo\":\"E715\",\"au\":\"E4C7\",\"softbank\":\"E12F\",\"google\":\"FE4DD\",\"image\":\"1f4b0.png\",\"sheet_x\":20,\"sheet_y\":28,\"short_name\":\"moneybag\",\"short_names\":[\"moneybag\"],\"category\":\"Objects\",\"sort_order\":51,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"lollipop\":{\"name\":\"Lollipop\",\"unified\":\"1F36D\",\"variations\":[],\"docomo\":null,\"au\":\"EB4F\",\"softbank\":null,\"google\":\"FE97C\",\"image\":\"1f36d.png\",\"sheet_x\":8,\"sheet_y\":5,\"short_name\":\"lollipop\",\"short_names\":[\"lollipop\"],\"category\":\"Foods\",\"sort_order\":51,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"credit_card\":{\"name\":\"Credit Card\",\"unified\":\"1F4B3\",\"variations\":[],\"docomo\":null,\"au\":\"E57C\",\"softbank\":null,\"google\":\"FE4E1\",\"image\":\"1f4b3.png\",\"sheet_x\":20,\"sheet_y\":31,\"short_name\":\"credit_card\",\"short_names\":[\"credit_card\"],\"category\":\"Objects\",\"sort_order\":52,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"cow2\":{\"name\":\"Cow\",\"unified\":\"1F404\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f404.png\",\"sheet_x\":12,\"sheet_y\":9,\"short_name\":\"cow2\",\"short_names\":[\"cow2\"],\"category\":\"Nature\",\"sort_order\":52,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"video_game\":{\"name\":\"Video Game\",\"unified\":\"1F3AE\",\"variations\":[],\"docomo\":\"E68B\",\"au\":\"E4C6\",\"softbank\":null,\"google\":\"FE80A\",\"image\":\"1f3ae.png\",\"sheet_x\":9,\"sheet_y\":29,\"short_name\":\"video_game\",\"short_names\":[\"video_game\"],\"category\":\"Activity\",\"sort_order\":52,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"busstop\":{\"name\":\"Bus Stop\",\"unified\":\"1F68F\",\"variations\":[],\"docomo\":null,\"au\":\"E4A7\",\"softbank\":\"E150\",\"google\":\"FE7E7\",\"image\":\"1f68f.png\",\"sheet_x\":29,\"sheet_y\":27,\"short_name\":\"busstop\",\"short_names\":[\"busstop\"],\"category\":\"Places\",\"sort_order\":52,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"chocolate_bar\":{\"name\":\"Chocolate Bar\",\"unified\":\"1F36B\",\"variations\":[],\"docomo\":null,\"au\":\"EB4D\",\"softbank\":null,\"google\":\"FE97A\",\"image\":\"1f36b.png\",\"sheet_x\":8,\"sheet_y\":3,\"short_name\":\"chocolate_bar\",\"short_names\":[\"chocolate_bar\"],\"category\":\"Foods\",\"sort_order\":52,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"u6708\":{\"name\":\"Squared Cjk Unified Ideograph-6708\",\"unified\":\"1F237\",\"variations\":[\"1F237-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":\"E217\",\"google\":\"FEB3B\",\"image\":\"1f237.png\",\"sheet_x\":5,\"sheet_y\":15,\"short_name\":\"u6708\",\"short_names\":[\"u6708\"],\"category\":\"Symbols\",\"sort_order\":52,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"fearful\":{\"name\":\"Fearful Face\",\"unified\":\"1F628\",\"variations\":[],\"docomo\":\"E757\",\"au\":\"EAC6\",\"softbank\":\"E40B\",\"google\":\"FE33B\",\"image\":\"1f628.png\",\"sheet_x\":27,\"sheet_y\":14,\"short_name\":\"fearful\",\"short_names\":[\"fearful\"],\"category\":\"People\",\"sort_order\":52,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-cg\":{\"name\":\"Regional Indicator Symbol Letters CG\",\"unified\":\"1F1E8-1F1EC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1ec.png\",\"sheet_x\":33,\"sheet_y\":34,\"short_name\":\"flag-cg\",\"short_names\":[\"flag-cg\"],\"category\":\"Flags\",\"sort_order\":52,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"dromedary_camel\":{\"name\":\"Dromedary Camel\",\"unified\":\"1F42A\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f42a.png\",\"sheet_x\":13,\"sheet_y\":6,\"short_name\":\"dromedary_camel\",\"short_names\":[\"dromedary_camel\"],\"category\":\"Nature\",\"sort_order\":53,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"popcorn\":{\"name\":\"Popcorn\",\"unified\":\"1F37F\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f37f.png\",\"sheet_x\":8,\"sheet_y\":23,\"short_name\":\"popcorn\",\"short_names\":[\"popcorn\"],\"category\":\"Foods\",\"sort_order\":53,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"eight_pointed_black_star\":{\"name\":\"Eight Pointed Black Star\",\"unified\":\"2734\",\"variations\":[\"2734-FE0F\"],\"docomo\":\"E6F8\",\"au\":\"E479\",\"softbank\":\"E205\",\"google\":\"FEB61\",\"image\":\"2734.png\",\"sheet_x\":4,\"sheet_y\":0,\"short_name\":\"eight_pointed_black_star\",\"short_names\":[\"eight_pointed_black_star\"],\"category\":\"Symbols\",\"sort_order\":53,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"gem\":{\"name\":\"Gem Stone\",\"unified\":\"1F48E\",\"variations\":[],\"docomo\":\"E71B\",\"au\":\"E514\",\"softbank\":\"E035\",\"google\":\"FE826\",\"image\":\"1f48e.png\",\"sheet_x\":19,\"sheet_y\":30,\"short_name\":\"gem\",\"short_names\":[\"gem\"],\"category\":\"Objects\",\"sort_order\":53,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"space_invader\":{\"name\":\"Alien Monster\",\"unified\":\"1F47E\",\"variations\":[],\"docomo\":null,\"au\":\"E4EC\",\"softbank\":\"E12B\",\"google\":\"FE1B1\",\"image\":\"1f47e.png\",\"sheet_x\":18,\"sheet_y\":25,\"short_name\":\"space_invader\",\"short_names\":[\"space_invader\"],\"category\":\"Activity\",\"sort_order\":53,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"vertical_traffic_light\":{\"name\":\"Vertical Traffic Light\",\"unified\":\"1F6A6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6a6.png\",\"sheet_x\":30,\"sheet_y\":14,\"short_name\":\"vertical_traffic_light\",\"short_names\":[\"vertical_traffic_light\"],\"category\":\"Places\",\"sort_order\":53,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"cold_sweat\":{\"name\":\"Face with Open Mouth and Cold Sweat\",\"unified\":\"1F630\",\"variations\":[],\"docomo\":\"E723\",\"au\":\"EACB\",\"softbank\":\"E40F\",\"google\":\"FE325\",\"image\":\"1f630.png\",\"sheet_x\":27,\"sheet_y\":22,\"short_name\":\"cold_sweat\",\"short_names\":[\"cold_sweat\"],\"category\":\"People\",\"sort_order\":53,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-cd\":{\"name\":\"Regional Indicator Symbol Letters CD\",\"unified\":\"1F1E8-1F1E9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1e9.png\",\"sheet_x\":33,\"sheet_y\":32,\"short_name\":\"flag-cd\",\"short_names\":[\"flag-cd\"],\"category\":\"Flags\",\"sort_order\":53,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ck\":{\"name\":\"Regional Indicator Symbol Letters CK\",\"unified\":\"1F1E8-1F1F0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1f0.png\",\"sheet_x\":33,\"sheet_y\":37,\"short_name\":\"flag-ck\",\"short_names\":[\"flag-ck\"],\"category\":\"Flags\",\"sort_order\":54,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"hushed\":{\"name\":\"Hushed Face\",\"unified\":\"1F62F\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f62f.png\",\"sheet_x\":27,\"sheet_y\":21,\"short_name\":\"hushed\",\"short_names\":[\"hushed\"],\"category\":\"People\",\"sort_order\":54,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"traffic_light\":{\"name\":\"Horizontal Traffic Light\",\"unified\":\"1F6A5\",\"variations\":[],\"docomo\":\"E66D\",\"au\":\"E46A\",\"softbank\":\"E14E\",\"google\":\"FE7F7\",\"image\":\"1f6a5.png\",\"sheet_x\":30,\"sheet_y\":13,\"short_name\":\"traffic_light\",\"short_names\":[\"traffic_light\"],\"category\":\"Places\",\"sort_order\":54,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"doughnut\":{\"name\":\"Doughnut\",\"unified\":\"1F369\",\"variations\":[],\"docomo\":null,\"au\":\"EB4B\",\"softbank\":null,\"google\":\"FE978\",\"image\":\"1f369.png\",\"sheet_x\":8,\"sheet_y\":1,\"short_name\":\"doughnut\",\"short_names\":[\"doughnut\"],\"category\":\"Foods\",\"sort_order\":54,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"camel\":{\"name\":\"Bactrian Camel\",\"unified\":\"1F42B\",\"variations\":[],\"docomo\":null,\"au\":\"EB25\",\"softbank\":\"E530\",\"google\":\"FE1D6\",\"image\":\"1f42b.png\",\"sheet_x\":13,\"sheet_y\":7,\"short_name\":\"camel\",\"short_names\":[\"camel\"],\"category\":\"Nature\",\"sort_order\":54,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"dart\":{\"name\":\"Direct Hit\",\"unified\":\"1F3AF\",\"variations\":[],\"docomo\":null,\"au\":\"E4C5\",\"softbank\":\"E130\",\"google\":\"FE80C\",\"image\":\"1f3af.png\",\"sheet_x\":9,\"sheet_y\":30,\"short_name\":\"dart\",\"short_names\":[\"dart\"],\"category\":\"Activity\",\"sort_order\":54,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"scales\":{\"name\":\"Scales\",\"unified\":\"2696\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"2696.png\",\"sheet_x\":2,\"sheet_y\":7,\"short_name\":\"scales\",\"short_names\":[\"scales\"],\"category\":\"Objects\",\"sort_order\":54,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"vs\":{\"name\":\"Squared Vs\",\"unified\":\"1F19A\",\"variations\":[],\"docomo\":null,\"au\":\"E5D2\",\"softbank\":\"E12E\",\"google\":\"FEB32\",\"image\":\"1f19a.png\",\"sheet_x\":5,\"sheet_y\":5,\"short_name\":\"vs\",\"short_names\":[\"vs\"],\"category\":\"Symbols\",\"sort_order\":54,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"elephant\":{\"name\":\"Elephant\",\"unified\":\"1F418\",\"variations\":[],\"docomo\":null,\"au\":\"EB1F\",\"softbank\":\"E526\",\"google\":\"FE1CC\",\"image\":\"1f418.png\",\"sheet_x\":12,\"sheet_y\":29,\"short_name\":\"elephant\",\"short_names\":[\"elephant\"],\"category\":\"Nature\",\"sort_order\":55,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"wrench\":{\"name\":\"Wrench\",\"unified\":\"1F527\",\"variations\":[],\"docomo\":\"E718\",\"au\":\"E587\",\"softbank\":null,\"google\":\"FE4C9\",\"image\":\"1f527.png\",\"sheet_x\":23,\"sheet_y\":23,\"short_name\":\"wrench\",\"short_names\":[\"wrench\"],\"category\":\"Objects\",\"sort_order\":55,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"game_die\":{\"name\":\"Game Die\",\"unified\":\"1F3B2\",\"variations\":[],\"docomo\":null,\"au\":\"E4C8\",\"softbank\":null,\"google\":\"FE80F\",\"image\":\"1f3b2.png\",\"sheet_x\":9,\"sheet_y\":33,\"short_name\":\"game_die\",\"short_names\":[\"game_die\"],\"category\":\"Activity\",\"sort_order\":55,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"accept\":{\"name\":\"Circled Ideograph Accept\",\"unified\":\"1F251\",\"variations\":[],\"docomo\":null,\"au\":\"EB01\",\"softbank\":null,\"google\":\"FEB50\",\"image\":\"1f251.png\",\"sheet_x\":5,\"sheet_y\":20,\"short_name\":\"accept\",\"short_names\":[\"accept\"],\"category\":\"Symbols\",\"sort_order\":55,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"cookie\":{\"name\":\"Cookie\",\"unified\":\"1F36A\",\"variations\":[],\"docomo\":null,\"au\":\"EB4C\",\"softbank\":null,\"google\":\"FE979\",\"image\":\"1f36a.png\",\"sheet_x\":8,\"sheet_y\":2,\"short_name\":\"cookie\",\"short_names\":[\"cookie\"],\"category\":\"Foods\",\"sort_order\":55,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-cr\":{\"name\":\"Regional Indicator Symbol Letters CR\",\"unified\":\"1F1E8-1F1F7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1f7.png\",\"sheet_x\":34,\"sheet_y\":2,\"short_name\":\"flag-cr\",\"short_names\":[\"flag-cr\"],\"category\":\"Flags\",\"sort_order\":55,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"checkered_flag\":{\"name\":\"Chequered Flag\",\"unified\":\"1F3C1\",\"variations\":[],\"docomo\":\"E659\",\"au\":\"E4B9\",\"softbank\":\"E132\",\"google\":\"FE7D7\",\"image\":\"1f3c1.png\",\"sheet_x\":10,\"sheet_y\":7,\"short_name\":\"checkered_flag\",\"short_names\":[\"checkered_flag\"],\"category\":\"Places\",\"sort_order\":55,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"frowning\":{\"name\":\"Frowning Face with Open Mouth\",\"unified\":\"1F626\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f626.png\",\"sheet_x\":27,\"sheet_y\":12,\"short_name\":\"frowning\",\"short_names\":[\"frowning\"],\"category\":\"People\",\"sort_order\":55,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"white_flower\":{\"name\":\"White Flower\",\"unified\":\"1F4AE\",\"variations\":[],\"docomo\":null,\"au\":\"E4F0\",\"softbank\":null,\"google\":\"FEB7A\",\"image\":\"1f4ae.png\",\"sheet_x\":20,\"sheet_y\":26,\"short_name\":\"white_flower\",\"short_names\":[\"white_flower\"],\"category\":\"Symbols\",\"sort_order\":56,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"ship\":{\"name\":\"Ship\",\"unified\":\"1F6A2\",\"variations\":[],\"docomo\":\"E661\",\"au\":\"EA82\",\"softbank\":\"E202\",\"google\":\"FE7E8\",\"image\":\"1f6a2.png\",\"sheet_x\":30,\"sheet_y\":5,\"short_name\":\"ship\",\"short_names\":[\"ship\"],\"category\":\"Places\",\"sort_order\":56,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"hammer\":{\"name\":\"Hammer\",\"unified\":\"1F528\",\"variations\":[],\"docomo\":null,\"au\":\"E5CB\",\"softbank\":\"E116\",\"google\":\"FE4CA\",\"image\":\"1f528.png\",\"sheet_x\":23,\"sheet_y\":24,\"short_name\":\"hammer\",\"short_names\":[\"hammer\"],\"category\":\"Objects\",\"sort_order\":56,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-hr\":{\"name\":\"Regional Indicator Symbol Letters HR\",\"unified\":\"1F1ED-1F1F7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ed-1f1f7.png\",\"sheet_x\":35,\"sheet_y\":12,\"short_name\":\"flag-hr\",\"short_names\":[\"flag-hr\"],\"category\":\"Flags\",\"sort_order\":56,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"anguished\":{\"name\":\"Anguished Face\",\"unified\":\"1F627\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f627.png\",\"sheet_x\":27,\"sheet_y\":13,\"short_name\":\"anguished\",\"short_names\":[\"anguished\"],\"category\":\"People\",\"sort_order\":56,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[\"D:\"]},\"goat\":{\"name\":\"Goat\",\"unified\":\"1F410\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f410.png\",\"sheet_x\":12,\"sheet_y\":21,\"short_name\":\"goat\",\"short_names\":[\"goat\"],\"category\":\"Nature\",\"sort_order\":56,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"beer\":{\"name\":\"Beer Mug\",\"unified\":\"1F37A\",\"variations\":[],\"docomo\":\"E672\",\"au\":\"E4C3\",\"softbank\":\"E047\",\"google\":\"FE983\",\"image\":\"1f37a.png\",\"sheet_x\":8,\"sheet_y\":18,\"short_name\":\"beer\",\"short_names\":[\"beer\"],\"category\":\"Foods\",\"sort_order\":56,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"slot_machine\":{\"name\":\"Slot Machine\",\"unified\":\"1F3B0\",\"variations\":[],\"docomo\":null,\"au\":\"E46E\",\"softbank\":\"E133\",\"google\":\"FE80D\",\"image\":\"1f3b0.png\",\"sheet_x\":9,\"sheet_y\":31,\"short_name\":\"slot_machine\",\"short_names\":[\"slot_machine\"],\"category\":\"Activity\",\"sort_order\":56,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-cu\":{\"name\":\"Regional Indicator Symbol Letters CU\",\"unified\":\"1F1E8-1F1FA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1fa.png\",\"sheet_x\":34,\"sheet_y\":3,\"short_name\":\"flag-cu\",\"short_names\":[\"flag-cu\"],\"category\":\"Flags\",\"sort_order\":57,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"hammer_and_pick\":{\"name\":\"Hammer and Pick\",\"unified\":\"2692\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"2692.png\",\"sheet_x\":2,\"sheet_y\":4,\"short_name\":\"hammer_and_pick\",\"short_names\":[\"hammer_and_pick\"],\"category\":\"Objects\",\"sort_order\":57,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"beers\":{\"name\":\"Clinking Beer Mugs\",\"unified\":\"1F37B\",\"variations\":[],\"docomo\":\"E672\",\"au\":\"EA98\",\"softbank\":\"E30C\",\"google\":\"FE987\",\"image\":\"1f37b.png\",\"sheet_x\":8,\"sheet_y\":19,\"short_name\":\"beers\",\"short_names\":[\"beers\"],\"category\":\"Foods\",\"sort_order\":57,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"ferris_wheel\":{\"name\":\"Ferris Wheel\",\"unified\":\"1F3A1\",\"variations\":[],\"docomo\":null,\"au\":\"E46D\",\"softbank\":\"E124\",\"google\":\"FE7FD\",\"image\":\"1f3a1.png\",\"sheet_x\":9,\"sheet_y\":16,\"short_name\":\"ferris_wheel\",\"short_names\":[\"ferris_wheel\"],\"category\":\"Places\",\"sort_order\":57,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"ideograph_advantage\":{\"name\":\"Circled Ideograph Advantage\",\"unified\":\"1F250\",\"variations\":[],\"docomo\":null,\"au\":\"E4F7\",\"softbank\":\"E226\",\"google\":\"FEB3D\",\"image\":\"1f250.png\",\"sheet_x\":5,\"sheet_y\":19,\"short_name\":\"ideograph_advantage\",\"short_names\":[\"ideograph_advantage\"],\"category\":\"Symbols\",\"sort_order\":57,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"ram\":{\"name\":\"Ram\",\"unified\":\"1F40F\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f40f.png\",\"sheet_x\":12,\"sheet_y\":20,\"short_name\":\"ram\",\"short_names\":[\"ram\"],\"category\":\"Nature\",\"sort_order\":57,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"cry\":{\"name\":\"Crying Face\",\"unified\":\"1F622\",\"variations\":[],\"docomo\":\"E72E\",\"au\":\"EB69\",\"softbank\":\"E413\",\"google\":\"FE339\",\"image\":\"1f622.png\",\"sheet_x\":27,\"sheet_y\":8,\"short_name\":\"cry\",\"short_names\":[\"cry\"],\"category\":\"People\",\"sort_order\":57,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[\":'(\"]},\"bowling\":{\"name\":\"Bowling\",\"unified\":\"1F3B3\",\"variations\":[],\"docomo\":null,\"au\":\"EB43\",\"softbank\":null,\"google\":\"FE810\",\"image\":\"1f3b3.png\",\"sheet_x\":9,\"sheet_y\":34,\"short_name\":\"bowling\",\"short_names\":[\"bowling\"],\"category\":\"Activity\",\"sort_order\":57,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-cw\":{\"name\":\"Regional Indicator Symbol Letters CW\",\"unified\":\"1F1E8-1F1FC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1fc.png\",\"sheet_x\":34,\"sheet_y\":5,\"short_name\":\"flag-cw\",\"short_names\":[\"flag-cw\"],\"category\":\"Flags\",\"sort_order\":58,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"secret\":{\"name\":\"Circled Ideograph Secret\",\"unified\":\"3299\",\"variations\":[\"3299-FE0F\"],\"docomo\":\"E734\",\"au\":\"E4F1\",\"softbank\":\"E315\",\"google\":\"FEB2B\",\"image\":\"3299.png\",\"sheet_x\":4,\"sheet_y\":29,\"short_name\":\"secret\",\"short_names\":[\"secret\"],\"category\":\"Symbols\",\"sort_order\":58,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"disappointed_relieved\":{\"name\":\"Disappointed but Relieved Face\",\"unified\":\"1F625\",\"variations\":[],\"docomo\":\"E723\",\"au\":\"E5C6\",\"softbank\":\"E401\",\"google\":\"FE345\",\"image\":\"1f625.png\",\"sheet_x\":27,\"sheet_y\":11,\"short_name\":\"disappointed_relieved\",\"short_names\":[\"disappointed_relieved\"],\"category\":\"People\",\"sort_order\":58,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"hammer_and_wrench\":{\"name\":\"Hammer and Wrench\",\"unified\":\"1F6E0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6e0.png\",\"sheet_x\":31,\"sheet_y\":31,\"short_name\":\"hammer_and_wrench\",\"short_names\":[\"hammer_and_wrench\"],\"category\":\"Objects\",\"sort_order\":58,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"roller_coaster\":{\"name\":\"Roller Coaster\",\"unified\":\"1F3A2\",\"variations\":[],\"docomo\":null,\"au\":\"EAE2\",\"softbank\":\"E433\",\"google\":\"FE7FE\",\"image\":\"1f3a2.png\",\"sheet_x\":9,\"sheet_y\":17,\"short_name\":\"roller_coaster\",\"short_names\":[\"roller_coaster\"],\"category\":\"Places\",\"sort_order\":58,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"sheep\":{\"name\":\"Sheep\",\"unified\":\"1F411\",\"variations\":[],\"docomo\":null,\"au\":\"E48F\",\"softbank\":\"E529\",\"google\":\"FE1CF\",\"image\":\"1f411.png\",\"sheet_x\":12,\"sheet_y\":22,\"short_name\":\"sheep\",\"short_names\":[\"sheep\"],\"category\":\"Nature\",\"sort_order\":58,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"wine_glass\":{\"name\":\"Wine Glass\",\"unified\":\"1F377\",\"variations\":[],\"docomo\":\"E756\",\"au\":\"E4C1\",\"softbank\":\"E044\",\"google\":\"FE986\",\"image\":\"1f377.png\",\"sheet_x\":8,\"sheet_y\":15,\"short_name\":\"wine_glass\",\"short_names\":[\"wine_glass\"],\"category\":\"Foods\",\"sort_order\":58,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"congratulations\":{\"name\":\"Circled Ideograph Congratulation\",\"unified\":\"3297\",\"variations\":[\"3297-FE0F\"],\"docomo\":null,\"au\":\"EA99\",\"softbank\":\"E30D\",\"google\":\"FEB43\",\"image\":\"3297.png\",\"sheet_x\":4,\"sheet_y\":28,\"short_name\":\"congratulations\",\"short_names\":[\"congratulations\"],\"category\":\"Symbols\",\"sort_order\":59,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"sleepy\":{\"name\":\"Sleepy Face\",\"unified\":\"1F62A\",\"variations\":[],\"docomo\":\"E701\",\"au\":\"EAC4\",\"softbank\":\"E408\",\"google\":\"FE342\",\"image\":\"1f62a.png\",\"sheet_x\":27,\"sheet_y\":16,\"short_name\":\"sleepy\",\"short_names\":[\"sleepy\"],\"category\":\"People\",\"sort_order\":59,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"carousel_horse\":{\"name\":\"Carousel Horse\",\"unified\":\"1F3A0\",\"variations\":[],\"docomo\":\"E679\",\"au\":null,\"softbank\":null,\"google\":\"FE7FC\",\"image\":\"1f3a0.png\",\"sheet_x\":9,\"sheet_y\":15,\"short_name\":\"carousel_horse\",\"short_names\":[\"carousel_horse\"],\"category\":\"Places\",\"sort_order\":59,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"pick\":{\"name\":\"Pick\",\"unified\":\"26CF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"26cf.png\",\"sheet_x\":2,\"sheet_y\":24,\"short_name\":\"pick\",\"short_names\":[\"pick\"],\"category\":\"Objects\",\"sort_order\":59,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-cy\":{\"name\":\"Regional Indicator Symbol Letters CY\",\"unified\":\"1F1E8-1F1FE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1fe.png\",\"sheet_x\":34,\"sheet_y\":7,\"short_name\":\"flag-cy\",\"short_names\":[\"flag-cy\"],\"category\":\"Flags\",\"sort_order\":59,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"cocktail\":{\"name\":\"Cocktail Glass\",\"unified\":\"1F378\",\"variations\":[],\"docomo\":\"E671\",\"au\":\"E4C2\",\"softbank\":\"E044\",\"google\":\"FE982\",\"image\":\"1f378.png\",\"sheet_x\":8,\"sheet_y\":16,\"short_name\":\"cocktail\",\"short_names\":[\"cocktail\"],\"category\":\"Foods\",\"sort_order\":59,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"racehorse\":{\"name\":\"Horse\",\"unified\":\"1F40E\",\"variations\":[],\"docomo\":\"E754\",\"au\":\"E4D8\",\"softbank\":\"E134\",\"google\":\"FE7DC\",\"image\":\"1f40e.png\",\"sheet_x\":12,\"sheet_y\":19,\"short_name\":\"racehorse\",\"short_names\":[\"racehorse\"],\"category\":\"Nature\",\"sort_order\":59,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-cz\":{\"name\":\"Regional Indicator Symbol Letters CZ\",\"unified\":\"1F1E8-1F1FF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1ff.png\",\"sheet_x\":34,\"sheet_y\":8,\"short_name\":\"flag-cz\",\"short_names\":[\"flag-cz\"],\"category\":\"Flags\",\"sort_order\":60,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"tropical_drink\":{\"name\":\"Tropical Drink\",\"unified\":\"1F379\",\"variations\":[],\"docomo\":\"E671\",\"au\":\"EB3E\",\"softbank\":\"E044\",\"google\":\"FE988\",\"image\":\"1f379.png\",\"sheet_x\":8,\"sheet_y\":17,\"short_name\":\"tropical_drink\",\"short_names\":[\"tropical_drink\"],\"category\":\"Foods\",\"sort_order\":60,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"u5408\":{\"name\":\"Squared Cjk Unified Ideograph-5408\",\"unified\":\"1F234\",\"variations\":[],\"docomo\":\"E73A\",\"au\":null,\"softbank\":null,\"google\":\"FEB30\",\"image\":\"1f234.png\",\"sheet_x\":5,\"sheet_y\":12,\"short_name\":\"u5408\",\"short_names\":[\"u5408\"],\"category\":\"Symbols\",\"sort_order\":60,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"nut_and_bolt\":{\"name\":\"Nut and Bolt\",\"unified\":\"1F529\",\"variations\":[],\"docomo\":null,\"au\":\"E581\",\"softbank\":null,\"google\":\"FE4CB\",\"image\":\"1f529.png\",\"sheet_x\":23,\"sheet_y\":25,\"short_name\":\"nut_and_bolt\",\"short_names\":[\"nut_and_bolt\"],\"category\":\"Objects\",\"sort_order\":60,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"sweat\":{\"name\":\"Face with Cold Sweat\",\"unified\":\"1F613\",\"variations\":[],\"docomo\":\"E723\",\"au\":\"E5C6\",\"softbank\":\"E108\",\"google\":\"FE344\",\"image\":\"1f613.png\",\"sheet_x\":26,\"sheet_y\":34,\"short_name\":\"sweat\",\"short_names\":[\"sweat\"],\"category\":\"People\",\"sort_order\":60,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"building_construction\":{\"name\":\"Building Construction\",\"unified\":\"1F3D7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3d7.png\",\"sheet_x\":11,\"sheet_y\":8,\"short_name\":\"building_construction\",\"short_names\":[\"building_construction\"],\"category\":\"Places\",\"sort_order\":60,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"pig2\":{\"name\":\"Pig\",\"unified\":\"1F416\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f416.png\",\"sheet_x\":12,\"sheet_y\":27,\"short_name\":\"pig2\",\"short_names\":[\"pig2\"],\"category\":\"Nature\",\"sort_order\":60,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"sob\":{\"name\":\"Loudly Crying Face\",\"unified\":\"1F62D\",\"variations\":[],\"docomo\":\"E72D\",\"au\":\"E473\",\"softbank\":\"E411\",\"google\":\"FE33A\",\"image\":\"1f62d.png\",\"sheet_x\":27,\"sheet_y\":19,\"short_name\":\"sob\",\"short_names\":[\"sob\"],\"category\":\"People\",\"sort_order\":61,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[\":'(\"]},\"u6e80\":{\"name\":\"Squared Cjk Unified Ideograph-6e80\",\"unified\":\"1F235\",\"variations\":[],\"docomo\":\"E73B\",\"au\":\"EA89\",\"softbank\":\"E22A\",\"google\":\"FEB31\",\"image\":\"1f235.png\",\"sheet_x\":5,\"sheet_y\":13,\"short_name\":\"u6e80\",\"short_names\":[\"u6e80\"],\"category\":\"Symbols\",\"sort_order\":61,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-dk\":{\"name\":\"Regional Indicator Symbol Letters DK\",\"unified\":\"1F1E9-1F1F0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e9-1f1f0.png\",\"sheet_x\":34,\"sheet_y\":12,\"short_name\":\"flag-dk\",\"short_names\":[\"flag-dk\"],\"category\":\"Flags\",\"sort_order\":61,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"gear\":{\"name\":\"Gear\",\"unified\":\"2699\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"2699.png\",\"sheet_x\":2,\"sheet_y\":9,\"short_name\":\"gear\",\"short_names\":[\"gear\"],\"category\":\"Objects\",\"sort_order\":61,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"rat\":{\"name\":\"Rat\",\"unified\":\"1F400\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f400.png\",\"sheet_x\":12,\"sheet_y\":5,\"short_name\":\"rat\",\"short_names\":[\"rat\"],\"category\":\"Nature\",\"sort_order\":61,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"champagne\":{\"name\":\"Bottle with Popping Cork\",\"unified\":\"1F37E\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f37e.png\",\"sheet_x\":8,\"sheet_y\":22,\"short_name\":\"champagne\",\"short_names\":[\"champagne\"],\"category\":\"Foods\",\"sort_order\":61,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"foggy\":{\"name\":\"Foggy\",\"unified\":\"1F301\",\"variations\":[],\"docomo\":\"E644\",\"au\":\"E598\",\"softbank\":null,\"google\":\"FE006\",\"image\":\"1f301.png\",\"sheet_x\":5,\"sheet_y\":22,\"short_name\":\"foggy\",\"short_names\":[\"foggy\"],\"category\":\"Places\",\"sort_order\":61,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"tokyo_tower\":{\"name\":\"Tokyo Tower\",\"unified\":\"1F5FC\",\"variations\":[],\"docomo\":null,\"au\":\"E4C0\",\"softbank\":\"E509\",\"google\":\"FE4C4\",\"image\":\"1f5fc.png\",\"sheet_x\":26,\"sheet_y\":11,\"short_name\":\"tokyo_tower\",\"short_names\":[\"tokyo_tower\"],\"category\":\"Places\",\"sort_order\":62,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"dizzy_face\":{\"name\":\"Dizzy Face\",\"unified\":\"1F635\",\"variations\":[],\"docomo\":\"E6F4\",\"au\":\"E5AE\",\"softbank\":\"E406\",\"google\":\"FE324\",\"image\":\"1f635.png\",\"sheet_x\":27,\"sheet_y\":27,\"short_name\":\"dizzy_face\",\"short_names\":[\"dizzy_face\"],\"category\":\"People\",\"sort_order\":62,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"sake\":{\"name\":\"Sake Bottle and Cup\",\"unified\":\"1F376\",\"variations\":[],\"docomo\":\"E74B\",\"au\":\"EA97\",\"softbank\":\"E30B\",\"google\":\"FE985\",\"image\":\"1f376.png\",\"sheet_x\":8,\"sheet_y\":14,\"short_name\":\"sake\",\"short_names\":[\"sake\"],\"category\":\"Foods\",\"sort_order\":62,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"u7981\":{\"name\":\"Squared Cjk Unified Ideograph-7981\",\"unified\":\"1F232\",\"variations\":[],\"docomo\":\"E738\",\"au\":null,\"softbank\":null,\"google\":\"FEB2E\",\"image\":\"1f232.png\",\"sheet_x\":5,\"sheet_y\":10,\"short_name\":\"u7981\",\"short_names\":[\"u7981\"],\"category\":\"Symbols\",\"sort_order\":62,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"mouse2\":{\"name\":\"Mouse\",\"unified\":\"1F401\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f401.png\",\"sheet_x\":12,\"sheet_y\":6,\"short_name\":\"mouse2\",\"short_names\":[\"mouse2\"],\"category\":\"Nature\",\"sort_order\":62,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-dj\":{\"name\":\"Regional Indicator Symbol Letters DJ\",\"unified\":\"1F1E9-1F1EF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e9-1f1ef.png\",\"sheet_x\":34,\"sheet_y\":11,\"short_name\":\"flag-dj\",\"short_names\":[\"flag-dj\"],\"category\":\"Flags\",\"sort_order\":62,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"chains\":{\"name\":\"Chains\",\"unified\":\"26D3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"26d3.png\",\"sheet_x\":2,\"sheet_y\":26,\"short_name\":\"chains\",\"short_names\":[\"chains\"],\"category\":\"Objects\",\"sort_order\":62,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"a\":{\"name\":\"Negative Squared Latin Capital Letter a\",\"unified\":\"1F170\",\"variations\":[\"1F170-FE0F\"],\"docomo\":null,\"au\":\"EB26\",\"softbank\":\"E532\",\"google\":\"FE50B\",\"image\":\"1f170.png\",\"sheet_x\":4,\"sheet_y\":32,\"short_name\":\"a\",\"short_names\":[\"a\"],\"category\":\"Symbols\",\"sort_order\":63,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"tea\":{\"name\":\"Teacup Without Handle\",\"unified\":\"1F375\",\"variations\":[],\"docomo\":\"E71E\",\"au\":\"EAAE\",\"softbank\":\"E338\",\"google\":\"FE984\",\"image\":\"1f375.png\",\"sheet_x\":8,\"sheet_y\":13,\"short_name\":\"tea\",\"short_names\":[\"tea\"],\"category\":\"Foods\",\"sort_order\":63,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"gun\":{\"name\":\"Pistol\",\"unified\":\"1F52B\",\"variations\":[],\"docomo\":null,\"au\":\"E50A\",\"softbank\":\"E113\",\"google\":\"FE4F5\",\"image\":\"1f52b.png\",\"sheet_x\":23,\"sheet_y\":27,\"short_name\":\"gun\",\"short_names\":[\"gun\"],\"category\":\"Objects\",\"sort_order\":63,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"astonished\":{\"name\":\"Astonished Face\",\"unified\":\"1F632\",\"variations\":[],\"docomo\":\"E6F4\",\"au\":\"EACA\",\"softbank\":\"E410\",\"google\":\"FE322\",\"image\":\"1f632.png\",\"sheet_x\":27,\"sheet_y\":24,\"short_name\":\"astonished\",\"short_names\":[\"astonished\"],\"category\":\"People\",\"sort_order\":63,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-dm\":{\"name\":\"Regional Indicator Symbol Letters DM\",\"unified\":\"1F1E9-1F1F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e9-1f1f2.png\",\"sheet_x\":34,\"sheet_y\":13,\"short_name\":\"flag-dm\",\"short_names\":[\"flag-dm\"],\"category\":\"Flags\",\"sort_order\":63,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"rooster\":{\"name\":\"Rooster\",\"unified\":\"1F413\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f413.png\",\"sheet_x\":12,\"sheet_y\":24,\"short_name\":\"rooster\",\"short_names\":[\"rooster\"],\"category\":\"Nature\",\"sort_order\":63,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"factory\":{\"name\":\"Factory\",\"unified\":\"1F3ED\",\"variations\":[],\"docomo\":null,\"au\":\"EAF9\",\"softbank\":\"E508\",\"google\":\"FE4C0\",\"image\":\"1f3ed.png\",\"sheet_x\":11,\"sheet_y\":30,\"short_name\":\"factory\",\"short_names\":[\"factory\"],\"category\":\"Places\",\"sort_order\":63,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"coffee\":{\"name\":\"Hot Beverage\",\"unified\":\"2615\",\"variations\":[\"2615-FE0F\"],\"docomo\":\"E670\",\"au\":\"E597\",\"softbank\":\"E045\",\"google\":\"FE981\",\"image\":\"2615.png\",\"sheet_x\":1,\"sheet_y\":8,\"short_name\":\"coffee\",\"short_names\":[\"coffee\"],\"category\":\"Foods\",\"sort_order\":64,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"bomb\":{\"name\":\"Bomb\",\"unified\":\"1F4A3\",\"variations\":[],\"docomo\":\"E6FE\",\"au\":\"E47A\",\"softbank\":\"E311\",\"google\":\"FEB58\",\"image\":\"1f4a3.png\",\"sheet_x\":20,\"sheet_y\":10,\"short_name\":\"bomb\",\"short_names\":[\"bomb\"],\"category\":\"Objects\",\"sort_order\":64,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-do\":{\"name\":\"Regional Indicator Symbol Letters DO\",\"unified\":\"1F1E9-1F1F4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e9-1f1f4.png\",\"sheet_x\":34,\"sheet_y\":14,\"short_name\":\"flag-do\",\"short_names\":[\"flag-do\"],\"category\":\"Flags\",\"sort_order\":64,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"fountain\":{\"name\":\"Fountain\",\"unified\":\"26F2\",\"variations\":[\"26F2-FE0F\"],\"docomo\":null,\"au\":\"E5CF\",\"softbank\":\"E121\",\"google\":\"FE4BC\",\"image\":\"26f2.png\",\"sheet_x\":2,\"sheet_y\":32,\"short_name\":\"fountain\",\"short_names\":[\"fountain\"],\"category\":\"Places\",\"sort_order\":64,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"turkey\":{\"name\":\"Turkey\",\"unified\":\"1F983\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f983.png\",\"sheet_x\":32,\"sheet_y\":18,\"short_name\":\"turkey\",\"short_names\":[\"turkey\"],\"category\":\"Nature\",\"sort_order\":64,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"zipper_mouth_face\":{\"name\":\"Zipper-Mouth Face\",\"unified\":\"1F910\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f910.png\",\"sheet_x\":32,\"sheet_y\":1,\"short_name\":\"zipper_mouth_face\",\"short_names\":[\"zipper_mouth_face\"],\"category\":\"People\",\"sort_order\":64,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"b\":{\"name\":\"Negative Squared Latin Capital Letter B\",\"unified\":\"1F171\",\"variations\":[\"1F171-FE0F\"],\"docomo\":null,\"au\":\"EB27\",\"softbank\":\"E533\",\"google\":\"FE50C\",\"image\":\"1f171.png\",\"sheet_x\":4,\"sheet_y\":33,\"short_name\":\"b\",\"short_names\":[\"b\"],\"category\":\"Symbols\",\"sort_order\":64,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"mask\":{\"name\":\"Face with Medical Mask\",\"unified\":\"1F637\",\"variations\":[],\"docomo\":null,\"au\":\"EAC7\",\"softbank\":\"E40C\",\"google\":\"FE32E\",\"image\":\"1f637.png\",\"sheet_x\":27,\"sheet_y\":29,\"short_name\":\"mask\",\"short_names\":[\"mask\"],\"category\":\"People\",\"sort_order\":65,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ec\":{\"name\":\"Regional Indicator Symbol Letters EC\",\"unified\":\"1F1EA-1F1E8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ea-1f1e8.png\",\"sheet_x\":34,\"sheet_y\":17,\"short_name\":\"flag-ec\",\"short_names\":[\"flag-ec\"],\"category\":\"Flags\",\"sort_order\":65,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"ab\":{\"name\":\"Negative Squared Ab\",\"unified\":\"1F18E\",\"variations\":[],\"docomo\":null,\"au\":\"EB29\",\"softbank\":\"E534\",\"google\":\"FE50D\",\"image\":\"1f18e.png\",\"sheet_x\":4,\"sheet_y\":36,\"short_name\":\"ab\",\"short_names\":[\"ab\"],\"category\":\"Symbols\",\"sort_order\":65,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"rice_scene\":{\"name\":\"Moon Viewing Ceremony\",\"unified\":\"1F391\",\"variations\":[],\"docomo\":null,\"au\":\"EAEF\",\"softbank\":\"E446\",\"google\":\"FE017\",\"image\":\"1f391.png\",\"sheet_x\":9,\"sheet_y\":5,\"short_name\":\"rice_scene\",\"short_names\":[\"rice_scene\"],\"category\":\"Places\",\"sort_order\":65,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"baby_bottle\":{\"name\":\"Baby Bottle\",\"unified\":\"1F37C\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f37c.png\",\"sheet_x\":8,\"sheet_y\":20,\"short_name\":\"baby_bottle\",\"short_names\":[\"baby_bottle\"],\"category\":\"Foods\",\"sort_order\":65,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"hocho\":{\"name\":\"Hocho\",\"unified\":\"1F52A\",\"variations\":[],\"docomo\":null,\"au\":\"E57F\",\"softbank\":null,\"google\":\"FE4FA\",\"image\":\"1f52a.png\",\"sheet_x\":23,\"sheet_y\":26,\"short_name\":\"hocho\",\"short_names\":[\"hocho\",\"knife\"],\"category\":\"Objects\",\"sort_order\":65,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"dove_of_peace\":{\"name\":\"Dove of Peace\",\"unified\":\"1F54A\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f54a.png\",\"sheet_x\":24,\"sheet_y\":6,\"short_name\":\"dove_of_peace\",\"short_names\":[\"dove_of_peace\"],\"category\":\"Nature\",\"sort_order\":65,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"cl\":{\"name\":\"Squared Cl\",\"unified\":\"1F191\",\"variations\":[],\"docomo\":\"E6DB\",\"au\":\"E5AB\",\"softbank\":null,\"google\":\"FEB84\",\"image\":\"1f191.png\",\"sheet_x\":4,\"sheet_y\":37,\"short_name\":\"cl\",\"short_names\":[\"cl\"],\"category\":\"Symbols\",\"sort_order\":66,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"dog2\":{\"name\":\"Dog\",\"unified\":\"1F415\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f415.png\",\"sheet_x\":12,\"sheet_y\":26,\"short_name\":\"dog2\",\"short_names\":[\"dog2\"],\"category\":\"Nature\",\"sort_order\":66,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"fork_and_knife\":{\"name\":\"Fork and Knife\",\"unified\":\"1F374\",\"variations\":[],\"docomo\":\"E66F\",\"au\":\"E4AC\",\"softbank\":\"E043\",\"google\":\"FE980\",\"image\":\"1f374.png\",\"sheet_x\":8,\"sheet_y\":12,\"short_name\":\"fork_and_knife\",\"short_names\":[\"fork_and_knife\"],\"category\":\"Foods\",\"sort_order\":66,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"dagger_knife\":{\"name\":\"Dagger Knife\",\"unified\":\"1F5E1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5e1.png\",\"sheet_x\":26,\"sheet_y\":4,\"short_name\":\"dagger_knife\",\"short_names\":[\"dagger_knife\"],\"category\":\"Objects\",\"sort_order\":66,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"mountain\":{\"name\":\"Mountain\",\"unified\":\"26F0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"26f0.png\",\"sheet_x\":2,\"sheet_y\":30,\"short_name\":\"mountain\",\"short_names\":[\"mountain\"],\"category\":\"Places\",\"sort_order\":66,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"face_with_thermometer\":{\"name\":\"Face with Thermometer\",\"unified\":\"1F912\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f912.png\",\"sheet_x\":32,\"sheet_y\":3,\"short_name\":\"face_with_thermometer\",\"short_names\":[\"face_with_thermometer\"],\"category\":\"People\",\"sort_order\":66,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-eg\":{\"name\":\"Regional Indicator Symbol Letters EG\",\"unified\":\"1F1EA-1F1EC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ea-1f1ec.png\",\"sheet_x\":34,\"sheet_y\":19,\"short_name\":\"flag-eg\",\"short_names\":[\"flag-eg\"],\"category\":\"Flags\",\"sort_order\":66,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"poodle\":{\"name\":\"Poodle\",\"unified\":\"1F429\",\"variations\":[],\"docomo\":\"E6A1\",\"au\":\"E4DF\",\"softbank\":\"E052\",\"google\":\"FE1D8\",\"image\":\"1f429.png\",\"sheet_x\":13,\"sheet_y\":5,\"short_name\":\"poodle\",\"short_names\":[\"poodle\"],\"category\":\"Nature\",\"sort_order\":67,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-sv\":{\"name\":\"Regional Indicator Symbol Letters SV\",\"unified\":\"1F1F8-1F1FB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1fb.png\",\"sheet_x\":38,\"sheet_y\":2,\"short_name\":\"flag-sv\",\"short_names\":[\"flag-sv\"],\"category\":\"Flags\",\"sort_order\":67,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"snow_capped_mountain\":{\"name\":\"Snow Capped Mountain\",\"unified\":\"1F3D4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3d4.png\",\"sheet_x\":11,\"sheet_y\":5,\"short_name\":\"snow_capped_mountain\",\"short_names\":[\"snow_capped_mountain\"],\"category\":\"Places\",\"sort_order\":67,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"face_with_head_bandage\":{\"name\":\"Face with Head-Bandage\",\"unified\":\"1F915\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f915.png\",\"sheet_x\":32,\"sheet_y\":6,\"short_name\":\"face_with_head_bandage\",\"short_names\":[\"face_with_head_bandage\"],\"category\":\"People\",\"sort_order\":67,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"o2\":{\"name\":\"Negative Squared Latin Capital Letter O\",\"unified\":\"1F17E\",\"variations\":[\"1F17E-FE0F\"],\"docomo\":null,\"au\":\"EB28\",\"softbank\":\"E535\",\"google\":\"FE50E\",\"image\":\"1f17e.png\",\"sheet_x\":4,\"sheet_y\":34,\"short_name\":\"o2\",\"short_names\":[\"o2\"],\"category\":\"Symbols\",\"sort_order\":67,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"knife_fork_plate\":{\"name\":\"Fork and Knife with Plate\",\"unified\":\"1F37D\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f37d.png\",\"sheet_x\":8,\"sheet_y\":21,\"short_name\":\"knife_fork_plate\",\"short_names\":[\"knife_fork_plate\"],\"category\":\"Foods\",\"sort_order\":67,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"crossed_swords\":{\"name\":\"Crossed Swords\",\"unified\":\"2694\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"2694.png\",\"sheet_x\":2,\"sheet_y\":6,\"short_name\":\"crossed_swords\",\"short_names\":[\"crossed_swords\"],\"category\":\"Objects\",\"sort_order\":67,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"sos\":{\"name\":\"Squared Sos\",\"unified\":\"1F198\",\"variations\":[],\"docomo\":null,\"au\":\"E4E8\",\"softbank\":null,\"google\":\"FEB4F\",\"image\":\"1f198.png\",\"sheet_x\":5,\"sheet_y\":3,\"short_name\":\"sos\",\"short_names\":[\"sos\"],\"category\":\"Symbols\",\"sort_order\":68,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-gq\":{\"name\":\"Regional Indicator Symbol Letters GQ\",\"unified\":\"1F1EC-1F1F6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1f6.png\",\"sheet_x\":35,\"sheet_y\":2,\"short_name\":\"flag-gq\",\"short_names\":[\"flag-gq\"],\"category\":\"Flags\",\"sort_order\":68,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"mount_fuji\":{\"name\":\"Mount Fuji\",\"unified\":\"1F5FB\",\"variations\":[],\"docomo\":\"E740\",\"au\":\"E5BD\",\"softbank\":\"E03B\",\"google\":\"FE4C3\",\"image\":\"1f5fb.png\",\"sheet_x\":26,\"sheet_y\":10,\"short_name\":\"mount_fuji\",\"short_names\":[\"mount_fuji\"],\"category\":\"Places\",\"sort_order\":68,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"cat2\":{\"name\":\"Cat\",\"unified\":\"1F408\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f408.png\",\"sheet_x\":12,\"sheet_y\":13,\"short_name\":\"cat2\",\"short_names\":[\"cat2\"],\"category\":\"Nature\",\"sort_order\":68,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"shield\":{\"name\":\"Shield\",\"unified\":\"1F6E1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6e1.png\",\"sheet_x\":31,\"sheet_y\":32,\"short_name\":\"shield\",\"short_names\":[\"shield\"],\"category\":\"Objects\",\"sort_order\":68,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"sleeping\":{\"name\":\"Sleeping Face\",\"unified\":\"1F634\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f634.png\",\"sheet_x\":27,\"sheet_y\":26,\"short_name\":\"sleeping\",\"short_names\":[\"sleeping\"],\"category\":\"People\",\"sort_order\":68,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"volcano\":{\"name\":\"Volcano\",\"unified\":\"1F30B\",\"variations\":[],\"docomo\":null,\"au\":\"EB53\",\"softbank\":null,\"google\":\"FE03A\",\"image\":\"1f30b.png\",\"sheet_x\":5,\"sheet_y\":32,\"short_name\":\"volcano\",\"short_names\":[\"volcano\"],\"category\":\"Places\",\"sort_order\":69,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"rabbit2\":{\"name\":\"Rabbit\",\"unified\":\"1F407\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f407.png\",\"sheet_x\":12,\"sheet_y\":12,\"short_name\":\"rabbit2\",\"short_names\":[\"rabbit2\"],\"category\":\"Nature\",\"sort_order\":69,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"smoking\":{\"name\":\"Smoking Symbol\",\"unified\":\"1F6AC\",\"variations\":[],\"docomo\":\"E67F\",\"au\":\"E47D\",\"softbank\":\"E30E\",\"google\":\"FEB1E\",\"image\":\"1f6ac.png\",\"sheet_x\":30,\"sheet_y\":20,\"short_name\":\"smoking\",\"short_names\":[\"smoking\"],\"category\":\"Objects\",\"sort_order\":69,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-er\":{\"name\":\"Regional Indicator Symbol Letters ER\",\"unified\":\"1F1EA-1F1F7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ea-1f1f7.png\",\"sheet_x\":34,\"sheet_y\":21,\"short_name\":\"flag-er\",\"short_names\":[\"flag-er\"],\"category\":\"Flags\",\"sort_order\":69,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"zzz\":{\"name\":\"Sleeping Symbol\",\"unified\":\"1F4A4\",\"variations\":[],\"docomo\":\"E701\",\"au\":\"E475\",\"softbank\":\"E13C\",\"google\":\"FEB59\",\"image\":\"1f4a4.png\",\"sheet_x\":20,\"sheet_y\":11,\"short_name\":\"zzz\",\"short_names\":[\"zzz\"],\"category\":\"People\",\"sort_order\":69,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"no_entry\":{\"name\":\"No Entry\",\"unified\":\"26D4\",\"variations\":[\"26D4-FE0F\"],\"docomo\":\"E72F\",\"au\":\"E484\",\"softbank\":\"E137\",\"google\":\"FEB26\",\"image\":\"26d4.png\",\"sheet_x\":2,\"sheet_y\":27,\"short_name\":\"no_entry\",\"short_names\":[\"no_entry\"],\"category\":\"Symbols\",\"sort_order\":69,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"hankey\":{\"name\":\"Pile of Poo\",\"unified\":\"1F4A9\",\"variations\":[],\"docomo\":null,\"au\":\"E4F5\",\"softbank\":\"E05A\",\"google\":\"FE4F4\",\"image\":\"1f4a9.png\",\"sheet_x\":20,\"sheet_y\":16,\"short_name\":\"hankey\",\"short_names\":[\"hankey\",\"poop\",\"shit\"],\"category\":\"People\",\"sort_order\":70,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ee\":{\"name\":\"Regional Indicator Symbol Letters EE\",\"unified\":\"1F1EA-1F1EA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ea-1f1ea.png\",\"sheet_x\":34,\"sheet_y\":18,\"short_name\":\"flag-ee\",\"short_names\":[\"flag-ee\"],\"category\":\"Flags\",\"sort_order\":70,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"skull_and_crossbones\":{\"name\":\"Skull and Crossbones\",\"unified\":\"2620\",\"variations\":[\"2620-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"2620.png\",\"sheet_x\":1,\"sheet_y\":16,\"short_name\":\"skull_and_crossbones\",\"short_names\":[\"skull_and_crossbones\"],\"category\":\"Objects\",\"sort_order\":70,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"chipmunk\":{\"name\":\"Chipmunk\",\"unified\":\"1F43F\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f43f.png\",\"sheet_x\":13,\"sheet_y\":27,\"short_name\":\"chipmunk\",\"short_names\":[\"chipmunk\"],\"category\":\"Nature\",\"sort_order\":70,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"japan\":{\"name\":\"Silhouette of Japan\",\"unified\":\"1F5FE\",\"variations\":[],\"docomo\":null,\"au\":\"E572\",\"softbank\":null,\"google\":\"FE4C7\",\"image\":\"1f5fe.png\",\"sheet_x\":26,\"sheet_y\":13,\"short_name\":\"japan\",\"short_names\":[\"japan\"],\"category\":\"Places\",\"sort_order\":70,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"name_badge\":{\"name\":\"Name Badge\",\"unified\":\"1F4DB\",\"variations\":[],\"docomo\":null,\"au\":\"E51D\",\"softbank\":null,\"google\":\"FE504\",\"image\":\"1f4db.png\",\"sheet_x\":21,\"sheet_y\":30,\"short_name\":\"name_badge\",\"short_names\":[\"name_badge\"],\"category\":\"Symbols\",\"sort_order\":70,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"coffin\":{\"name\":\"Coffin\",\"unified\":\"26B0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"26b0.png\",\"sheet_x\":2,\"sheet_y\":16,\"short_name\":\"coffin\",\"short_names\":[\"coffin\"],\"category\":\"Objects\",\"sort_order\":71,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"camping\":{\"name\":\"Camping\",\"unified\":\"1F3D5\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3d5.png\",\"sheet_x\":11,\"sheet_y\":6,\"short_name\":\"camping\",\"short_names\":[\"camping\"],\"category\":\"Places\",\"sort_order\":71,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"feet\":{\"name\":\"Paw Prints\",\"unified\":\"1F43E\",\"variations\":[],\"docomo\":\"E698\",\"au\":\"E4EE\",\"softbank\":\"E536\",\"google\":\"FE1DB\",\"image\":\"1f43e.png\",\"sheet_x\":13,\"sheet_y\":26,\"short_name\":\"feet\",\"short_names\":[\"feet\",\"paw_prints\"],\"category\":\"Nature\",\"sort_order\":71,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-et\":{\"name\":\"Regional Indicator Symbol Letters ET\",\"unified\":\"1F1EA-1F1F9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ea-1f1f9.png\",\"sheet_x\":34,\"sheet_y\":23,\"short_name\":\"flag-et\",\"short_names\":[\"flag-et\"],\"category\":\"Flags\",\"sort_order\":71,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"no_entry_sign\":{\"name\":\"No Entry Sign\",\"unified\":\"1F6AB\",\"variations\":[],\"docomo\":\"E738\",\"au\":\"E541\",\"softbank\":null,\"google\":\"FEB48\",\"image\":\"1f6ab.png\",\"sheet_x\":30,\"sheet_y\":19,\"short_name\":\"no_entry_sign\",\"short_names\":[\"no_entry_sign\"],\"category\":\"Symbols\",\"sort_order\":71,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"smiling_imp\":{\"name\":\"Smiling Face with Horns\",\"unified\":\"1F608\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f608.png\",\"sheet_x\":26,\"sheet_y\":23,\"short_name\":\"smiling_imp\",\"short_names\":[\"smiling_imp\"],\"category\":\"People\",\"sort_order\":71,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"imp\":{\"name\":\"Imp\",\"unified\":\"1F47F\",\"variations\":[],\"docomo\":null,\"au\":\"E4EF\",\"softbank\":\"E11A\",\"google\":\"FE1B2\",\"image\":\"1f47f.png\",\"sheet_x\":18,\"sheet_y\":26,\"short_name\":\"imp\",\"short_names\":[\"imp\"],\"category\":\"People\",\"sort_order\":72,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"funeral_urn\":{\"name\":\"Funeral Urn\",\"unified\":\"26B1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"26b1.png\",\"sheet_x\":2,\"sheet_y\":17,\"short_name\":\"funeral_urn\",\"short_names\":[\"funeral_urn\"],\"category\":\"Objects\",\"sort_order\":72,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"tent\":{\"name\":\"Tent\",\"unified\":\"26FA\",\"variations\":[\"26FA-FE0F\"],\"docomo\":null,\"au\":\"E5D0\",\"softbank\":\"E122\",\"google\":\"FE7FB\",\"image\":\"26fa.png\",\"sheet_x\":3,\"sheet_y\":3,\"short_name\":\"tent\",\"short_names\":[\"tent\"],\"category\":\"Places\",\"sort_order\":72,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"dragon\":{\"name\":\"Dragon\",\"unified\":\"1F409\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f409.png\",\"sheet_x\":12,\"sheet_y\":14,\"short_name\":\"dragon\",\"short_names\":[\"dragon\"],\"category\":\"Nature\",\"sort_order\":72,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"x\":{\"name\":\"Cross Mark\",\"unified\":\"274C\",\"variations\":[],\"docomo\":null,\"au\":\"E550\",\"softbank\":\"E333\",\"google\":\"FEB45\",\"image\":\"274c.png\",\"sheet_x\":4,\"sheet_y\":3,\"short_name\":\"x\",\"short_names\":[\"x\"],\"category\":\"Symbols\",\"sort_order\":72,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-eu\":{\"name\":\"Regional Indicator Symbol Letters EU\",\"unified\":\"1F1EA-1F1FA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ea-1f1fa.png\",\"sheet_x\":34,\"sheet_y\":24,\"short_name\":\"flag-eu\",\"short_names\":[\"flag-eu\"],\"category\":\"Flags\",\"sort_order\":72,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"amphora\":{\"name\":\"Amphora\",\"unified\":\"1F3FA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3fa.png\",\"sheet_x\":11,\"sheet_y\":40,\"short_name\":\"amphora\",\"short_names\":[\"amphora\"],\"category\":\"Objects\",\"sort_order\":73,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"o\":{\"name\":\"Heavy Large Circle\",\"unified\":\"2B55\",\"variations\":[\"2B55-FE0F\"],\"docomo\":\"E6A0\",\"au\":\"EAAD\",\"softbank\":\"E332\",\"google\":\"FEB44\",\"image\":\"2b55.png\",\"sheet_x\":4,\"sheet_y\":25,\"short_name\":\"o\",\"short_names\":[\"o\"],\"category\":\"Symbols\",\"sort_order\":73,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"national_park\":{\"name\":\"National Park\",\"unified\":\"1F3DE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3de.png\",\"sheet_x\":11,\"sheet_y\":15,\"short_name\":\"national_park\",\"short_names\":[\"national_park\"],\"category\":\"Places\",\"sort_order\":73,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"dragon_face\":{\"name\":\"Dragon Face\",\"unified\":\"1F432\",\"variations\":[],\"docomo\":null,\"au\":\"EB3F\",\"softbank\":null,\"google\":\"FE1DE\",\"image\":\"1f432.png\",\"sheet_x\":13,\"sheet_y\":14,\"short_name\":\"dragon_face\",\"short_names\":[\"dragon_face\"],\"category\":\"Nature\",\"sort_order\":73,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-fk\":{\"name\":\"Regional Indicator Symbol Letters FK\",\"unified\":\"1F1EB-1F1F0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1eb-1f1f0.png\",\"sheet_x\":34,\"sheet_y\":27,\"short_name\":\"flag-fk\",\"short_names\":[\"flag-fk\"],\"category\":\"Flags\",\"sort_order\":73,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"japanese_ogre\":{\"name\":\"Japanese Ogre\",\"unified\":\"1F479\",\"variations\":[],\"docomo\":null,\"au\":\"EB44\",\"softbank\":null,\"google\":\"FE1AC\",\"image\":\"1f479.png\",\"sheet_x\":18,\"sheet_y\":15,\"short_name\":\"japanese_ogre\",\"short_names\":[\"japanese_ogre\"],\"category\":\"People\",\"sort_order\":73,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"japanese_goblin\":{\"name\":\"Japanese Goblin\",\"unified\":\"1F47A\",\"variations\":[],\"docomo\":null,\"au\":\"EB45\",\"softbank\":null,\"google\":\"FE1AD\",\"image\":\"1f47a.png\",\"sheet_x\":18,\"sheet_y\":16,\"short_name\":\"japanese_goblin\",\"short_names\":[\"japanese_goblin\"],\"category\":\"People\",\"sort_order\":74,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-fo\":{\"name\":\"Regional Indicator Symbol Letters FO\",\"unified\":\"1F1EB-1F1F4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1eb-1f1f4.png\",\"sheet_x\":34,\"sheet_y\":29,\"short_name\":\"flag-fo\",\"short_names\":[\"flag-fo\"],\"category\":\"Flags\",\"sort_order\":74,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"motorway\":{\"name\":\"Motorway\",\"unified\":\"1F6E3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6e3.png\",\"sheet_x\":31,\"sheet_y\":34,\"short_name\":\"motorway\",\"short_names\":[\"motorway\"],\"category\":\"Places\",\"sort_order\":74,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"cactus\":{\"name\":\"Cactus\",\"unified\":\"1F335\",\"variations\":[],\"docomo\":null,\"au\":\"EA96\",\"softbank\":\"E308\",\"google\":\"FE048\",\"image\":\"1f335.png\",\"sheet_x\":6,\"sheet_y\":31,\"short_name\":\"cactus\",\"short_names\":[\"cactus\"],\"category\":\"Nature\",\"sort_order\":74,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"anger\":{\"name\":\"Anger Symbol\",\"unified\":\"1F4A2\",\"variations\":[],\"docomo\":\"E6FC\",\"au\":\"E4E5\",\"softbank\":\"E334\",\"google\":\"FEB57\",\"image\":\"1f4a2.png\",\"sheet_x\":20,\"sheet_y\":9,\"short_name\":\"anger\",\"short_names\":[\"anger\"],\"category\":\"Symbols\",\"sort_order\":74,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"crystal_ball\":{\"name\":\"Crystal Ball\",\"unified\":\"1F52E\",\"variations\":[],\"docomo\":null,\"au\":\"EA8F\",\"softbank\":\"E23E\",\"google\":\"FE4F7\",\"image\":\"1f52e.png\",\"sheet_x\":23,\"sheet_y\":30,\"short_name\":\"crystal_ball\",\"short_names\":[\"crystal_ball\"],\"category\":\"Objects\",\"sort_order\":74,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"skull\":{\"name\":\"Skull\",\"unified\":\"1F480\",\"variations\":[],\"docomo\":null,\"au\":\"E4F8\",\"softbank\":\"E11C\",\"google\":\"FE1B3\",\"image\":\"1f480.png\",\"sheet_x\":18,\"sheet_y\":27,\"short_name\":\"skull\",\"short_names\":[\"skull\"],\"category\":\"People\",\"sort_order\":75,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"hotsprings\":{\"name\":\"Hot Springs\",\"unified\":\"2668\",\"variations\":[\"2668-FE0F\"],\"docomo\":\"E6F7\",\"au\":\"E4BC\",\"softbank\":\"E123\",\"google\":\"FE7FA\",\"image\":\"2668.png\",\"sheet_x\":2,\"sheet_y\":1,\"short_name\":\"hotsprings\",\"short_names\":[\"hotsprings\"],\"category\":\"Symbols\",\"sort_order\":75,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-fj\":{\"name\":\"Regional Indicator Symbol Letters FJ\",\"unified\":\"1F1EB-1F1EF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1eb-1f1ef.png\",\"sheet_x\":34,\"sheet_y\":26,\"short_name\":\"flag-fj\",\"short_names\":[\"flag-fj\"],\"category\":\"Flags\",\"sort_order\":75,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"prayer_beads\":{\"name\":\"Prayer Beads\",\"unified\":\"1F4FF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f4ff.png\",\"sheet_x\":22,\"sheet_y\":24,\"short_name\":\"prayer_beads\",\"short_names\":[\"prayer_beads\"],\"category\":\"Objects\",\"sort_order\":75,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"christmas_tree\":{\"name\":\"Christmas Tree\",\"unified\":\"1F384\",\"variations\":[],\"docomo\":\"E6A4\",\"au\":\"E4C9\",\"softbank\":\"E033\",\"google\":\"FE512\",\"image\":\"1f384.png\",\"sheet_x\":8,\"sheet_y\":28,\"short_name\":\"christmas_tree\",\"short_names\":[\"christmas_tree\"],\"category\":\"Nature\",\"sort_order\":75,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"railway_track\":{\"name\":\"Railway Track\",\"unified\":\"1F6E4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6e4.png\",\"sheet_x\":31,\"sheet_y\":35,\"short_name\":\"railway_track\",\"short_names\":[\"railway_track\"],\"category\":\"Places\",\"sort_order\":75,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-fi\":{\"name\":\"Regional Indicator Symbol Letters FI\",\"unified\":\"1F1EB-1F1EE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1eb-1f1ee.png\",\"sheet_x\":34,\"sheet_y\":25,\"short_name\":\"flag-fi\",\"short_names\":[\"flag-fi\"],\"category\":\"Flags\",\"sort_order\":76,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"barber\":{\"name\":\"Barber Pole\",\"unified\":\"1F488\",\"variations\":[],\"docomo\":null,\"au\":\"EAA2\",\"softbank\":\"E320\",\"google\":\"FE199\",\"image\":\"1f488.png\",\"sheet_x\":19,\"sheet_y\":24,\"short_name\":\"barber\",\"short_names\":[\"barber\"],\"category\":\"Objects\",\"sort_order\":76,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"ghost\":{\"name\":\"Ghost\",\"unified\":\"1F47B\",\"variations\":[],\"docomo\":null,\"au\":\"E4CB\",\"softbank\":\"E11B\",\"google\":\"FE1AE\",\"image\":\"1f47b.png\",\"sheet_x\":18,\"sheet_y\":17,\"short_name\":\"ghost\",\"short_names\":[\"ghost\"],\"category\":\"People\",\"sort_order\":76,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"sunrise\":{\"name\":\"Sunrise\",\"unified\":\"1F305\",\"variations\":[],\"docomo\":\"E63E\",\"au\":\"EAF4\",\"softbank\":\"E449\",\"google\":\"FE00A\",\"image\":\"1f305.png\",\"sheet_x\":5,\"sheet_y\":26,\"short_name\":\"sunrise\",\"short_names\":[\"sunrise\"],\"category\":\"Places\",\"sort_order\":76,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"evergreen_tree\":{\"name\":\"Evergreen Tree\",\"unified\":\"1F332\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f332.png\",\"sheet_x\":6,\"sheet_y\":28,\"short_name\":\"evergreen_tree\",\"short_names\":[\"evergreen_tree\"],\"category\":\"Nature\",\"sort_order\":76,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"no_pedestrians\":{\"name\":\"No Pedestrians\",\"unified\":\"1F6B7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6b7.png\",\"sheet_x\":31,\"sheet_y\":5,\"short_name\":\"no_pedestrians\",\"short_names\":[\"no_pedestrians\"],\"category\":\"Symbols\",\"sort_order\":76,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"sunrise_over_mountains\":{\"name\":\"Sunrise over Mountains\",\"unified\":\"1F304\",\"variations\":[],\"docomo\":\"E63E\",\"au\":\"EAF4\",\"softbank\":\"E04D\",\"google\":\"FE009\",\"image\":\"1f304.png\",\"sheet_x\":5,\"sheet_y\":25,\"short_name\":\"sunrise_over_mountains\",\"short_names\":[\"sunrise_over_mountains\"],\"category\":\"Places\",\"sort_order\":77,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"alembic\":{\"name\":\"Alembic\",\"unified\":\"2697\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"2697.png\",\"sheet_x\":2,\"sheet_y\":8,\"short_name\":\"alembic\",\"short_names\":[\"alembic\"],\"category\":\"Objects\",\"sort_order\":77,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"alien\":{\"name\":\"Extraterrestrial Alien\",\"unified\":\"1F47D\",\"variations\":[],\"docomo\":null,\"au\":\"E50E\",\"softbank\":\"E10C\",\"google\":\"FE1B0\",\"image\":\"1f47d.png\",\"sheet_x\":18,\"sheet_y\":24,\"short_name\":\"alien\",\"short_names\":[\"alien\"],\"category\":\"People\",\"sort_order\":77,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"deciduous_tree\":{\"name\":\"Deciduous Tree\",\"unified\":\"1F333\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f333.png\",\"sheet_x\":6,\"sheet_y\":29,\"short_name\":\"deciduous_tree\",\"short_names\":[\"deciduous_tree\"],\"category\":\"Nature\",\"sort_order\":77,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"do_not_litter\":{\"name\":\"Do Not Litter Symbol\",\"unified\":\"1F6AF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6af.png\",\"sheet_x\":30,\"sheet_y\":23,\"short_name\":\"do_not_litter\",\"short_names\":[\"do_not_litter\"],\"category\":\"Symbols\",\"sort_order\":77,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-fr\":{\"name\":\"Regional Indicator Symbol Letters FR\",\"unified\":\"1F1EB-1F1F7\",\"variations\":[],\"docomo\":null,\"au\":\"EAFA\",\"softbank\":\"E50D\",\"google\":\"FE4E7\",\"image\":\"1f1eb-1f1f7.png\",\"sheet_x\":34,\"sheet_y\":30,\"short_name\":\"flag-fr\",\"short_names\":[\"flag-fr\",\"fr\"],\"category\":\"Flags\",\"sort_order\":77,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"telescope\":{\"name\":\"Telescope\",\"unified\":\"1F52D\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f52d.png\",\"sheet_x\":23,\"sheet_y\":29,\"short_name\":\"telescope\",\"short_names\":[\"telescope\"],\"category\":\"Objects\",\"sort_order\":78,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"palm_tree\":{\"name\":\"Palm Tree\",\"unified\":\"1F334\",\"variations\":[],\"docomo\":null,\"au\":\"E4E2\",\"softbank\":\"E307\",\"google\":\"FE047\",\"image\":\"1f334.png\",\"sheet_x\":6,\"sheet_y\":30,\"short_name\":\"palm_tree\",\"short_names\":[\"palm_tree\"],\"category\":\"Nature\",\"sort_order\":78,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"no_bicycles\":{\"name\":\"No Bicycles\",\"unified\":\"1F6B3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6b3.png\",\"sheet_x\":30,\"sheet_y\":27,\"short_name\":\"no_bicycles\",\"short_names\":[\"no_bicycles\"],\"category\":\"Symbols\",\"sort_order\":78,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"desert\":{\"name\":\"Desert\",\"unified\":\"1F3DC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3dc.png\",\"sheet_x\":11,\"sheet_y\":13,\"short_name\":\"desert\",\"short_names\":[\"desert\"],\"category\":\"Places\",\"sort_order\":78,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"robot_face\":{\"name\":\"Robot Face\",\"unified\":\"1F916\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f916.png\",\"sheet_x\":32,\"sheet_y\":7,\"short_name\":\"robot_face\",\"short_names\":[\"robot_face\"],\"category\":\"People\",\"sort_order\":78,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-gf\":{\"name\":\"Regional Indicator Symbol Letters GF\",\"unified\":\"1F1EC-1F1EB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1eb.png\",\"sheet_x\":34,\"sheet_y\":35,\"short_name\":\"flag-gf\",\"short_names\":[\"flag-gf\"],\"category\":\"Flags\",\"sort_order\":78,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"non-potable_water\":{\"name\":\"Non-Potable Water Symbol\",\"unified\":\"1F6B1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6b1.png\",\"sheet_x\":30,\"sheet_y\":25,\"short_name\":\"non-potable_water\",\"short_names\":[\"non-potable_water\"],\"category\":\"Symbols\",\"sort_order\":79,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"beach_with_umbrella\":{\"name\":\"Beach with Umbrella\",\"unified\":\"1F3D6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3d6.png\",\"sheet_x\":11,\"sheet_y\":7,\"short_name\":\"beach_with_umbrella\",\"short_names\":[\"beach_with_umbrella\"],\"category\":\"Places\",\"sort_order\":79,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"microscope\":{\"name\":\"Microscope\",\"unified\":\"1F52C\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f52c.png\",\"sheet_x\":23,\"sheet_y\":28,\"short_name\":\"microscope\",\"short_names\":[\"microscope\"],\"category\":\"Objects\",\"sort_order\":79,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"seedling\":{\"name\":\"Seedling\",\"unified\":\"1F331\",\"variations\":[],\"docomo\":\"E746\",\"au\":\"EB7D\",\"softbank\":\"E110\",\"google\":\"FE03E\",\"image\":\"1f331.png\",\"sheet_x\":6,\"sheet_y\":27,\"short_name\":\"seedling\",\"short_names\":[\"seedling\"],\"category\":\"Nature\",\"sort_order\":79,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"smiley_cat\":{\"name\":\"Smiling Cat Face with Open Mouth\",\"unified\":\"1F63A\",\"variations\":[],\"docomo\":\"E6F0\",\"au\":\"EB61\",\"softbank\":\"E057\",\"google\":\"FE348\",\"image\":\"1f63a.png\",\"sheet_x\":27,\"sheet_y\":32,\"short_name\":\"smiley_cat\",\"short_names\":[\"smiley_cat\"],\"category\":\"People\",\"sort_order\":79,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-pf\":{\"name\":\"Regional Indicator Symbol Letters PF\",\"unified\":\"1F1F5-1F1EB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f5-1f1eb.png\",\"sheet_x\":37,\"sheet_y\":8,\"short_name\":\"flag-pf\",\"short_names\":[\"flag-pf\"],\"category\":\"Flags\",\"sort_order\":79,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"herb\":{\"name\":\"Herb\",\"unified\":\"1F33F\",\"variations\":[],\"docomo\":\"E741\",\"au\":\"EB82\",\"softbank\":\"E110\",\"google\":\"FE04E\",\"image\":\"1f33f.png\",\"sheet_x\":7,\"sheet_y\":0,\"short_name\":\"herb\",\"short_names\":[\"herb\"],\"category\":\"Nature\",\"sort_order\":80,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"underage\":{\"name\":\"No One Under Eighteen Symbol\",\"unified\":\"1F51E\",\"variations\":[],\"docomo\":null,\"au\":\"EA83\",\"softbank\":\"E207\",\"google\":\"FEB25\",\"image\":\"1f51e.png\",\"sheet_x\":23,\"sheet_y\":14,\"short_name\":\"underage\",\"short_names\":[\"underage\"],\"category\":\"Symbols\",\"sort_order\":80,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"hole\":{\"name\":\"Hole\",\"unified\":\"1F573\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f573.png\",\"sheet_x\":24,\"sheet_y\":37,\"short_name\":\"hole\",\"short_names\":[\"hole\"],\"category\":\"Objects\",\"sort_order\":80,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-tf\":{\"name\":\"Regional Indicator Symbol Letters TF\",\"unified\":\"1F1F9-1F1EB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f9-1f1eb.png\",\"sheet_x\":38,\"sheet_y\":9,\"short_name\":\"flag-tf\",\"short_names\":[\"flag-tf\"],\"category\":\"Flags\",\"sort_order\":80,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"desert_island\":{\"name\":\"Desert Island\",\"unified\":\"1F3DD\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3dd.png\",\"sheet_x\":11,\"sheet_y\":14,\"short_name\":\"desert_island\",\"short_names\":[\"desert_island\"],\"category\":\"Places\",\"sort_order\":80,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"smile_cat\":{\"name\":\"Grinning Cat Face with Smiling Eyes\",\"unified\":\"1F638\",\"variations\":[],\"docomo\":\"E753\",\"au\":\"EB7F\",\"softbank\":\"E404\",\"google\":\"FE349\",\"image\":\"1f638.png\",\"sheet_x\":27,\"sheet_y\":30,\"short_name\":\"smile_cat\",\"short_names\":[\"smile_cat\"],\"category\":\"People\",\"sort_order\":80,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"pill\":{\"name\":\"Pill\",\"unified\":\"1F48A\",\"variations\":[],\"docomo\":null,\"au\":\"EA9A\",\"softbank\":\"E30F\",\"google\":\"FE50A\",\"image\":\"1f48a.png\",\"sheet_x\":19,\"sheet_y\":26,\"short_name\":\"pill\",\"short_names\":[\"pill\"],\"category\":\"Objects\",\"sort_order\":81,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"shamrock\":{\"name\":\"Shamrock\",\"unified\":\"2618\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"2618.png\",\"sheet_x\":1,\"sheet_y\":9,\"short_name\":\"shamrock\",\"short_names\":[\"shamrock\"],\"category\":\"Nature\",\"sort_order\":81,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ga\":{\"name\":\"Regional Indicator Symbol Letters GA\",\"unified\":\"1F1EC-1F1E6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1e6.png\",\"sheet_x\":34,\"sheet_y\":31,\"short_name\":\"flag-ga\",\"short_names\":[\"flag-ga\"],\"category\":\"Flags\",\"sort_order\":81,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"city_sunrise\":{\"name\":\"Sunset over Buildings\",\"unified\":\"1F307\",\"variations\":[],\"docomo\":\"E63E\",\"au\":\"E5DA\",\"softbank\":\"E44A\",\"google\":\"FE00C\",\"image\":\"1f307.png\",\"sheet_x\":5,\"sheet_y\":28,\"short_name\":\"city_sunrise\",\"short_names\":[\"city_sunrise\"],\"category\":\"Places\",\"sort_order\":81,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"joy_cat\":{\"name\":\"Cat Face with Tears of Joy\",\"unified\":\"1F639\",\"variations\":[],\"docomo\":\"E72A\",\"au\":\"EB63\",\"softbank\":\"E412\",\"google\":\"FE34A\",\"image\":\"1f639.png\",\"sheet_x\":27,\"sheet_y\":31,\"short_name\":\"joy_cat\",\"short_names\":[\"joy_cat\"],\"category\":\"People\",\"sort_order\":81,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"no_mobile_phones\":{\"name\":\"No Mobile Phones\",\"unified\":\"1F4F5\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f4f5.png\",\"sheet_x\":22,\"sheet_y\":15,\"short_name\":\"no_mobile_phones\",\"short_names\":[\"no_mobile_phones\"],\"category\":\"Symbols\",\"sort_order\":81,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"heart_eyes_cat\":{\"name\":\"Smiling Cat Face with Heart-Shaped Eyes\",\"unified\":\"1F63B\",\"variations\":[],\"docomo\":\"E726\",\"au\":\"EB65\",\"softbank\":\"E106\",\"google\":\"FE34C\",\"image\":\"1f63b.png\",\"sheet_x\":27,\"sheet_y\":33,\"short_name\":\"heart_eyes_cat\",\"short_names\":[\"heart_eyes_cat\"],\"category\":\"People\",\"sort_order\":82,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"syringe\":{\"name\":\"Syringe\",\"unified\":\"1F489\",\"variations\":[],\"docomo\":null,\"au\":\"E510\",\"softbank\":\"E13B\",\"google\":\"FE509\",\"image\":\"1f489.png\",\"sheet_x\":19,\"sheet_y\":25,\"short_name\":\"syringe\",\"short_names\":[\"syringe\"],\"category\":\"Objects\",\"sort_order\":82,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"exclamation\":{\"name\":\"Heavy Exclamation Mark Symbol\",\"unified\":\"2757\",\"variations\":[\"2757-FE0F\"],\"docomo\":\"E702\",\"au\":\"E482\",\"softbank\":\"E021\",\"google\":\"FEB04\",\"image\":\"2757.png\",\"sheet_x\":4,\"sheet_y\":8,\"short_name\":\"exclamation\",\"short_names\":[\"exclamation\",\"heavy_exclamation_mark\"],\"category\":\"Symbols\",\"sort_order\":82,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"city_sunset\":{\"name\":\"Cityscape at Dusk\",\"unified\":\"1F306\",\"variations\":[],\"docomo\":null,\"au\":\"E5DA\",\"softbank\":\"E146\",\"google\":\"FE00B\",\"image\":\"1f306.png\",\"sheet_x\":5,\"sheet_y\":27,\"short_name\":\"city_sunset\",\"short_names\":[\"city_sunset\"],\"category\":\"Places\",\"sort_order\":82,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-gm\":{\"name\":\"Regional Indicator Symbol Letters GM\",\"unified\":\"1F1EC-1F1F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1f2.png\",\"sheet_x\":34,\"sheet_y\":40,\"short_name\":\"flag-gm\",\"short_names\":[\"flag-gm\"],\"category\":\"Flags\",\"sort_order\":82,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"four_leaf_clover\":{\"name\":\"Four Leaf Clover\",\"unified\":\"1F340\",\"variations\":[],\"docomo\":\"E741\",\"au\":\"E513\",\"softbank\":\"E110\",\"google\":\"FE03C\",\"image\":\"1f340.png\",\"sheet_x\":7,\"sheet_y\":1,\"short_name\":\"four_leaf_clover\",\"short_names\":[\"four_leaf_clover\"],\"category\":\"Nature\",\"sort_order\":82,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"grey_exclamation\":{\"name\":\"White Exclamation Mark Ornament\",\"unified\":\"2755\",\"variations\":[],\"docomo\":\"E702\",\"au\":\"E482\",\"softbank\":\"E337\",\"google\":\"FEB0B\",\"image\":\"2755.png\",\"sheet_x\":4,\"sheet_y\":7,\"short_name\":\"grey_exclamation\",\"short_names\":[\"grey_exclamation\"],\"category\":\"Symbols\",\"sort_order\":83,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"smirk_cat\":{\"name\":\"Cat Face with Wry Smile\",\"unified\":\"1F63C\",\"variations\":[],\"docomo\":\"E753\",\"au\":\"EB6A\",\"softbank\":\"E404\",\"google\":\"FE34F\",\"image\":\"1f63c.png\",\"sheet_x\":27,\"sheet_y\":34,\"short_name\":\"smirk_cat\",\"short_names\":[\"smirk_cat\"],\"category\":\"People\",\"sort_order\":83,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"thermometer\":{\"name\":\"Thermometer\",\"unified\":\"1F321\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f321.png\",\"sheet_x\":6,\"sheet_y\":13,\"short_name\":\"thermometer\",\"short_names\":[\"thermometer\"],\"category\":\"Objects\",\"sort_order\":83,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"cityscape\":{\"name\":\"Cityscape\",\"unified\":\"1F3D9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3d9.png\",\"sheet_x\":11,\"sheet_y\":10,\"short_name\":\"cityscape\",\"short_names\":[\"cityscape\"],\"category\":\"Places\",\"sort_order\":83,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ge\":{\"name\":\"Regional Indicator Symbol Letters GE\",\"unified\":\"1F1EC-1F1EA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1ea.png\",\"sheet_x\":34,\"sheet_y\":34,\"short_name\":\"flag-ge\",\"short_names\":[\"flag-ge\"],\"category\":\"Flags\",\"sort_order\":83,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"bamboo\":{\"name\":\"Pine Decoration\",\"unified\":\"1F38D\",\"variations\":[],\"docomo\":null,\"au\":\"EAE3\",\"softbank\":\"E436\",\"google\":\"FE518\",\"image\":\"1f38d.png\",\"sheet_x\":9,\"sheet_y\":1,\"short_name\":\"bamboo\",\"short_names\":[\"bamboo\"],\"category\":\"Nature\",\"sort_order\":83,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-de\":{\"name\":\"Regional Indicator Symbol Letters DE\",\"unified\":\"1F1E9-1F1EA\",\"variations\":[],\"docomo\":null,\"au\":\"EB0E\",\"softbank\":\"E50E\",\"google\":\"FE4E8\",\"image\":\"1f1e9-1f1ea.png\",\"sheet_x\":34,\"sheet_y\":9,\"short_name\":\"flag-de\",\"short_names\":[\"flag-de\",\"de\"],\"category\":\"Flags\",\"sort_order\":84,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"night_with_stars\":{\"name\":\"Night with Stars\",\"unified\":\"1F303\",\"variations\":[],\"docomo\":\"E6B3\",\"au\":\"EAF1\",\"softbank\":\"E44B\",\"google\":\"FE008\",\"image\":\"1f303.png\",\"sheet_x\":5,\"sheet_y\":24,\"short_name\":\"night_with_stars\",\"short_names\":[\"night_with_stars\"],\"category\":\"Places\",\"sort_order\":84,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"kissing_cat\":{\"name\":\"Kissing Cat Face with Closed Eyes\",\"unified\":\"1F63D\",\"variations\":[],\"docomo\":\"E726\",\"au\":\"EB60\",\"softbank\":\"E418\",\"google\":\"FE34B\",\"image\":\"1f63d.png\",\"sheet_x\":27,\"sheet_y\":35,\"short_name\":\"kissing_cat\",\"short_names\":[\"kissing_cat\"],\"category\":\"People\",\"sort_order\":84,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"tanabata_tree\":{\"name\":\"Tanabata Tree\",\"unified\":\"1F38B\",\"variations\":[],\"docomo\":null,\"au\":\"EB3D\",\"softbank\":null,\"google\":\"FE521\",\"image\":\"1f38b.png\",\"sheet_x\":8,\"sheet_y\":40,\"short_name\":\"tanabata_tree\",\"short_names\":[\"tanabata_tree\"],\"category\":\"Nature\",\"sort_order\":84,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"label\":{\"name\":\"Label\",\"unified\":\"1F3F7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3f7.png\",\"sheet_x\":11,\"sheet_y\":37,\"short_name\":\"label\",\"short_names\":[\"label\"],\"category\":\"Objects\",\"sort_order\":84,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"question\":{\"name\":\"Black Question Mark Ornament\",\"unified\":\"2753\",\"variations\":[],\"docomo\":null,\"au\":\"E483\",\"softbank\":\"E020\",\"google\":\"FEB09\",\"image\":\"2753.png\",\"sheet_x\":4,\"sheet_y\":5,\"short_name\":\"question\",\"short_names\":[\"question\"],\"category\":\"Symbols\",\"sort_order\":84,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"leaves\":{\"name\":\"Leaf Fluttering in Wind\",\"unified\":\"1F343\",\"variations\":[],\"docomo\":null,\"au\":\"E5CD\",\"softbank\":\"E447\",\"google\":\"FE043\",\"image\":\"1f343.png\",\"sheet_x\":7,\"sheet_y\":4,\"short_name\":\"leaves\",\"short_names\":[\"leaves\"],\"category\":\"Nature\",\"sort_order\":85,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"grey_question\":{\"name\":\"White Question Mark Ornament\",\"unified\":\"2754\",\"variations\":[],\"docomo\":null,\"au\":\"E483\",\"softbank\":\"E336\",\"google\":\"FEB0A\",\"image\":\"2754.png\",\"sheet_x\":4,\"sheet_y\":6,\"short_name\":\"grey_question\",\"short_names\":[\"grey_question\"],\"category\":\"Symbols\",\"sort_order\":85,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"scream_cat\":{\"name\":\"Weary Cat Face\",\"unified\":\"1F640\",\"variations\":[],\"docomo\":\"E6F3\",\"au\":\"EB66\",\"softbank\":\"E403\",\"google\":\"FE350\",\"image\":\"1f640.png\",\"sheet_x\":27,\"sheet_y\":38,\"short_name\":\"scream_cat\",\"short_names\":[\"scream_cat\"],\"category\":\"People\",\"sort_order\":85,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"bookmark\":{\"name\":\"Bookmark\",\"unified\":\"1F516\",\"variations\":[],\"docomo\":null,\"au\":\"EB07\",\"softbank\":null,\"google\":\"FEB8F\",\"image\":\"1f516.png\",\"sheet_x\":23,\"sheet_y\":6,\"short_name\":\"bookmark\",\"short_names\":[\"bookmark\"],\"category\":\"Objects\",\"sort_order\":85,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"bridge_at_night\":{\"name\":\"Bridge at Night\",\"unified\":\"1F309\",\"variations\":[],\"docomo\":\"E6B3\",\"au\":\"E4BF\",\"softbank\":\"E44B\",\"google\":\"FE010\",\"image\":\"1f309.png\",\"sheet_x\":5,\"sheet_y\":30,\"short_name\":\"bridge_at_night\",\"short_names\":[\"bridge_at_night\"],\"category\":\"Places\",\"sort_order\":85,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-gh\":{\"name\":\"Regional Indicator Symbol Letters GH\",\"unified\":\"1F1EC-1F1ED\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1ed.png\",\"sheet_x\":34,\"sheet_y\":37,\"short_name\":\"flag-gh\",\"short_names\":[\"flag-gh\"],\"category\":\"Flags\",\"sort_order\":85,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"milky_way\":{\"name\":\"Milky Way\",\"unified\":\"1F30C\",\"variations\":[],\"docomo\":\"E6B3\",\"au\":\"EB5F\",\"softbank\":\"E44B\",\"google\":\"FE03B\",\"image\":\"1f30c.png\",\"sheet_x\":5,\"sheet_y\":33,\"short_name\":\"milky_way\",\"short_names\":[\"milky_way\"],\"category\":\"Places\",\"sort_order\":86,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"toilet\":{\"name\":\"Toilet\",\"unified\":\"1F6BD\",\"variations\":[],\"docomo\":\"E66E\",\"au\":\"E4A5\",\"softbank\":\"E140\",\"google\":\"FE507\",\"image\":\"1f6bd.png\",\"sheet_x\":31,\"sheet_y\":11,\"short_name\":\"toilet\",\"short_names\":[\"toilet\"],\"category\":\"Objects\",\"sort_order\":86,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"crying_cat_face\":{\"name\":\"Crying Cat Face\",\"unified\":\"1F63F\",\"variations\":[],\"docomo\":\"E72E\",\"au\":\"EB68\",\"softbank\":\"E413\",\"google\":\"FE34D\",\"image\":\"1f63f.png\",\"sheet_x\":27,\"sheet_y\":37,\"short_name\":\"crying_cat_face\",\"short_names\":[\"crying_cat_face\"],\"category\":\"People\",\"sort_order\":86,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"bangbang\":{\"name\":\"Double Exclamation Mark\",\"unified\":\"203C\",\"variations\":[\"203C-FE0F\"],\"docomo\":\"E704\",\"au\":\"EB30\",\"softbank\":null,\"google\":\"FEB06\",\"image\":\"203c.png\",\"sheet_x\":0,\"sheet_y\":2,\"short_name\":\"bangbang\",\"short_names\":[\"bangbang\"],\"category\":\"Symbols\",\"sort_order\":86,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"fallen_leaf\":{\"name\":\"Fallen Leaf\",\"unified\":\"1F342\",\"variations\":[],\"docomo\":\"E747\",\"au\":\"E5CD\",\"softbank\":\"E119\",\"google\":\"FE042\",\"image\":\"1f342.png\",\"sheet_x\":7,\"sheet_y\":3,\"short_name\":\"fallen_leaf\",\"short_names\":[\"fallen_leaf\"],\"category\":\"Nature\",\"sort_order\":86,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-gi\":{\"name\":\"Regional Indicator Symbol Letters GI\",\"unified\":\"1F1EC-1F1EE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1ee.png\",\"sheet_x\":34,\"sheet_y\":38,\"short_name\":\"flag-gi\",\"short_names\":[\"flag-gi\"],\"category\":\"Flags\",\"sort_order\":86,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"pouting_cat\":{\"name\":\"Pouting Cat Face\",\"unified\":\"1F63E\",\"variations\":[],\"docomo\":\"E724\",\"au\":\"EB5E\",\"softbank\":\"E416\",\"google\":\"FE34E\",\"image\":\"1f63e.png\",\"sheet_x\":27,\"sheet_y\":36,\"short_name\":\"pouting_cat\",\"short_names\":[\"pouting_cat\"],\"category\":\"People\",\"sort_order\":87,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"maple_leaf\":{\"name\":\"Maple Leaf\",\"unified\":\"1F341\",\"variations\":[],\"docomo\":\"E747\",\"au\":\"E4CE\",\"softbank\":\"E118\",\"google\":\"FE03F\",\"image\":\"1f341.png\",\"sheet_x\":7,\"sheet_y\":2,\"short_name\":\"maple_leaf\",\"short_names\":[\"maple_leaf\"],\"category\":\"Nature\",\"sort_order\":87,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-gr\":{\"name\":\"Regional Indicator Symbol Letters GR\",\"unified\":\"1F1EC-1F1F7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1f7.png\",\"sheet_x\":35,\"sheet_y\":3,\"short_name\":\"flag-gr\",\"short_names\":[\"flag-gr\"],\"category\":\"Flags\",\"sort_order\":87,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"interrobang\":{\"name\":\"Exclamation Question Mark\",\"unified\":\"2049\",\"variations\":[\"2049-FE0F\"],\"docomo\":\"E703\",\"au\":\"EB2F\",\"softbank\":null,\"google\":\"FEB05\",\"image\":\"2049.png\",\"sheet_x\":0,\"sheet_y\":3,\"short_name\":\"interrobang\",\"short_names\":[\"interrobang\"],\"category\":\"Symbols\",\"sort_order\":87,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"stars\":{\"name\":\"Shooting Star\",\"unified\":\"1F320\",\"variations\":[],\"docomo\":null,\"au\":\"E468\",\"softbank\":null,\"google\":\"FEB6A\",\"image\":\"1f320.png\",\"sheet_x\":6,\"sheet_y\":12,\"short_name\":\"stars\",\"short_names\":[\"stars\"],\"category\":\"Places\",\"sort_order\":87,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"shower\":{\"name\":\"Shower\",\"unified\":\"1F6BF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6bf.png\",\"sheet_x\":31,\"sheet_y\":13,\"short_name\":\"shower\",\"short_names\":[\"shower\"],\"category\":\"Objects\",\"sort_order\":87,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"raised_hands\":{\"name\":\"Person Raising Both Hands in Celebration\",\"unified\":\"1F64C\",\"variations\":[],\"docomo\":null,\"au\":\"EB86\",\"softbank\":\"E427\",\"google\":\"FE358\",\"image\":\"1f64c.png\",\"sheet_x\":28,\"sheet_y\":29,\"short_name\":\"raised_hands\",\"short_names\":[\"raised_hands\"],\"category\":\"People\",\"sort_order\":88,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F64C-1F3FB\":{\"unified\":\"1F64C-1F3FB\",\"image\":\"1f64c-1f3fb.png\",\"sheet_x\":28,\"sheet_y\":30,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64C-1F3FC\":{\"unified\":\"1F64C-1F3FC\",\"image\":\"1f64c-1f3fc.png\",\"sheet_x\":28,\"sheet_y\":31,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64C-1F3FD\":{\"unified\":\"1F64C-1F3FD\",\"image\":\"1f64c-1f3fd.png\",\"sheet_x\":28,\"sheet_y\":32,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64C-1F3FE\":{\"unified\":\"1F64C-1F3FE\",\"image\":\"1f64c-1f3fe.png\",\"sheet_x\":28,\"sheet_y\":33,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64C-1F3FF\":{\"unified\":\"1F64C-1F3FF\",\"image\":\"1f64c-1f3ff.png\",\"sheet_x\":28,\"sheet_y\":34,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"flag-gl\":{\"name\":\"Regional Indicator Symbol Letters GL\",\"unified\":\"1F1EC-1F1F1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1f1.png\",\"sheet_x\":34,\"sheet_y\":39,\"short_name\":\"flag-gl\",\"short_names\":[\"flag-gl\"],\"category\":\"Flags\",\"sort_order\":88,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"ear_of_rice\":{\"name\":\"Ear of Rice\",\"unified\":\"1F33E\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":\"E444\",\"google\":\"FE049\",\"image\":\"1f33e.png\",\"sheet_x\":6,\"sheet_y\":40,\"short_name\":\"ear_of_rice\",\"short_names\":[\"ear_of_rice\"],\"category\":\"Nature\",\"sort_order\":88,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"sparkler\":{\"name\":\"Firework Sparkler\",\"unified\":\"1F387\",\"variations\":[],\"docomo\":null,\"au\":\"EAEB\",\"softbank\":\"E440\",\"google\":\"FE51D\",\"image\":\"1f387.png\",\"sheet_x\":8,\"sheet_y\":36,\"short_name\":\"sparkler\",\"short_names\":[\"sparkler\"],\"category\":\"Places\",\"sort_order\":88,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"bathtub\":{\"name\":\"Bathtub\",\"unified\":\"1F6C1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6c1.png\",\"sheet_x\":31,\"sheet_y\":20,\"short_name\":\"bathtub\",\"short_names\":[\"bathtub\"],\"category\":\"Objects\",\"sort_order\":88,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"hibiscus\":{\"name\":\"Hibiscus\",\"unified\":\"1F33A\",\"variations\":[],\"docomo\":null,\"au\":\"EA94\",\"softbank\":\"E303\",\"google\":\"FE045\",\"image\":\"1f33a.png\",\"sheet_x\":6,\"sheet_y\":36,\"short_name\":\"hibiscus\",\"short_names\":[\"hibiscus\"],\"category\":\"Nature\",\"sort_order\":89,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-gd\":{\"name\":\"Regional Indicator Symbol Letters GD\",\"unified\":\"1F1EC-1F1E9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1e9.png\",\"sheet_x\":34,\"sheet_y\":33,\"short_name\":\"flag-gd\",\"short_names\":[\"flag-gd\"],\"category\":\"Flags\",\"sort_order\":89,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"key\":{\"name\":\"Key\",\"unified\":\"1F511\",\"variations\":[],\"docomo\":\"E6D9\",\"au\":\"E519\",\"softbank\":\"E03F\",\"google\":\"FEB82\",\"image\":\"1f511.png\",\"sheet_x\":23,\"sheet_y\":1,\"short_name\":\"key\",\"short_names\":[\"key\"],\"category\":\"Objects\",\"sort_order\":89,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"low_brightness\":{\"name\":\"Low Brightness Symbol\",\"unified\":\"1F505\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f505.png\",\"sheet_x\":22,\"sheet_y\":30,\"short_name\":\"low_brightness\",\"short_names\":[\"low_brightness\"],\"category\":\"Symbols\",\"sort_order\":89,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"fireworks\":{\"name\":\"Fireworks\",\"unified\":\"1F386\",\"variations\":[],\"docomo\":null,\"au\":\"E5CC\",\"softbank\":\"E117\",\"google\":\"FE515\",\"image\":\"1f386.png\",\"sheet_x\":8,\"sheet_y\":35,\"short_name\":\"fireworks\",\"short_names\":[\"fireworks\"],\"category\":\"Places\",\"sort_order\":89,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"clap\":{\"name\":\"Clapping Hands Sign\",\"unified\":\"1F44F\",\"variations\":[],\"docomo\":null,\"au\":\"EAD3\",\"softbank\":\"E41F\",\"google\":\"FEB9E\",\"image\":\"1f44f.png\",\"sheet_x\":15,\"sheet_y\":16,\"short_name\":\"clap\",\"short_names\":[\"clap\"],\"category\":\"People\",\"sort_order\":89,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F44F-1F3FB\":{\"unified\":\"1F44F-1F3FB\",\"image\":\"1f44f-1f3fb.png\",\"sheet_x\":15,\"sheet_y\":17,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44F-1F3FC\":{\"unified\":\"1F44F-1F3FC\",\"image\":\"1f44f-1f3fc.png\",\"sheet_x\":15,\"sheet_y\":18,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44F-1F3FD\":{\"unified\":\"1F44F-1F3FD\",\"image\":\"1f44f-1f3fd.png\",\"sheet_x\":15,\"sheet_y\":19,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44F-1F3FE\":{\"unified\":\"1F44F-1F3FE\",\"image\":\"1f44f-1f3fe.png\",\"sheet_x\":15,\"sheet_y\":20,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44F-1F3FF\":{\"unified\":\"1F44F-1F3FF\",\"image\":\"1f44f-1f3ff.png\",\"sheet_x\":15,\"sheet_y\":21,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"flag-gp\":{\"name\":\"Regional Indicator Symbol Letters GP\",\"unified\":\"1F1EC-1F1F5\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1f5.png\",\"sheet_x\":35,\"sheet_y\":1,\"short_name\":\"flag-gp\",\"short_names\":[\"flag-gp\"],\"category\":\"Flags\",\"sort_order\":90,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"old_key\":{\"name\":\"Old Key\",\"unified\":\"1F5DD\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5dd.png\",\"sheet_x\":26,\"sheet_y\":2,\"short_name\":\"old_key\",\"short_names\":[\"old_key\"],\"category\":\"Objects\",\"sort_order\":90,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"high_brightness\":{\"name\":\"High Brightness Symbol\",\"unified\":\"1F506\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f506.png\",\"sheet_x\":22,\"sheet_y\":31,\"short_name\":\"high_brightness\",\"short_names\":[\"high_brightness\"],\"category\":\"Symbols\",\"sort_order\":90,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"rainbow\":{\"name\":\"Rainbow\",\"unified\":\"1F308\",\"variations\":[],\"docomo\":null,\"au\":\"EAF2\",\"softbank\":\"E44C\",\"google\":\"FE00D\",\"image\":\"1f308.png\",\"sheet_x\":5,\"sheet_y\":29,\"short_name\":\"rainbow\",\"short_names\":[\"rainbow\"],\"category\":\"Places\",\"sort_order\":90,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"wave\":{\"name\":\"Waving Hand Sign\",\"unified\":\"1F44B\",\"variations\":[],\"docomo\":\"E695\",\"au\":\"EAD6\",\"softbank\":\"E41E\",\"google\":\"FEB9D\",\"image\":\"1f44b.png\",\"sheet_x\":14,\"sheet_y\":33,\"short_name\":\"wave\",\"short_names\":[\"wave\"],\"category\":\"People\",\"sort_order\":90,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F44B-1F3FB\":{\"unified\":\"1F44B-1F3FB\",\"image\":\"1f44b-1f3fb.png\",\"sheet_x\":14,\"sheet_y\":34,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44B-1F3FC\":{\"unified\":\"1F44B-1F3FC\",\"image\":\"1f44b-1f3fc.png\",\"sheet_x\":14,\"sheet_y\":35,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44B-1F3FD\":{\"unified\":\"1F44B-1F3FD\",\"image\":\"1f44b-1f3fd.png\",\"sheet_x\":14,\"sheet_y\":36,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44B-1F3FE\":{\"unified\":\"1F44B-1F3FE\",\"image\":\"1f44b-1f3fe.png\",\"sheet_x\":14,\"sheet_y\":37,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44B-1F3FF\":{\"unified\":\"1F44B-1F3FF\",\"image\":\"1f44b-1f3ff.png\",\"sheet_x\":14,\"sheet_y\":38,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"sunflower\":{\"name\":\"Sunflower\",\"unified\":\"1F33B\",\"variations\":[],\"docomo\":null,\"au\":\"E4E3\",\"softbank\":\"E305\",\"google\":\"FE046\",\"image\":\"1f33b.png\",\"sheet_x\":6,\"sheet_y\":37,\"short_name\":\"sunflower\",\"short_names\":[\"sunflower\"],\"category\":\"Nature\",\"sort_order\":90,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"+1\":{\"name\":\"Thumbs Up Sign\",\"unified\":\"1F44D\",\"variations\":[],\"docomo\":\"E727\",\"au\":\"E4F9\",\"softbank\":\"E00E\",\"google\":\"FEB97\",\"image\":\"1f44d.png\",\"sheet_x\":15,\"sheet_y\":4,\"short_name\":\"+1\",\"short_names\":[\"+1\",\"thumbsup\"],\"category\":\"People\",\"sort_order\":91,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F44D-1F3FB\":{\"unified\":\"1F44D-1F3FB\",\"image\":\"1f44d-1f3fb.png\",\"sheet_x\":15,\"sheet_y\":5,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44D-1F3FC\":{\"unified\":\"1F44D-1F3FC\",\"image\":\"1f44d-1f3fc.png\",\"sheet_x\":15,\"sheet_y\":6,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44D-1F3FD\":{\"unified\":\"1F44D-1F3FD\",\"image\":\"1f44d-1f3fd.png\",\"sheet_x\":15,\"sheet_y\":7,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44D-1F3FE\":{\"unified\":\"1F44D-1F3FE\",\"image\":\"1f44d-1f3fe.png\",\"sheet_x\":15,\"sheet_y\":8,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44D-1F3FF\":{\"unified\":\"1F44D-1F3FF\",\"image\":\"1f44d-1f3ff.png\",\"sheet_x\":15,\"sheet_y\":9,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"couch_and_lamp\":{\"name\":\"Couch and Lamp\",\"unified\":\"1F6CB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6cb.png\",\"sheet_x\":31,\"sheet_y\":25,\"short_name\":\"couch_and_lamp\",\"short_names\":[\"couch_and_lamp\"],\"category\":\"Objects\",\"sort_order\":91,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"house_buildings\":{\"name\":\"House Buildings\",\"unified\":\"1F3D8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3d8.png\",\"sheet_x\":11,\"sheet_y\":9,\"short_name\":\"house_buildings\",\"short_names\":[\"house_buildings\"],\"category\":\"Places\",\"sort_order\":91,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"rose\":{\"name\":\"Rose\",\"unified\":\"1F339\",\"variations\":[],\"docomo\":null,\"au\":\"E5BA\",\"softbank\":\"E032\",\"google\":\"FE041\",\"image\":\"1f339.png\",\"sheet_x\":6,\"sheet_y\":35,\"short_name\":\"rose\",\"short_names\":[\"rose\"],\"category\":\"Nature\",\"sort_order\":91,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"trident\":{\"name\":\"Trident Emblem\",\"unified\":\"1F531\",\"variations\":[],\"docomo\":\"E71A\",\"au\":\"E5C9\",\"softbank\":\"E031\",\"google\":\"FE4D2\",\"image\":\"1f531.png\",\"sheet_x\":23,\"sheet_y\":33,\"short_name\":\"trident\",\"short_names\":[\"trident\"],\"category\":\"Symbols\",\"sort_order\":91,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-gu\":{\"name\":\"Regional Indicator Symbol Letters GU\",\"unified\":\"1F1EC-1F1FA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1fa.png\",\"sheet_x\":35,\"sheet_y\":6,\"short_name\":\"flag-gu\",\"short_names\":[\"flag-gu\"],\"category\":\"Flags\",\"sort_order\":91,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"european_castle\":{\"name\":\"European Castle\",\"unified\":\"1F3F0\",\"variations\":[],\"docomo\":null,\"au\":\"EAF8\",\"softbank\":\"E506\",\"google\":\"FE4BF\",\"image\":\"1f3f0.png\",\"sheet_x\":11,\"sheet_y\":33,\"short_name\":\"european_castle\",\"short_names\":[\"european_castle\"],\"category\":\"Places\",\"sort_order\":92,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"-1\":{\"name\":\"Thumbs Down Sign\",\"unified\":\"1F44E\",\"variations\":[],\"docomo\":\"E700\",\"au\":\"EAD5\",\"softbank\":\"E421\",\"google\":\"FEBA0\",\"image\":\"1f44e.png\",\"sheet_x\":15,\"sheet_y\":10,\"short_name\":\"-1\",\"short_names\":[\"-1\",\"thumbsdown\"],\"category\":\"People\",\"sort_order\":92,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F44E-1F3FB\":{\"unified\":\"1F44E-1F3FB\",\"image\":\"1f44e-1f3fb.png\",\"sheet_x\":15,\"sheet_y\":11,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44E-1F3FC\":{\"unified\":\"1F44E-1F3FC\",\"image\":\"1f44e-1f3fc.png\",\"sheet_x\":15,\"sheet_y\":12,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44E-1F3FD\":{\"unified\":\"1F44E-1F3FD\",\"image\":\"1f44e-1f3fd.png\",\"sheet_x\":15,\"sheet_y\":13,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44E-1F3FE\":{\"unified\":\"1F44E-1F3FE\",\"image\":\"1f44e-1f3fe.png\",\"sheet_x\":15,\"sheet_y\":14,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44E-1F3FF\":{\"unified\":\"1F44E-1F3FF\",\"image\":\"1f44e-1f3ff.png\",\"sheet_x\":15,\"sheet_y\":15,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"fleur_de_lis\":{\"name\":\"Fleur-De-Lis\",\"unified\":\"269C\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"269c.png\",\"sheet_x\":2,\"sheet_y\":11,\"short_name\":\"fleur_de_lis\",\"short_names\":[\"fleur_de_lis\"],\"category\":\"Symbols\",\"sort_order\":92,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"tulip\":{\"name\":\"Tulip\",\"unified\":\"1F337\",\"variations\":[],\"docomo\":\"E743\",\"au\":\"E4E4\",\"softbank\":\"E304\",\"google\":\"FE03D\",\"image\":\"1f337.png\",\"sheet_x\":6,\"sheet_y\":33,\"short_name\":\"tulip\",\"short_names\":[\"tulip\"],\"category\":\"Nature\",\"sort_order\":92,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"sleeping_accommodation\":{\"name\":\"Sleeping Accommodation\",\"unified\":\"1F6CC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6cc.png\",\"sheet_x\":31,\"sheet_y\":26,\"short_name\":\"sleeping_accommodation\",\"short_names\":[\"sleeping_accommodation\"],\"category\":\"Objects\",\"sort_order\":92,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-gt\":{\"name\":\"Regional Indicator Symbol Letters GT\",\"unified\":\"1F1EC-1F1F9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1f9.png\",\"sheet_x\":35,\"sheet_y\":5,\"short_name\":\"flag-gt\",\"short_names\":[\"flag-gt\"],\"category\":\"Flags\",\"sort_order\":92,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"part_alternation_mark\":{\"name\":\"Part Alternation Mark\",\"unified\":\"303D\",\"variations\":[\"303D-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":\"E12C\",\"google\":\"FE81B\",\"image\":\"303d.png\",\"sheet_x\":4,\"sheet_y\":27,\"short_name\":\"part_alternation_mark\",\"short_names\":[\"part_alternation_mark\"],\"category\":\"Symbols\",\"sort_order\":93,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"blossom\":{\"name\":\"Blossom\",\"unified\":\"1F33C\",\"variations\":[],\"docomo\":null,\"au\":\"EB49\",\"softbank\":\"E305\",\"google\":\"FE04D\",\"image\":\"1f33c.png\",\"sheet_x\":6,\"sheet_y\":38,\"short_name\":\"blossom\",\"short_names\":[\"blossom\"],\"category\":\"Nature\",\"sort_order\":93,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"bed\":{\"name\":\"Bed\",\"unified\":\"1F6CF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6cf.png\",\"sheet_x\":31,\"sheet_y\":29,\"short_name\":\"bed\",\"short_names\":[\"bed\"],\"category\":\"Objects\",\"sort_order\":93,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-gg\":{\"name\":\"Regional Indicator Symbol Letters GG\",\"unified\":\"1F1EC-1F1EC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1ec.png\",\"sheet_x\":34,\"sheet_y\":36,\"short_name\":\"flag-gg\",\"short_names\":[\"flag-gg\"],\"category\":\"Flags\",\"sort_order\":93,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"japanese_castle\":{\"name\":\"Japanese Castle\",\"unified\":\"1F3EF\",\"variations\":[],\"docomo\":null,\"au\":\"EAF7\",\"softbank\":\"E505\",\"google\":\"FE4BE\",\"image\":\"1f3ef.png\",\"sheet_x\":11,\"sheet_y\":32,\"short_name\":\"japanese_castle\",\"short_names\":[\"japanese_castle\"],\"category\":\"Places\",\"sort_order\":93,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"facepunch\":{\"name\":\"Fisted Hand Sign\",\"unified\":\"1F44A\",\"variations\":[],\"docomo\":\"E6FD\",\"au\":\"E4F3\",\"softbank\":\"E00D\",\"google\":\"FEB96\",\"image\":\"1f44a.png\",\"sheet_x\":14,\"sheet_y\":27,\"short_name\":\"facepunch\",\"short_names\":[\"facepunch\",\"punch\"],\"category\":\"People\",\"sort_order\":93,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F44A-1F3FB\":{\"unified\":\"1F44A-1F3FB\",\"image\":\"1f44a-1f3fb.png\",\"sheet_x\":14,\"sheet_y\":28,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44A-1F3FC\":{\"unified\":\"1F44A-1F3FC\",\"image\":\"1f44a-1f3fc.png\",\"sheet_x\":14,\"sheet_y\":29,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44A-1F3FD\":{\"unified\":\"1F44A-1F3FD\",\"image\":\"1f44a-1f3fd.png\",\"sheet_x\":14,\"sheet_y\":30,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44A-1F3FE\":{\"unified\":\"1F44A-1F3FE\",\"image\":\"1f44a-1f3fe.png\",\"sheet_x\":14,\"sheet_y\":31,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44A-1F3FF\":{\"unified\":\"1F44A-1F3FF\",\"image\":\"1f44a-1f3ff.png\",\"sheet_x\":14,\"sheet_y\":32,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"stadium\":{\"name\":\"Stadium\",\"unified\":\"1F3DF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3df.png\",\"sheet_x\":11,\"sheet_y\":16,\"short_name\":\"stadium\",\"short_names\":[\"stadium\"],\"category\":\"Places\",\"sort_order\":94,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-gn\":{\"name\":\"Regional Indicator Symbol Letters GN\",\"unified\":\"1F1EC-1F1F3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1f3.png\",\"sheet_x\":35,\"sheet_y\":0,\"short_name\":\"flag-gn\",\"short_names\":[\"flag-gn\"],\"category\":\"Flags\",\"sort_order\":94,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"warning\":{\"name\":\"Warning Sign\",\"unified\":\"26A0\",\"variations\":[\"26A0-FE0F\"],\"docomo\":\"E737\",\"au\":\"E481\",\"softbank\":\"E252\",\"google\":\"FEB23\",\"image\":\"26a0.png\",\"sheet_x\":2,\"sheet_y\":12,\"short_name\":\"warning\",\"short_names\":[\"warning\"],\"category\":\"Symbols\",\"sort_order\":94,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"door\":{\"name\":\"Door\",\"unified\":\"1F6AA\",\"variations\":[],\"docomo\":\"E714\",\"au\":null,\"softbank\":null,\"google\":\"FE4F3\",\"image\":\"1f6aa.png\",\"sheet_x\":30,\"sheet_y\":18,\"short_name\":\"door\",\"short_names\":[\"door\"],\"category\":\"Objects\",\"sort_order\":94,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"cherry_blossom\":{\"name\":\"Cherry Blossom\",\"unified\":\"1F338\",\"variations\":[],\"docomo\":\"E748\",\"au\":\"E4CA\",\"softbank\":\"E030\",\"google\":\"FE040\",\"image\":\"1f338.png\",\"sheet_x\":6,\"sheet_y\":34,\"short_name\":\"cherry_blossom\",\"short_names\":[\"cherry_blossom\"],\"category\":\"Nature\",\"sort_order\":94,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"fist\":{\"name\":\"Raised Fist\",\"unified\":\"270A\",\"variations\":[],\"docomo\":\"E693\",\"au\":\"EB83\",\"softbank\":\"E010\",\"google\":\"FEB93\",\"image\":\"270a.png\",\"sheet_x\":3,\"sheet_y\":9,\"short_name\":\"fist\",\"short_names\":[\"fist\"],\"category\":\"People\",\"sort_order\":94,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"270A-1F3FB\":{\"unified\":\"270A-1F3FB\",\"image\":\"270a-1f3fb.png\",\"sheet_x\":3,\"sheet_y\":10,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"270A-1F3FC\":{\"unified\":\"270A-1F3FC\",\"image\":\"270a-1f3fc.png\",\"sheet_x\":3,\"sheet_y\":11,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"270A-1F3FD\":{\"unified\":\"270A-1F3FD\",\"image\":\"270a-1f3fd.png\",\"sheet_x\":3,\"sheet_y\":12,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"270A-1F3FE\":{\"unified\":\"270A-1F3FE\",\"image\":\"270a-1f3fe.png\",\"sheet_x\":3,\"sheet_y\":13,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"270A-1F3FF\":{\"unified\":\"270A-1F3FF\",\"image\":\"270a-1f3ff.png\",\"sheet_x\":3,\"sheet_y\":14,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"statue_of_liberty\":{\"name\":\"Statue of Liberty\",\"unified\":\"1F5FD\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":\"E51D\",\"google\":\"FE4C6\",\"image\":\"1f5fd.png\",\"sheet_x\":26,\"sheet_y\":12,\"short_name\":\"statue_of_liberty\",\"short_names\":[\"statue_of_liberty\"],\"category\":\"Places\",\"sort_order\":95,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"v\":{\"name\":\"Victory Hand\",\"unified\":\"270C\",\"variations\":[\"270C-FE0F\"],\"docomo\":\"E694\",\"au\":\"E5A6\",\"softbank\":\"E011\",\"google\":\"FEB94\",\"image\":\"270c.png\",\"sheet_x\":3,\"sheet_y\":21,\"short_name\":\"v\",\"short_names\":[\"v\"],\"category\":\"People\",\"sort_order\":95,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"270C-1F3FB\":{\"unified\":\"270C-1F3FB\",\"image\":\"270c-1f3fb.png\",\"sheet_x\":3,\"sheet_y\":22,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"270C-1F3FC\":{\"unified\":\"270C-1F3FC\",\"image\":\"270c-1f3fc.png\",\"sheet_x\":3,\"sheet_y\":23,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"270C-1F3FD\":{\"unified\":\"270C-1F3FD\",\"image\":\"270c-1f3fd.png\",\"sheet_x\":3,\"sheet_y\":24,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"270C-1F3FE\":{\"unified\":\"270C-1F3FE\",\"image\":\"270c-1f3fe.png\",\"sheet_x\":3,\"sheet_y\":25,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"270C-1F3FF\":{\"unified\":\"270C-1F3FF\",\"image\":\"270c-1f3ff.png\",\"sheet_x\":3,\"sheet_y\":26,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"children_crossing\":{\"name\":\"Children Crossing\",\"unified\":\"1F6B8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6b8.png\",\"sheet_x\":31,\"sheet_y\":6,\"short_name\":\"children_crossing\",\"short_names\":[\"children_crossing\"],\"category\":\"Symbols\",\"sort_order\":95,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"bouquet\":{\"name\":\"Bouquet\",\"unified\":\"1F490\",\"variations\":[],\"docomo\":null,\"au\":\"EA95\",\"softbank\":\"E306\",\"google\":\"FE828\",\"image\":\"1f490.png\",\"sheet_x\":19,\"sheet_y\":32,\"short_name\":\"bouquet\",\"short_names\":[\"bouquet\"],\"category\":\"Nature\",\"sort_order\":95,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"bellhop_bell\":{\"name\":\"Bellhop Bell\",\"unified\":\"1F6CE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6ce.png\",\"sheet_x\":31,\"sheet_y\":28,\"short_name\":\"bellhop_bell\",\"short_names\":[\"bellhop_bell\"],\"category\":\"Objects\",\"sort_order\":95,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-gw\":{\"name\":\"Regional Indicator Symbol Letters GW\",\"unified\":\"1F1EC-1F1FC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1fc.png\",\"sheet_x\":35,\"sheet_y\":7,\"short_name\":\"flag-gw\",\"short_names\":[\"flag-gw\"],\"category\":\"Flags\",\"sort_order\":95,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"beginner\":{\"name\":\"Japanese Symbol for Beginner\",\"unified\":\"1F530\",\"variations\":[],\"docomo\":null,\"au\":\"E480\",\"softbank\":\"E209\",\"google\":\"FE044\",\"image\":\"1f530.png\",\"sheet_x\":23,\"sheet_y\":32,\"short_name\":\"beginner\",\"short_names\":[\"beginner\"],\"category\":\"Symbols\",\"sort_order\":96,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"house\":{\"name\":\"House Building\",\"unified\":\"1F3E0\",\"variations\":[],\"docomo\":\"E663\",\"au\":\"E4AB\",\"softbank\":\"E036\",\"google\":\"FE4B0\",\"image\":\"1f3e0.png\",\"sheet_x\":11,\"sheet_y\":17,\"short_name\":\"house\",\"short_names\":[\"house\"],\"category\":\"Places\",\"sort_order\":96,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"mushroom\":{\"name\":\"Mushroom\",\"unified\":\"1F344\",\"variations\":[],\"docomo\":null,\"au\":\"EB37\",\"softbank\":null,\"google\":\"FE04B\",\"image\":\"1f344.png\",\"sheet_x\":7,\"sheet_y\":5,\"short_name\":\"mushroom\",\"short_names\":[\"mushroom\"],\"category\":\"Nature\",\"sort_order\":96,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"frame_with_picture\":{\"name\":\"Frame with Picture\",\"unified\":\"1F5BC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5bc.png\",\"sheet_x\":25,\"sheet_y\":35,\"short_name\":\"frame_with_picture\",\"short_names\":[\"frame_with_picture\"],\"category\":\"Objects\",\"sort_order\":96,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"ok_hand\":{\"name\":\"Ok Hand Sign\",\"unified\":\"1F44C\",\"variations\":[],\"docomo\":\"E70B\",\"au\":\"EAD4\",\"softbank\":\"E420\",\"google\":\"FEB9F\",\"image\":\"1f44c.png\",\"sheet_x\":14,\"sheet_y\":39,\"short_name\":\"ok_hand\",\"short_names\":[\"ok_hand\"],\"category\":\"People\",\"sort_order\":96,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F44C-1F3FB\":{\"unified\":\"1F44C-1F3FB\",\"image\":\"1f44c-1f3fb.png\",\"sheet_x\":14,\"sheet_y\":40,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44C-1F3FC\":{\"unified\":\"1F44C-1F3FC\",\"image\":\"1f44c-1f3fc.png\",\"sheet_x\":15,\"sheet_y\":0,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44C-1F3FD\":{\"unified\":\"1F44C-1F3FD\",\"image\":\"1f44c-1f3fd.png\",\"sheet_x\":15,\"sheet_y\":1,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44C-1F3FE\":{\"unified\":\"1F44C-1F3FE\",\"image\":\"1f44c-1f3fe.png\",\"sheet_x\":15,\"sheet_y\":2,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F44C-1F3FF\":{\"unified\":\"1F44C-1F3FF\",\"image\":\"1f44c-1f3ff.png\",\"sheet_x\":15,\"sheet_y\":3,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"flag-gy\":{\"name\":\"Regional Indicator Symbol Letters GY\",\"unified\":\"1F1EC-1F1FE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1fe.png\",\"sheet_x\":35,\"sheet_y\":8,\"short_name\":\"flag-gy\",\"short_names\":[\"flag-gy\"],\"category\":\"Flags\",\"sort_order\":96,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ht\":{\"name\":\"Regional Indicator Symbol Letters HT\",\"unified\":\"1F1ED-1F1F9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ed-1f1f9.png\",\"sheet_x\":35,\"sheet_y\":13,\"short_name\":\"flag-ht\",\"short_names\":[\"flag-ht\"],\"category\":\"Flags\",\"sort_order\":97,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"house_with_garden\":{\"name\":\"House with Garden\",\"unified\":\"1F3E1\",\"variations\":[],\"docomo\":\"E663\",\"au\":\"EB09\",\"softbank\":\"E036\",\"google\":\"FE4B1\",\"image\":\"1f3e1.png\",\"sheet_x\":11,\"sheet_y\":18,\"short_name\":\"house_with_garden\",\"short_names\":[\"house_with_garden\"],\"category\":\"Places\",\"sort_order\":97,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"world_map\":{\"name\":\"World Map\",\"unified\":\"1F5FA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5fa.png\",\"sheet_x\":26,\"sheet_y\":9,\"short_name\":\"world_map\",\"short_names\":[\"world_map\"],\"category\":\"Objects\",\"sort_order\":97,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"chestnut\":{\"name\":\"Chestnut\",\"unified\":\"1F330\",\"variations\":[],\"docomo\":null,\"au\":\"EB38\",\"softbank\":null,\"google\":\"FE04C\",\"image\":\"1f330.png\",\"sheet_x\":6,\"sheet_y\":26,\"short_name\":\"chestnut\",\"short_names\":[\"chestnut\"],\"category\":\"Nature\",\"sort_order\":97,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"hand\":{\"name\":\"Raised Hand\",\"unified\":\"270B\",\"variations\":[],\"docomo\":\"E695\",\"au\":\"E5A7\",\"softbank\":\"E012\",\"google\":\"FEB95\",\"image\":\"270b.png\",\"sheet_x\":3,\"sheet_y\":15,\"short_name\":\"hand\",\"short_names\":[\"hand\",\"raised_hand\"],\"category\":\"People\",\"sort_order\":97,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"270B-1F3FB\":{\"unified\":\"270B-1F3FB\",\"image\":\"270b-1f3fb.png\",\"sheet_x\":3,\"sheet_y\":16,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"270B-1F3FC\":{\"unified\":\"270B-1F3FC\",\"image\":\"270b-1f3fc.png\",\"sheet_x\":3,\"sheet_y\":17,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"270B-1F3FD\":{\"unified\":\"270B-1F3FD\",\"image\":\"270b-1f3fd.png\",\"sheet_x\":3,\"sheet_y\":18,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"270B-1F3FE\":{\"unified\":\"270B-1F3FE\",\"image\":\"270b-1f3fe.png\",\"sheet_x\":3,\"sheet_y\":19,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"270B-1F3FF\":{\"unified\":\"270B-1F3FF\",\"image\":\"270b-1f3ff.png\",\"sheet_x\":3,\"sheet_y\":20,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"recycle\":{\"name\":\"Black Universal Recycling Symbol\",\"unified\":\"267B\",\"variations\":[\"267B-FE0F\"],\"docomo\":\"E735\",\"au\":\"EB79\",\"softbank\":null,\"google\":\"FEB2C\",\"image\":\"267b.png\",\"sheet_x\":2,\"sheet_y\":2,\"short_name\":\"recycle\",\"short_names\":[\"recycle\"],\"category\":\"Symbols\",\"sort_order\":97,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"umbrella_on_ground\":{\"name\":\"Umbrella on Ground\",\"unified\":\"26F1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"26f1.png\",\"sheet_x\":2,\"sheet_y\":31,\"short_name\":\"umbrella_on_ground\",\"short_names\":[\"umbrella_on_ground\"],\"category\":\"Objects\",\"sort_order\":98,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"jack_o_lantern\":{\"name\":\"Jack-O-Lantern\",\"unified\":\"1F383\",\"variations\":[],\"docomo\":null,\"au\":\"EAEE\",\"softbank\":\"E445\",\"google\":\"FE51F\",\"image\":\"1f383.png\",\"sheet_x\":8,\"sheet_y\":27,\"short_name\":\"jack_o_lantern\",\"short_names\":[\"jack_o_lantern\"],\"category\":\"Nature\",\"sort_order\":98,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"open_hands\":{\"name\":\"Open Hands Sign\",\"unified\":\"1F450\",\"variations\":[],\"docomo\":\"E695\",\"au\":\"EAD6\",\"softbank\":\"E422\",\"google\":\"FEBA1\",\"image\":\"1f450.png\",\"sheet_x\":15,\"sheet_y\":22,\"short_name\":\"open_hands\",\"short_names\":[\"open_hands\"],\"category\":\"People\",\"sort_order\":98,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F450-1F3FB\":{\"unified\":\"1F450-1F3FB\",\"image\":\"1f450-1f3fb.png\",\"sheet_x\":15,\"sheet_y\":23,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F450-1F3FC\":{\"unified\":\"1F450-1F3FC\",\"image\":\"1f450-1f3fc.png\",\"sheet_x\":15,\"sheet_y\":24,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F450-1F3FD\":{\"unified\":\"1F450-1F3FD\",\"image\":\"1f450-1f3fd.png\",\"sheet_x\":15,\"sheet_y\":25,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F450-1F3FE\":{\"unified\":\"1F450-1F3FE\",\"image\":\"1f450-1f3fe.png\",\"sheet_x\":15,\"sheet_y\":26,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F450-1F3FF\":{\"unified\":\"1F450-1F3FF\",\"image\":\"1f450-1f3ff.png\",\"sheet_x\":15,\"sheet_y\":27,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"derelict_house_building\":{\"name\":\"Derelict House Building\",\"unified\":\"1F3DA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3da.png\",\"sheet_x\":11,\"sheet_y\":11,\"short_name\":\"derelict_house_building\",\"short_names\":[\"derelict_house_building\"],\"category\":\"Places\",\"sort_order\":98,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"u6307\":{\"name\":\"Squared Cjk Unified Ideograph-6307\",\"unified\":\"1F22F\",\"variations\":[\"1F22F-FE0F\"],\"docomo\":null,\"au\":\"EA8B\",\"softbank\":\"E22C\",\"google\":\"FEB40\",\"image\":\"1f22f.png\",\"sheet_x\":5,\"sheet_y\":9,\"short_name\":\"u6307\",\"short_names\":[\"u6307\"],\"category\":\"Symbols\",\"sort_order\":98,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-hn\":{\"name\":\"Regional Indicator Symbol Letters HN\",\"unified\":\"1F1ED-1F1F3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ed-1f1f3.png\",\"sheet_x\":35,\"sheet_y\":11,\"short_name\":\"flag-hn\",\"short_names\":[\"flag-hn\"],\"category\":\"Flags\",\"sort_order\":98,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"shell\":{\"name\":\"Spiral Shell\",\"unified\":\"1F41A\",\"variations\":[],\"docomo\":null,\"au\":\"EAEC\",\"softbank\":\"E441\",\"google\":\"FE1C6\",\"image\":\"1f41a.png\",\"sheet_x\":12,\"sheet_y\":31,\"short_name\":\"shell\",\"short_names\":[\"shell\"],\"category\":\"Nature\",\"sort_order\":99,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-hk\":{\"name\":\"Regional Indicator Symbol Letters HK\",\"unified\":\"1F1ED-1F1F0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ed-1f1f0.png\",\"sheet_x\":35,\"sheet_y\":9,\"short_name\":\"flag-hk\",\"short_names\":[\"flag-hk\"],\"category\":\"Flags\",\"sort_order\":99,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"moyai\":{\"name\":\"Moyai\",\"unified\":\"1F5FF\",\"variations\":[],\"docomo\":null,\"au\":\"EB6C\",\"softbank\":null,\"google\":\"FE4C8\",\"image\":\"1f5ff.png\",\"sheet_x\":26,\"sheet_y\":14,\"short_name\":\"moyai\",\"short_names\":[\"moyai\"],\"category\":\"Objects\",\"sort_order\":99,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"muscle\":{\"name\":\"Flexed Biceps\",\"unified\":\"1F4AA\",\"variations\":[],\"docomo\":null,\"au\":\"E4E9\",\"softbank\":\"E14C\",\"google\":\"FEB5E\",\"image\":\"1f4aa.png\",\"sheet_x\":20,\"sheet_y\":17,\"short_name\":\"muscle\",\"short_names\":[\"muscle\"],\"category\":\"People\",\"sort_order\":99,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F4AA-1F3FB\":{\"unified\":\"1F4AA-1F3FB\",\"image\":\"1f4aa-1f3fb.png\",\"sheet_x\":20,\"sheet_y\":18,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F4AA-1F3FC\":{\"unified\":\"1F4AA-1F3FC\",\"image\":\"1f4aa-1f3fc.png\",\"sheet_x\":20,\"sheet_y\":19,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F4AA-1F3FD\":{\"unified\":\"1F4AA-1F3FD\",\"image\":\"1f4aa-1f3fd.png\",\"sheet_x\":20,\"sheet_y\":20,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F4AA-1F3FE\":{\"unified\":\"1F4AA-1F3FE\",\"image\":\"1f4aa-1f3fe.png\",\"sheet_x\":20,\"sheet_y\":21,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F4AA-1F3FF\":{\"unified\":\"1F4AA-1F3FF\",\"image\":\"1f4aa-1f3ff.png\",\"sheet_x\":20,\"sheet_y\":22,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"chart\":{\"name\":\"Chart with Upwards Trend and Yen Sign\",\"unified\":\"1F4B9\",\"variations\":[],\"docomo\":null,\"au\":\"E5DC\",\"softbank\":\"E14A\",\"google\":\"FE4DF\",\"image\":\"1f4b9.png\",\"sheet_x\":20,\"sheet_y\":37,\"short_name\":\"chart\",\"short_names\":[\"chart\"],\"category\":\"Symbols\",\"sort_order\":99,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"office\":{\"name\":\"Office Building\",\"unified\":\"1F3E2\",\"variations\":[],\"docomo\":\"E664\",\"au\":\"E4AD\",\"softbank\":\"E038\",\"google\":\"FE4B2\",\"image\":\"1f3e2.png\",\"sheet_x\":11,\"sheet_y\":19,\"short_name\":\"office\",\"short_names\":[\"office\"],\"category\":\"Places\",\"sort_order\":99,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"shopping_bags\":{\"name\":\"Shopping Bags\",\"unified\":\"1F6CD\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6cd.png\",\"sheet_x\":31,\"sheet_y\":27,\"short_name\":\"shopping_bags\",\"short_names\":[\"shopping_bags\"],\"category\":\"Objects\",\"sort_order\":100,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"department_store\":{\"name\":\"Department Store\",\"unified\":\"1F3EC\",\"variations\":[],\"docomo\":null,\"au\":\"EAF6\",\"softbank\":\"E504\",\"google\":\"FE4BD\",\"image\":\"1f3ec.png\",\"sheet_x\":11,\"sheet_y\":29,\"short_name\":\"department_store\",\"short_names\":[\"department_store\"],\"category\":\"Places\",\"sort_order\":100,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"pray\":{\"name\":\"Person with Folded Hands\",\"unified\":\"1F64F\",\"variations\":[],\"docomo\":null,\"au\":\"EAD2\",\"softbank\":\"E41D\",\"google\":\"FE35B\",\"image\":\"1f64f.png\",\"sheet_x\":29,\"sheet_y\":6,\"short_name\":\"pray\",\"short_names\":[\"pray\"],\"category\":\"People\",\"sort_order\":100,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F64F-1F3FB\":{\"unified\":\"1F64F-1F3FB\",\"image\":\"1f64f-1f3fb.png\",\"sheet_x\":29,\"sheet_y\":7,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64F-1F3FC\":{\"unified\":\"1F64F-1F3FC\",\"image\":\"1f64f-1f3fc.png\",\"sheet_x\":29,\"sheet_y\":8,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64F-1F3FD\":{\"unified\":\"1F64F-1F3FD\",\"image\":\"1f64f-1f3fd.png\",\"sheet_x\":29,\"sheet_y\":9,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64F-1F3FE\":{\"unified\":\"1F64F-1F3FE\",\"image\":\"1f64f-1f3fe.png\",\"sheet_x\":29,\"sheet_y\":10,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64F-1F3FF\":{\"unified\":\"1F64F-1F3FF\",\"image\":\"1f64f-1f3ff.png\",\"sheet_x\":29,\"sheet_y\":11,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"flag-hu\":{\"name\":\"Regional Indicator Symbol Letters HU\",\"unified\":\"1F1ED-1F1FA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ed-1f1fa.png\",\"sheet_x\":35,\"sheet_y\":14,\"short_name\":\"flag-hu\",\"short_names\":[\"flag-hu\"],\"category\":\"Flags\",\"sort_order\":100,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"sparkle\":{\"name\":\"Sparkle\",\"unified\":\"2747\",\"variations\":[\"2747-FE0F\"],\"docomo\":\"E6FA\",\"au\":\"E46C\",\"softbank\":\"E32E\",\"google\":\"FEB77\",\"image\":\"2747.png\",\"sheet_x\":4,\"sheet_y\":2,\"short_name\":\"sparkle\",\"short_names\":[\"sparkle\"],\"category\":\"Symbols\",\"sort_order\":100,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"spider_web\":{\"name\":\"Spider Web\",\"unified\":\"1F578\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f578.png\",\"sheet_x\":25,\"sheet_y\":6,\"short_name\":\"spider_web\",\"short_names\":[\"spider_web\"],\"category\":\"Nature\",\"sort_order\":100,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"point_up\":{\"name\":\"White Up Pointing Index\",\"unified\":\"261D\",\"variations\":[\"261D-FE0F\"],\"docomo\":null,\"au\":\"E4F6\",\"softbank\":\"E00F\",\"google\":\"FEB98\",\"image\":\"261d.png\",\"sheet_x\":1,\"sheet_y\":10,\"short_name\":\"point_up\",\"short_names\":[\"point_up\"],\"category\":\"People\",\"sort_order\":101,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"261D-1F3FB\":{\"unified\":\"261D-1F3FB\",\"image\":\"261d-1f3fb.png\",\"sheet_x\":1,\"sheet_y\":11,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"261D-1F3FC\":{\"unified\":\"261D-1F3FC\",\"image\":\"261d-1f3fc.png\",\"sheet_x\":1,\"sheet_y\":12,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"261D-1F3FD\":{\"unified\":\"261D-1F3FD\",\"image\":\"261d-1f3fd.png\",\"sheet_x\":1,\"sheet_y\":13,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"261D-1F3FE\":{\"unified\":\"261D-1F3FE\",\"image\":\"261d-1f3fe.png\",\"sheet_x\":1,\"sheet_y\":14,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"261D-1F3FF\":{\"unified\":\"261D-1F3FF\",\"image\":\"261d-1f3ff.png\",\"sheet_x\":1,\"sheet_y\":15,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"eight_spoked_asterisk\":{\"name\":\"Eight Spoked Asterisk\",\"unified\":\"2733\",\"variations\":[\"2733-FE0F\"],\"docomo\":\"E6F8\",\"au\":\"E53E\",\"softbank\":\"E206\",\"google\":\"FEB62\",\"image\":\"2733.png\",\"sheet_x\":3,\"sheet_y\":40,\"short_name\":\"eight_spoked_asterisk\",\"short_names\":[\"eight_spoked_asterisk\"],\"category\":\"Symbols\",\"sort_order\":101,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-is\":{\"name\":\"Regional Indicator Symbol Letters IS\",\"unified\":\"1F1EE-1F1F8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ee-1f1f8.png\",\"sheet_x\":35,\"sheet_y\":24,\"short_name\":\"flag-is\",\"short_names\":[\"flag-is\"],\"category\":\"Flags\",\"sort_order\":101,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"post_office\":{\"name\":\"Japanese Post Office\",\"unified\":\"1F3E3\",\"variations\":[],\"docomo\":\"E665\",\"au\":\"E5DE\",\"softbank\":\"E153\",\"google\":\"FE4B3\",\"image\":\"1f3e3.png\",\"sheet_x\":11,\"sheet_y\":20,\"short_name\":\"post_office\",\"short_names\":[\"post_office\"],\"category\":\"Places\",\"sort_order\":101,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"earth_americas\":{\"name\":\"Earth Globe Americas\",\"unified\":\"1F30E\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f30e.png\",\"sheet_x\":5,\"sheet_y\":35,\"short_name\":\"earth_americas\",\"short_names\":[\"earth_americas\"],\"category\":\"Nature\",\"sort_order\":101,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"balloon\":{\"name\":\"Balloon\",\"unified\":\"1F388\",\"variations\":[],\"docomo\":null,\"au\":\"EA9B\",\"softbank\":\"E310\",\"google\":\"FE516\",\"image\":\"1f388.png\",\"sheet_x\":8,\"sheet_y\":37,\"short_name\":\"balloon\",\"short_names\":[\"balloon\"],\"category\":\"Objects\",\"sort_order\":101,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"european_post_office\":{\"name\":\"European Post Office\",\"unified\":\"1F3E4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3e4.png\",\"sheet_x\":11,\"sheet_y\":21,\"short_name\":\"european_post_office\",\"short_names\":[\"european_post_office\"],\"category\":\"Places\",\"sort_order\":102,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"point_up_2\":{\"name\":\"White Up Pointing Backhand Index\",\"unified\":\"1F446\",\"variations\":[],\"docomo\":null,\"au\":\"EA8D\",\"softbank\":\"E22E\",\"google\":\"FEB99\",\"image\":\"1f446.png\",\"sheet_x\":14,\"sheet_y\":3,\"short_name\":\"point_up_2\",\"short_names\":[\"point_up_2\"],\"category\":\"People\",\"sort_order\":102,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F446-1F3FB\":{\"unified\":\"1F446-1F3FB\",\"image\":\"1f446-1f3fb.png\",\"sheet_x\":14,\"sheet_y\":4,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F446-1F3FC\":{\"unified\":\"1F446-1F3FC\",\"image\":\"1f446-1f3fc.png\",\"sheet_x\":14,\"sheet_y\":5,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F446-1F3FD\":{\"unified\":\"1F446-1F3FD\",\"image\":\"1f446-1f3fd.png\",\"sheet_x\":14,\"sheet_y\":6,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F446-1F3FE\":{\"unified\":\"1F446-1F3FE\",\"image\":\"1f446-1f3fe.png\",\"sheet_x\":14,\"sheet_y\":7,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F446-1F3FF\":{\"unified\":\"1F446-1F3FF\",\"image\":\"1f446-1f3ff.png\",\"sheet_x\":14,\"sheet_y\":8,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"earth_africa\":{\"name\":\"Earth Globe Europe-Africa\",\"unified\":\"1F30D\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f30d.png\",\"sheet_x\":5,\"sheet_y\":34,\"short_name\":\"earth_africa\",\"short_names\":[\"earth_africa\"],\"category\":\"Nature\",\"sort_order\":102,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"negative_squared_cross_mark\":{\"name\":\"Negative Squared Cross Mark\",\"unified\":\"274E\",\"variations\":[],\"docomo\":null,\"au\":\"E551\",\"softbank\":\"E333\",\"google\":\"FEB46\",\"image\":\"274e.png\",\"sheet_x\":4,\"sheet_y\":4,\"short_name\":\"negative_squared_cross_mark\",\"short_names\":[\"negative_squared_cross_mark\"],\"category\":\"Symbols\",\"sort_order\":102,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flags\":{\"name\":\"Carp Streamer\",\"unified\":\"1F38F\",\"variations\":[],\"docomo\":null,\"au\":\"EAE7\",\"softbank\":\"E43B\",\"google\":\"FE51C\",\"image\":\"1f38f.png\",\"sheet_x\":9,\"sheet_y\":3,\"short_name\":\"flags\",\"short_names\":[\"flags\"],\"category\":\"Objects\",\"sort_order\":102,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-in\":{\"name\":\"Regional Indicator Symbol Letters IN\",\"unified\":\"1F1EE-1F1F3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ee-1f1f3.png\",\"sheet_x\":35,\"sheet_y\":20,\"short_name\":\"flag-in\",\"short_names\":[\"flag-in\"],\"category\":\"Flags\",\"sort_order\":102,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"hospital\":{\"name\":\"Hospital\",\"unified\":\"1F3E5\",\"variations\":[],\"docomo\":\"E666\",\"au\":\"E5DF\",\"softbank\":\"E155\",\"google\":\"FE4B4\",\"image\":\"1f3e5.png\",\"sheet_x\":11,\"sheet_y\":22,\"short_name\":\"hospital\",\"short_names\":[\"hospital\"],\"category\":\"Places\",\"sort_order\":103,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"point_down\":{\"name\":\"White Down Pointing Backhand Index\",\"unified\":\"1F447\",\"variations\":[],\"docomo\":null,\"au\":\"EA8E\",\"softbank\":\"E22F\",\"google\":\"FEB9A\",\"image\":\"1f447.png\",\"sheet_x\":14,\"sheet_y\":9,\"short_name\":\"point_down\",\"short_names\":[\"point_down\"],\"category\":\"People\",\"sort_order\":103,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F447-1F3FB\":{\"unified\":\"1F447-1F3FB\",\"image\":\"1f447-1f3fb.png\",\"sheet_x\":14,\"sheet_y\":10,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F447-1F3FC\":{\"unified\":\"1F447-1F3FC\",\"image\":\"1f447-1f3fc.png\",\"sheet_x\":14,\"sheet_y\":11,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F447-1F3FD\":{\"unified\":\"1F447-1F3FD\",\"image\":\"1f447-1f3fd.png\",\"sheet_x\":14,\"sheet_y\":12,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F447-1F3FE\":{\"unified\":\"1F447-1F3FE\",\"image\":\"1f447-1f3fe.png\",\"sheet_x\":14,\"sheet_y\":13,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F447-1F3FF\":{\"unified\":\"1F447-1F3FF\",\"image\":\"1f447-1f3ff.png\",\"sheet_x\":14,\"sheet_y\":14,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"white_check_mark\":{\"name\":\"White Heavy Check Mark\",\"unified\":\"2705\",\"variations\":[],\"docomo\":null,\"au\":\"E55E\",\"softbank\":null,\"google\":\"FEB4A\",\"image\":\"2705.png\",\"sheet_x\":3,\"sheet_y\":6,\"short_name\":\"white_check_mark\",\"short_names\":[\"white_check_mark\"],\"category\":\"Symbols\",\"sort_order\":103,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"ribbon\":{\"name\":\"Ribbon\",\"unified\":\"1F380\",\"variations\":[],\"docomo\":\"E684\",\"au\":\"E59F\",\"softbank\":\"E314\",\"google\":\"FE50F\",\"image\":\"1f380.png\",\"sheet_x\":8,\"sheet_y\":24,\"short_name\":\"ribbon\",\"short_names\":[\"ribbon\"],\"category\":\"Objects\",\"sort_order\":103,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"earth_asia\":{\"name\":\"Earth Globe Asia-Australia\",\"unified\":\"1F30F\",\"variations\":[],\"docomo\":null,\"au\":\"E5B3\",\"softbank\":null,\"google\":\"FE039\",\"image\":\"1f30f.png\",\"sheet_x\":5,\"sheet_y\":36,\"short_name\":\"earth_asia\",\"short_names\":[\"earth_asia\"],\"category\":\"Nature\",\"sort_order\":103,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-id\":{\"name\":\"Regional Indicator Symbol Letters ID\",\"unified\":\"1F1EE-1F1E9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ee-1f1e9.png\",\"sheet_x\":35,\"sheet_y\":16,\"short_name\":\"flag-id\",\"short_names\":[\"flag-id\"],\"category\":\"Flags\",\"sort_order\":103,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"full_moon\":{\"name\":\"Full Moon Symbol\",\"unified\":\"1F315\",\"variations\":[],\"docomo\":\"E6A0\",\"au\":null,\"softbank\":null,\"google\":\"FE015\",\"image\":\"1f315.png\",\"sheet_x\":6,\"sheet_y\":1,\"short_name\":\"full_moon\",\"short_names\":[\"full_moon\"],\"category\":\"Nature\",\"sort_order\":104,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"point_left\":{\"name\":\"White Left Pointing Backhand Index\",\"unified\":\"1F448\",\"variations\":[],\"docomo\":null,\"au\":\"E4FF\",\"softbank\":\"E230\",\"google\":\"FEB9B\",\"image\":\"1f448.png\",\"sheet_x\":14,\"sheet_y\":15,\"short_name\":\"point_left\",\"short_names\":[\"point_left\"],\"category\":\"People\",\"sort_order\":104,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F448-1F3FB\":{\"unified\":\"1F448-1F3FB\",\"image\":\"1f448-1f3fb.png\",\"sheet_x\":14,\"sheet_y\":16,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F448-1F3FC\":{\"unified\":\"1F448-1F3FC\",\"image\":\"1f448-1f3fc.png\",\"sheet_x\":14,\"sheet_y\":17,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F448-1F3FD\":{\"unified\":\"1F448-1F3FD\",\"image\":\"1f448-1f3fd.png\",\"sheet_x\":14,\"sheet_y\":18,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F448-1F3FE\":{\"unified\":\"1F448-1F3FE\",\"image\":\"1f448-1f3fe.png\",\"sheet_x\":14,\"sheet_y\":19,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F448-1F3FF\":{\"unified\":\"1F448-1F3FF\",\"image\":\"1f448-1f3ff.png\",\"sheet_x\":14,\"sheet_y\":20,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"flag-ir\":{\"name\":\"Regional Indicator Symbol Letters IR\",\"unified\":\"1F1EE-1F1F7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ee-1f1f7.png\",\"sheet_x\":35,\"sheet_y\":23,\"short_name\":\"flag-ir\",\"short_names\":[\"flag-ir\"],\"category\":\"Flags\",\"sort_order\":104,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"gift\":{\"name\":\"Wrapped Present\",\"unified\":\"1F381\",\"variations\":[],\"docomo\":\"E685\",\"au\":\"E4CF\",\"softbank\":\"E112\",\"google\":\"FE510\",\"image\":\"1f381.png\",\"sheet_x\":8,\"sheet_y\":25,\"short_name\":\"gift\",\"short_names\":[\"gift\"],\"category\":\"Objects\",\"sort_order\":104,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"bank\":{\"name\":\"Bank\",\"unified\":\"1F3E6\",\"variations\":[],\"docomo\":\"E667\",\"au\":\"E4AA\",\"softbank\":\"E14D\",\"google\":\"FE4B5\",\"image\":\"1f3e6.png\",\"sheet_x\":11,\"sheet_y\":23,\"short_name\":\"bank\",\"short_names\":[\"bank\"],\"category\":\"Places\",\"sort_order\":104,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"diamond_shape_with_a_dot_inside\":{\"name\":\"Diamond Shape with a Dot Inside\",\"unified\":\"1F4A0\",\"variations\":[],\"docomo\":\"E6F8\",\"au\":null,\"softbank\":null,\"google\":\"FEB55\",\"image\":\"1f4a0.png\",\"sheet_x\":20,\"sheet_y\":7,\"short_name\":\"diamond_shape_with_a_dot_inside\",\"short_names\":[\"diamond_shape_with_a_dot_inside\"],\"category\":\"Symbols\",\"sort_order\":104,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-iq\":{\"name\":\"Regional Indicator Symbol Letters IQ\",\"unified\":\"1F1EE-1F1F6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ee-1f1f6.png\",\"sheet_x\":35,\"sheet_y\":22,\"short_name\":\"flag-iq\",\"short_names\":[\"flag-iq\"],\"category\":\"Flags\",\"sort_order\":105,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"confetti_ball\":{\"name\":\"Confetti Ball\",\"unified\":\"1F38A\",\"variations\":[],\"docomo\":null,\"au\":\"E46F\",\"softbank\":null,\"google\":\"FE520\",\"image\":\"1f38a.png\",\"sheet_x\":8,\"sheet_y\":39,\"short_name\":\"confetti_ball\",\"short_names\":[\"confetti_ball\"],\"category\":\"Objects\",\"sort_order\":105,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"point_right\":{\"name\":\"White Right Pointing Backhand Index\",\"unified\":\"1F449\",\"variations\":[],\"docomo\":null,\"au\":\"E500\",\"softbank\":\"E231\",\"google\":\"FEB9C\",\"image\":\"1f449.png\",\"sheet_x\":14,\"sheet_y\":21,\"short_name\":\"point_right\",\"short_names\":[\"point_right\"],\"category\":\"People\",\"sort_order\":105,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F449-1F3FB\":{\"unified\":\"1F449-1F3FB\",\"image\":\"1f449-1f3fb.png\",\"sheet_x\":14,\"sheet_y\":22,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F449-1F3FC\":{\"unified\":\"1F449-1F3FC\",\"image\":\"1f449-1f3fc.png\",\"sheet_x\":14,\"sheet_y\":23,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F449-1F3FD\":{\"unified\":\"1F449-1F3FD\",\"image\":\"1f449-1f3fd.png\",\"sheet_x\":14,\"sheet_y\":24,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F449-1F3FE\":{\"unified\":\"1F449-1F3FE\",\"image\":\"1f449-1f3fe.png\",\"sheet_x\":14,\"sheet_y\":25,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F449-1F3FF\":{\"unified\":\"1F449-1F3FF\",\"image\":\"1f449-1f3ff.png\",\"sheet_x\":14,\"sheet_y\":26,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"cyclone\":{\"name\":\"Cyclone\",\"unified\":\"1F300\",\"variations\":[],\"docomo\":\"E643\",\"au\":\"E469\",\"softbank\":\"E443\",\"google\":\"FE005\",\"image\":\"1f300.png\",\"sheet_x\":5,\"sheet_y\":21,\"short_name\":\"cyclone\",\"short_names\":[\"cyclone\"],\"category\":\"Symbols\",\"sort_order\":105,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"waning_gibbous_moon\":{\"name\":\"Waning Gibbous Moon Symbol\",\"unified\":\"1F316\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f316.png\",\"sheet_x\":6,\"sheet_y\":2,\"short_name\":\"waning_gibbous_moon\",\"short_names\":[\"waning_gibbous_moon\"],\"category\":\"Nature\",\"sort_order\":105,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"hotel\":{\"name\":\"Hotel\",\"unified\":\"1F3E8\",\"variations\":[],\"docomo\":\"E669\",\"au\":\"EA81\",\"softbank\":\"E158\",\"google\":\"FE4B7\",\"image\":\"1f3e8.png\",\"sheet_x\":11,\"sheet_y\":25,\"short_name\":\"hotel\",\"short_names\":[\"hotel\"],\"category\":\"Places\",\"sort_order\":105,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"loop\":{\"name\":\"Double Curly Loop\",\"unified\":\"27BF\",\"variations\":[],\"docomo\":\"E6DF\",\"au\":null,\"softbank\":\"E211\",\"google\":\"FE82B\",\"image\":\"27bf.png\",\"sheet_x\":4,\"sheet_y\":16,\"short_name\":\"loop\",\"short_names\":[\"loop\"],\"category\":\"Symbols\",\"sort_order\":106,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"convenience_store\":{\"name\":\"Convenience Store\",\"unified\":\"1F3EA\",\"variations\":[],\"docomo\":\"E66A\",\"au\":\"E4A4\",\"softbank\":\"E156\",\"google\":\"FE4B9\",\"image\":\"1f3ea.png\",\"sheet_x\":11,\"sheet_y\":27,\"short_name\":\"convenience_store\",\"short_names\":[\"convenience_store\"],\"category\":\"Places\",\"sort_order\":106,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"last_quarter_moon\":{\"name\":\"Last Quarter Moon Symbol\",\"unified\":\"1F317\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f317.png\",\"sheet_x\":6,\"sheet_y\":3,\"short_name\":\"last_quarter_moon\",\"short_names\":[\"last_quarter_moon\"],\"category\":\"Nature\",\"sort_order\":106,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"tada\":{\"name\":\"Party Popper\",\"unified\":\"1F389\",\"variations\":[],\"docomo\":null,\"au\":\"EA9C\",\"softbank\":\"E312\",\"google\":\"FE517\",\"image\":\"1f389.png\",\"sheet_x\":8,\"sheet_y\":38,\"short_name\":\"tada\",\"short_names\":[\"tada\"],\"category\":\"Objects\",\"sort_order\":106,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"middle_finger\":{\"name\":\"Reversed Hand with Middle Finger Extended\",\"unified\":\"1F595\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f595.png\",\"sheet_x\":25,\"sheet_y\":19,\"short_name\":\"middle_finger\",\"short_names\":[\"middle_finger\",\"reversed_hand_with_middle_finger_extended\"],\"category\":\"People\",\"sort_order\":106,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F595-1F3FB\":{\"unified\":\"1F595-1F3FB\",\"image\":\"1f595-1f3fb.png\",\"sheet_x\":25,\"sheet_y\":20,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F595-1F3FC\":{\"unified\":\"1F595-1F3FC\",\"image\":\"1f595-1f3fc.png\",\"sheet_x\":25,\"sheet_y\":21,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F595-1F3FD\":{\"unified\":\"1F595-1F3FD\",\"image\":\"1f595-1f3fd.png\",\"sheet_x\":25,\"sheet_y\":22,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F595-1F3FE\":{\"unified\":\"1F595-1F3FE\",\"image\":\"1f595-1f3fe.png\",\"sheet_x\":25,\"sheet_y\":23,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F595-1F3FF\":{\"unified\":\"1F595-1F3FF\",\"image\":\"1f595-1f3ff.png\",\"sheet_x\":25,\"sheet_y\":24,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"flag-ie\":{\"name\":\"Regional Indicator Symbol Letters IE\",\"unified\":\"1F1EE-1F1EA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ee-1f1ea.png\",\"sheet_x\":35,\"sheet_y\":17,\"short_name\":\"flag-ie\",\"short_names\":[\"flag-ie\"],\"category\":\"Flags\",\"sort_order\":106,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"dolls\":{\"name\":\"Japanese Dolls\",\"unified\":\"1F38E\",\"variations\":[],\"docomo\":null,\"au\":\"EAE4\",\"softbank\":\"E438\",\"google\":\"FE519\",\"image\":\"1f38e.png\",\"sheet_x\":9,\"sheet_y\":2,\"short_name\":\"dolls\",\"short_names\":[\"dolls\"],\"category\":\"Objects\",\"sort_order\":107,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"globe_with_meridians\":{\"name\":\"Globe with Meridians\",\"unified\":\"1F310\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f310.png\",\"sheet_x\":5,\"sheet_y\":37,\"short_name\":\"globe_with_meridians\",\"short_names\":[\"globe_with_meridians\"],\"category\":\"Symbols\",\"sort_order\":107,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-im\":{\"name\":\"Regional Indicator Symbol Letters IM\",\"unified\":\"1F1EE-1F1F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ee-1f1f2.png\",\"sheet_x\":35,\"sheet_y\":19,\"short_name\":\"flag-im\",\"short_names\":[\"flag-im\"],\"category\":\"Flags\",\"sort_order\":107,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"waning_crescent_moon\":{\"name\":\"Waning Crescent Moon Symbol\",\"unified\":\"1F318\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f318.png\",\"sheet_x\":6,\"sheet_y\":4,\"short_name\":\"waning_crescent_moon\",\"short_names\":[\"waning_crescent_moon\"],\"category\":\"Nature\",\"sort_order\":107,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"raised_hand_with_fingers_splayed\":{\"name\":\"Raised Hand with Fingers Splayed\",\"unified\":\"1F590\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f590.png\",\"sheet_x\":25,\"sheet_y\":13,\"short_name\":\"raised_hand_with_fingers_splayed\",\"short_names\":[\"raised_hand_with_fingers_splayed\"],\"category\":\"People\",\"sort_order\":107,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F590-1F3FB\":{\"unified\":\"1F590-1F3FB\",\"image\":\"1f590-1f3fb.png\",\"sheet_x\":25,\"sheet_y\":14,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F590-1F3FC\":{\"unified\":\"1F590-1F3FC\",\"image\":\"1f590-1f3fc.png\",\"sheet_x\":25,\"sheet_y\":15,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F590-1F3FD\":{\"unified\":\"1F590-1F3FD\",\"image\":\"1f590-1f3fd.png\",\"sheet_x\":25,\"sheet_y\":16,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F590-1F3FE\":{\"unified\":\"1F590-1F3FE\",\"image\":\"1f590-1f3fe.png\",\"sheet_x\":25,\"sheet_y\":17,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F590-1F3FF\":{\"unified\":\"1F590-1F3FF\",\"image\":\"1f590-1f3ff.png\",\"sheet_x\":25,\"sheet_y\":18,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"school\":{\"name\":\"School\",\"unified\":\"1F3EB\",\"variations\":[],\"docomo\":\"E73E\",\"au\":\"EA80\",\"softbank\":\"E157\",\"google\":\"FE4BA\",\"image\":\"1f3eb.png\",\"sheet_x\":11,\"sheet_y\":28,\"short_name\":\"school\",\"short_names\":[\"school\"],\"category\":\"Places\",\"sort_order\":107,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"new_moon\":{\"name\":\"New Moon Symbol\",\"unified\":\"1F311\",\"variations\":[],\"docomo\":\"E69C\",\"au\":\"E5A8\",\"softbank\":null,\"google\":\"FE011\",\"image\":\"1f311.png\",\"sheet_x\":5,\"sheet_y\":38,\"short_name\":\"new_moon\",\"short_names\":[\"new_moon\"],\"category\":\"Nature\",\"sort_order\":108,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"the_horns\":{\"name\":\"Sign of the Horns\",\"unified\":\"1F918\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f918.png\",\"sheet_x\":32,\"sheet_y\":9,\"short_name\":\"the_horns\",\"short_names\":[\"the_horns\",\"sign_of_the_horns\"],\"category\":\"People\",\"sort_order\":108,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F918-1F3FB\":{\"unified\":\"1F918-1F3FB\",\"image\":\"1f918-1f3fb.png\",\"sheet_x\":32,\"sheet_y\":10,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F918-1F3FC\":{\"unified\":\"1F918-1F3FC\",\"image\":\"1f918-1f3fc.png\",\"sheet_x\":32,\"sheet_y\":11,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F918-1F3FD\":{\"unified\":\"1F918-1F3FD\",\"image\":\"1f918-1f3fd.png\",\"sheet_x\":32,\"sheet_y\":12,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F918-1F3FE\":{\"unified\":\"1F918-1F3FE\",\"image\":\"1f918-1f3fe.png\",\"sheet_x\":32,\"sheet_y\":13,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F918-1F3FF\":{\"unified\":\"1F918-1F3FF\",\"image\":\"1f918-1f3ff.png\",\"sheet_x\":32,\"sheet_y\":14,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"love_hotel\":{\"name\":\"Love Hotel\",\"unified\":\"1F3E9\",\"variations\":[],\"docomo\":\"E669-E6EF\",\"au\":\"EAF3\",\"softbank\":\"E501\",\"google\":\"FE4B8\",\"image\":\"1f3e9.png\",\"sheet_x\":11,\"sheet_y\":26,\"short_name\":\"love_hotel\",\"short_names\":[\"love_hotel\"],\"category\":\"Places\",\"sort_order\":108,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"m\":{\"name\":\"Circled Latin Capital Letter M\",\"unified\":\"24C2\",\"variations\":[\"24C2-FE0F\"],\"docomo\":\"E65C\",\"au\":\"E5BC\",\"softbank\":\"E434\",\"google\":\"FE7E1\",\"image\":\"24c2.png\",\"sheet_x\":0,\"sheet_y\":32,\"short_name\":\"m\",\"short_names\":[\"m\"],\"category\":\"Symbols\",\"sort_order\":108,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-il\":{\"name\":\"Regional Indicator Symbol Letters IL\",\"unified\":\"1F1EE-1F1F1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ee-1f1f1.png\",\"sheet_x\":35,\"sheet_y\":18,\"short_name\":\"flag-il\",\"short_names\":[\"flag-il\"],\"category\":\"Flags\",\"sort_order\":108,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"wind_chime\":{\"name\":\"Wind Chime\",\"unified\":\"1F390\",\"variations\":[],\"docomo\":null,\"au\":\"EAED\",\"softbank\":\"E442\",\"google\":\"FE51E\",\"image\":\"1f390.png\",\"sheet_x\":9,\"sheet_y\":4,\"short_name\":\"wind_chime\",\"short_names\":[\"wind_chime\"],\"category\":\"Objects\",\"sort_order\":108,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"spock-hand\":{\"name\":\"Raised Hand with Part Between Middle and Ring Fingers\",\"unified\":\"1F596\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f596.png\",\"sheet_x\":25,\"sheet_y\":25,\"short_name\":\"spock-hand\",\"short_names\":[\"spock-hand\"],\"category\":\"People\",\"sort_order\":109,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F596-1F3FB\":{\"unified\":\"1F596-1F3FB\",\"image\":\"1f596-1f3fb.png\",\"sheet_x\":25,\"sheet_y\":26,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F596-1F3FC\":{\"unified\":\"1F596-1F3FC\",\"image\":\"1f596-1f3fc.png\",\"sheet_x\":25,\"sheet_y\":27,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F596-1F3FD\":{\"unified\":\"1F596-1F3FD\",\"image\":\"1f596-1f3fd.png\",\"sheet_x\":25,\"sheet_y\":28,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F596-1F3FE\":{\"unified\":\"1F596-1F3FE\",\"image\":\"1f596-1f3fe.png\",\"sheet_x\":25,\"sheet_y\":29,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F596-1F3FF\":{\"unified\":\"1F596-1F3FF\",\"image\":\"1f596-1f3ff.png\",\"sheet_x\":25,\"sheet_y\":30,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"wedding\":{\"name\":\"Wedding\",\"unified\":\"1F492\",\"variations\":[],\"docomo\":null,\"au\":\"E5BB\",\"softbank\":\"E43D\",\"google\":\"FE82A\",\"image\":\"1f492.png\",\"sheet_x\":19,\"sheet_y\":34,\"short_name\":\"wedding\",\"short_names\":[\"wedding\"],\"category\":\"Places\",\"sort_order\":109,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"atm\":{\"name\":\"Automated Teller Machine\",\"unified\":\"1F3E7\",\"variations\":[],\"docomo\":\"E668\",\"au\":\"E4A3\",\"softbank\":\"E154\",\"google\":\"FE4B6\",\"image\":\"1f3e7.png\",\"sheet_x\":11,\"sheet_y\":24,\"short_name\":\"atm\",\"short_names\":[\"atm\"],\"category\":\"Symbols\",\"sort_order\":109,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"crossed_flags\":{\"name\":\"Crossed Flags\",\"unified\":\"1F38C\",\"variations\":[],\"docomo\":null,\"au\":\"E5D9\",\"softbank\":\"E143\",\"google\":\"FE514\",\"image\":\"1f38c.png\",\"sheet_x\":9,\"sheet_y\":0,\"short_name\":\"crossed_flags\",\"short_names\":[\"crossed_flags\"],\"category\":\"Objects\",\"sort_order\":109,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-it\":{\"name\":\"Regional Indicator Symbol Letters IT\",\"unified\":\"1F1EE-1F1F9\",\"variations\":[],\"docomo\":null,\"au\":\"EB0F\",\"softbank\":\"E50F\",\"google\":\"FE4E9\",\"image\":\"1f1ee-1f1f9.png\",\"sheet_x\":35,\"sheet_y\":25,\"short_name\":\"flag-it\",\"short_names\":[\"flag-it\",\"it\"],\"category\":\"Flags\",\"sort_order\":109,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"waxing_crescent_moon\":{\"name\":\"Waxing Crescent Moon Symbol\",\"unified\":\"1F312\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f312.png\",\"sheet_x\":5,\"sheet_y\":39,\"short_name\":\"waxing_crescent_moon\",\"short_names\":[\"waxing_crescent_moon\"],\"category\":\"Nature\",\"sort_order\":109,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"izakaya_lantern\":{\"name\":\"Izakaya Lantern\",\"unified\":\"1F3EE\",\"variations\":[],\"docomo\":\"E74B\",\"au\":\"E4BD\",\"softbank\":\"E30B\",\"google\":\"FE4C2\",\"image\":\"1f3ee.png\",\"sheet_x\":11,\"sheet_y\":31,\"short_name\":\"izakaya_lantern\",\"short_names\":[\"izakaya_lantern\",\"lantern\"],\"category\":\"Objects\",\"sort_order\":110,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"first_quarter_moon\":{\"name\":\"First Quarter Moon Symbol\",\"unified\":\"1F313\",\"variations\":[],\"docomo\":\"E69E\",\"au\":\"E5AA\",\"softbank\":\"E04C\",\"google\":\"FE013\",\"image\":\"1f313.png\",\"sheet_x\":5,\"sheet_y\":40,\"short_name\":\"first_quarter_moon\",\"short_names\":[\"first_quarter_moon\"],\"category\":\"Nature\",\"sort_order\":110,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"sa\":{\"name\":\"Squared Katakana Sa\",\"unified\":\"1F202\",\"variations\":[\"1F202-FE0F\"],\"docomo\":null,\"au\":\"EA87\",\"softbank\":\"E228\",\"google\":\"FEB3F\",\"image\":\"1f202.png\",\"sheet_x\":5,\"sheet_y\":7,\"short_name\":\"sa\",\"short_names\":[\"sa\"],\"category\":\"Symbols\",\"sort_order\":110,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"classical_building\":{\"name\":\"Classical Building\",\"unified\":\"1F3DB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3db.png\",\"sheet_x\":11,\"sheet_y\":12,\"short_name\":\"classical_building\",\"short_names\":[\"classical_building\"],\"category\":\"Places\",\"sort_order\":110,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"writing_hand\":{\"name\":\"Writing Hand\",\"unified\":\"270D\",\"variations\":[\"270D-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"270d.png\",\"sheet_x\":3,\"sheet_y\":27,\"short_name\":\"writing_hand\",\"short_names\":[\"writing_hand\"],\"category\":\"People\",\"sort_order\":110,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"270D-1F3FB\":{\"unified\":\"270D-1F3FB\",\"image\":\"270d-1f3fb.png\",\"sheet_x\":3,\"sheet_y\":28,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"270D-1F3FC\":{\"unified\":\"270D-1F3FC\",\"image\":\"270d-1f3fc.png\",\"sheet_x\":3,\"sheet_y\":29,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"270D-1F3FD\":{\"unified\":\"270D-1F3FD\",\"image\":\"270d-1f3fd.png\",\"sheet_x\":3,\"sheet_y\":30,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"270D-1F3FE\":{\"unified\":\"270D-1F3FE\",\"image\":\"270d-1f3fe.png\",\"sheet_x\":3,\"sheet_y\":31,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"270D-1F3FF\":{\"unified\":\"270D-1F3FF\",\"image\":\"270d-1f3ff.png\",\"sheet_x\":3,\"sheet_y\":32,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"flag-ci\":{\"name\":\"Regional Indicator Symbol Letters CI\",\"unified\":\"1F1E8-1F1EE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1ee.png\",\"sheet_x\":33,\"sheet_y\":36,\"short_name\":\"flag-ci\",\"short_names\":[\"flag-ci\"],\"category\":\"Flags\",\"sort_order\":110,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"moon\":{\"name\":\"Waxing Gibbous Moon Symbol\",\"unified\":\"1F314\",\"variations\":[],\"docomo\":\"E69D\",\"au\":\"E5A9\",\"softbank\":\"E04C\",\"google\":\"FE012\",\"image\":\"1f314.png\",\"sheet_x\":6,\"sheet_y\":0,\"short_name\":\"moon\",\"short_names\":[\"moon\",\"waxing_gibbous_moon\"],\"category\":\"Nature\",\"sort_order\":111,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"church\":{\"name\":\"Church\",\"unified\":\"26EA\",\"variations\":[\"26EA-FE0F\"],\"docomo\":null,\"au\":\"E5BB\",\"softbank\":\"E037\",\"google\":\"FE4BB\",\"image\":\"26ea.png\",\"sheet_x\":2,\"sheet_y\":29,\"short_name\":\"church\",\"short_names\":[\"church\"],\"category\":\"Places\",\"sort_order\":111,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"email\":{\"name\":\"Envelope\",\"unified\":\"2709\",\"variations\":[\"2709-FE0F\"],\"docomo\":\"E6D3\",\"au\":\"E521\",\"softbank\":\"E103\",\"google\":\"FE529\",\"image\":\"2709.png\",\"sheet_x\":3,\"sheet_y\":8,\"short_name\":\"email\",\"short_names\":[\"email\",\"envelope\"],\"category\":\"Objects\",\"sort_order\":111,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"passport_control\":{\"name\":\"Passport Control\",\"unified\":\"1F6C2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6c2.png\",\"sheet_x\":31,\"sheet_y\":21,\"short_name\":\"passport_control\",\"short_names\":[\"passport_control\"],\"category\":\"Symbols\",\"sort_order\":111,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"nail_care\":{\"name\":\"Nail Polish\",\"unified\":\"1F485\",\"variations\":[],\"docomo\":null,\"au\":\"EAA0\",\"softbank\":\"E31D\",\"google\":\"FE196\",\"image\":\"1f485.png\",\"sheet_x\":19,\"sheet_y\":6,\"short_name\":\"nail_care\",\"short_names\":[\"nail_care\"],\"category\":\"People\",\"sort_order\":111,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F485-1F3FB\":{\"unified\":\"1F485-1F3FB\",\"image\":\"1f485-1f3fb.png\",\"sheet_x\":19,\"sheet_y\":7,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F485-1F3FC\":{\"unified\":\"1F485-1F3FC\",\"image\":\"1f485-1f3fc.png\",\"sheet_x\":19,\"sheet_y\":8,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F485-1F3FD\":{\"unified\":\"1F485-1F3FD\",\"image\":\"1f485-1f3fd.png\",\"sheet_x\":19,\"sheet_y\":9,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F485-1F3FE\":{\"unified\":\"1F485-1F3FE\",\"image\":\"1f485-1f3fe.png\",\"sheet_x\":19,\"sheet_y\":10,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F485-1F3FF\":{\"unified\":\"1F485-1F3FF\",\"image\":\"1f485-1f3ff.png\",\"sheet_x\":19,\"sheet_y\":11,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"flag-jm\":{\"name\":\"Regional Indicator Symbol Letters JM\",\"unified\":\"1F1EF-1F1F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ef-1f1f2.png\",\"sheet_x\":35,\"sheet_y\":27,\"short_name\":\"flag-jm\",\"short_names\":[\"flag-jm\"],\"category\":\"Flags\",\"sort_order\":111,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"lips\":{\"name\":\"Mouth\",\"unified\":\"1F444\",\"variations\":[],\"docomo\":\"E6F9\",\"au\":\"EAD1\",\"softbank\":\"E41C\",\"google\":\"FE193\",\"image\":\"1f444.png\",\"sheet_x\":14,\"sheet_y\":1,\"short_name\":\"lips\",\"short_names\":[\"lips\"],\"category\":\"People\",\"sort_order\":112,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"mosque\":{\"name\":\"Mosque\",\"unified\":\"1F54C\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f54c.png\",\"sheet_x\":24,\"sheet_y\":8,\"short_name\":\"mosque\",\"short_names\":[\"mosque\"],\"category\":\"Places\",\"sort_order\":112,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-jp\":{\"name\":\"Regional Indicator Symbol Letters JP\",\"unified\":\"1F1EF-1F1F5\",\"variations\":[],\"docomo\":null,\"au\":\"E4CC\",\"softbank\":\"E50B\",\"google\":\"FE4E5\",\"image\":\"1f1ef-1f1f5.png\",\"sheet_x\":35,\"sheet_y\":29,\"short_name\":\"flag-jp\",\"short_names\":[\"flag-jp\",\"jp\"],\"category\":\"Flags\",\"sort_order\":112,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"new_moon_with_face\":{\"name\":\"New Moon with Face\",\"unified\":\"1F31A\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f31a.png\",\"sheet_x\":6,\"sheet_y\":6,\"short_name\":\"new_moon_with_face\",\"short_names\":[\"new_moon_with_face\"],\"category\":\"Nature\",\"sort_order\":112,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"customs\":{\"name\":\"Customs\",\"unified\":\"1F6C3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6c3.png\",\"sheet_x\":31,\"sheet_y\":22,\"short_name\":\"customs\",\"short_names\":[\"customs\"],\"category\":\"Symbols\",\"sort_order\":112,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"envelope_with_arrow\":{\"name\":\"Envelope with Downwards Arrow Above\",\"unified\":\"1F4E9\",\"variations\":[],\"docomo\":\"E6CF\",\"au\":\"EB62\",\"softbank\":\"E103\",\"google\":\"FE52B\",\"image\":\"1f4e9.png\",\"sheet_x\":22,\"sheet_y\":3,\"short_name\":\"envelope_with_arrow\",\"short_names\":[\"envelope_with_arrow\"],\"category\":\"Objects\",\"sort_order\":112,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"full_moon_with_face\":{\"name\":\"Full Moon with Face\",\"unified\":\"1F31D\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f31d.png\",\"sheet_x\":6,\"sheet_y\":9,\"short_name\":\"full_moon_with_face\",\"short_names\":[\"full_moon_with_face\"],\"category\":\"Nature\",\"sort_order\":113,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-je\":{\"name\":\"Regional Indicator Symbol Letters JE\",\"unified\":\"1F1EF-1F1EA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ef-1f1ea.png\",\"sheet_x\":35,\"sheet_y\":26,\"short_name\":\"flag-je\",\"short_names\":[\"flag-je\"],\"category\":\"Flags\",\"sort_order\":113,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"synagogue\":{\"name\":\"Synagogue\",\"unified\":\"1F54D\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f54d.png\",\"sheet_x\":24,\"sheet_y\":9,\"short_name\":\"synagogue\",\"short_names\":[\"synagogue\"],\"category\":\"Places\",\"sort_order\":113,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"baggage_claim\":{\"name\":\"Baggage Claim\",\"unified\":\"1F6C4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6c4.png\",\"sheet_x\":31,\"sheet_y\":23,\"short_name\":\"baggage_claim\",\"short_names\":[\"baggage_claim\"],\"category\":\"Symbols\",\"sort_order\":113,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"tongue\":{\"name\":\"Tongue\",\"unified\":\"1F445\",\"variations\":[],\"docomo\":\"E728\",\"au\":\"EB47\",\"softbank\":\"E409\",\"google\":\"FE194\",\"image\":\"1f445.png\",\"sheet_x\":14,\"sheet_y\":2,\"short_name\":\"tongue\",\"short_names\":[\"tongue\"],\"category\":\"People\",\"sort_order\":113,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"incoming_envelope\":{\"name\":\"Incoming Envelope\",\"unified\":\"1F4E8\",\"variations\":[],\"docomo\":\"E6CF\",\"au\":\"E591\",\"softbank\":\"E103\",\"google\":\"FE52A\",\"image\":\"1f4e8.png\",\"sheet_x\":22,\"sheet_y\":2,\"short_name\":\"incoming_envelope\",\"short_names\":[\"incoming_envelope\"],\"category\":\"Objects\",\"sort_order\":113,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"e-mail\":{\"name\":\"E-Mail Symbol\",\"unified\":\"1F4E7\",\"variations\":[],\"docomo\":\"E6D3\",\"au\":\"EB71\",\"softbank\":\"E103\",\"google\":\"FEB92\",\"image\":\"1f4e7.png\",\"sheet_x\":22,\"sheet_y\":1,\"short_name\":\"e-mail\",\"short_names\":[\"e-mail\"],\"category\":\"Objects\",\"sort_order\":114,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"ear\":{\"name\":\"Ear\",\"unified\":\"1F442\",\"variations\":[],\"docomo\":\"E692\",\"au\":\"E5A5\",\"softbank\":\"E41B\",\"google\":\"FE191\",\"image\":\"1f442.png\",\"sheet_x\":13,\"sheet_y\":30,\"short_name\":\"ear\",\"short_names\":[\"ear\"],\"category\":\"People\",\"sort_order\":114,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F442-1F3FB\":{\"unified\":\"1F442-1F3FB\",\"image\":\"1f442-1f3fb.png\",\"sheet_x\":13,\"sheet_y\":31,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F442-1F3FC\":{\"unified\":\"1F442-1F3FC\",\"image\":\"1f442-1f3fc.png\",\"sheet_x\":13,\"sheet_y\":32,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F442-1F3FD\":{\"unified\":\"1F442-1F3FD\",\"image\":\"1f442-1f3fd.png\",\"sheet_x\":13,\"sheet_y\":33,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F442-1F3FE\":{\"unified\":\"1F442-1F3FE\",\"image\":\"1f442-1f3fe.png\",\"sheet_x\":13,\"sheet_y\":34,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F442-1F3FF\":{\"unified\":\"1F442-1F3FF\",\"image\":\"1f442-1f3ff.png\",\"sheet_x\":13,\"sheet_y\":35,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"first_quarter_moon_with_face\":{\"name\":\"First Quarter Moon with Face\",\"unified\":\"1F31B\",\"variations\":[],\"docomo\":\"E69E\",\"au\":\"E489\",\"softbank\":\"E04C\",\"google\":\"FE016\",\"image\":\"1f31b.png\",\"sheet_x\":6,\"sheet_y\":7,\"short_name\":\"first_quarter_moon_with_face\",\"short_names\":[\"first_quarter_moon_with_face\"],\"category\":\"Nature\",\"sort_order\":114,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"left_luggage\":{\"name\":\"Left Luggage\",\"unified\":\"1F6C5\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6c5.png\",\"sheet_x\":31,\"sheet_y\":24,\"short_name\":\"left_luggage\",\"short_names\":[\"left_luggage\"],\"category\":\"Symbols\",\"sort_order\":114,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"kaaba\":{\"name\":\"Kaaba\",\"unified\":\"1F54B\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f54b.png\",\"sheet_x\":24,\"sheet_y\":7,\"short_name\":\"kaaba\",\"short_names\":[\"kaaba\"],\"category\":\"Places\",\"sort_order\":114,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-jo\":{\"name\":\"Regional Indicator Symbol Letters JO\",\"unified\":\"1F1EF-1F1F4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ef-1f1f4.png\",\"sheet_x\":35,\"sheet_y\":28,\"short_name\":\"flag-jo\",\"short_names\":[\"flag-jo\"],\"category\":\"Flags\",\"sort_order\":114,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-kz\":{\"name\":\"Regional Indicator Symbol Letters KZ\",\"unified\":\"1F1F0-1F1FF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f0-1f1ff.png\",\"sheet_x\":35,\"sheet_y\":40,\"short_name\":\"flag-kz\",\"short_names\":[\"flag-kz\"],\"category\":\"Flags\",\"sort_order\":115,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"wheelchair\":{\"name\":\"Wheelchair Symbol\",\"unified\":\"267F\",\"variations\":[\"267F-FE0F\"],\"docomo\":\"E69B\",\"au\":\"E47F\",\"softbank\":\"E20A\",\"google\":\"FEB20\",\"image\":\"267f.png\",\"sheet_x\":2,\"sheet_y\":3,\"short_name\":\"wheelchair\",\"short_names\":[\"wheelchair\"],\"category\":\"Symbols\",\"sort_order\":115,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"last_quarter_moon_with_face\":{\"name\":\"Last Quarter Moon with Face\",\"unified\":\"1F31C\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f31c.png\",\"sheet_x\":6,\"sheet_y\":8,\"short_name\":\"last_quarter_moon_with_face\",\"short_names\":[\"last_quarter_moon_with_face\"],\"category\":\"Nature\",\"sort_order\":115,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"nose\":{\"name\":\"Nose\",\"unified\":\"1F443\",\"variations\":[],\"docomo\":null,\"au\":\"EAD0\",\"softbank\":\"E41A\",\"google\":\"FE192\",\"image\":\"1f443.png\",\"sheet_x\":13,\"sheet_y\":36,\"short_name\":\"nose\",\"short_names\":[\"nose\"],\"category\":\"People\",\"sort_order\":115,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F443-1F3FB\":{\"unified\":\"1F443-1F3FB\",\"image\":\"1f443-1f3fb.png\",\"sheet_x\":13,\"sheet_y\":37,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F443-1F3FC\":{\"unified\":\"1F443-1F3FC\",\"image\":\"1f443-1f3fc.png\",\"sheet_x\":13,\"sheet_y\":38,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F443-1F3FD\":{\"unified\":\"1F443-1F3FD\",\"image\":\"1f443-1f3fd.png\",\"sheet_x\":13,\"sheet_y\":39,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F443-1F3FE\":{\"unified\":\"1F443-1F3FE\",\"image\":\"1f443-1f3fe.png\",\"sheet_x\":13,\"sheet_y\":40,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F443-1F3FF\":{\"unified\":\"1F443-1F3FF\",\"image\":\"1f443-1f3ff.png\",\"sheet_x\":14,\"sheet_y\":0,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"love_letter\":{\"name\":\"Love Letter\",\"unified\":\"1F48C\",\"variations\":[],\"docomo\":\"E717\",\"au\":\"EB78\",\"softbank\":\"E103-E328\",\"google\":\"FE824\",\"image\":\"1f48c.png\",\"sheet_x\":19,\"sheet_y\":28,\"short_name\":\"love_letter\",\"short_names\":[\"love_letter\"],\"category\":\"Objects\",\"sort_order\":115,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"shinto_shrine\":{\"name\":\"Shinto Shrine\",\"unified\":\"26E9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"26e9.png\",\"sheet_x\":2,\"sheet_y\":28,\"short_name\":\"shinto_shrine\",\"short_names\":[\"shinto_shrine\"],\"category\":\"Places\",\"sort_order\":115,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"no_smoking\":{\"name\":\"No Smoking Symbol\",\"unified\":\"1F6AD\",\"variations\":[],\"docomo\":\"E680\",\"au\":\"E47E\",\"softbank\":\"E208\",\"google\":\"FEB1F\",\"image\":\"1f6ad.png\",\"sheet_x\":30,\"sheet_y\":21,\"short_name\":\"no_smoking\",\"short_names\":[\"no_smoking\"],\"category\":\"Symbols\",\"sort_order\":116,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"postbox\":{\"name\":\"Postbox\",\"unified\":\"1F4EE\",\"variations\":[],\"docomo\":\"E665\",\"au\":\"E51B\",\"softbank\":\"E102\",\"google\":\"FE52E\",\"image\":\"1f4ee.png\",\"sheet_x\":22,\"sheet_y\":8,\"short_name\":\"postbox\",\"short_names\":[\"postbox\"],\"category\":\"Objects\",\"sort_order\":116,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"eye\":{\"name\":\"Eye\",\"unified\":\"1F441\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f441.png\",\"sheet_x\":13,\"sheet_y\":29,\"short_name\":\"eye\",\"short_names\":[\"eye\"],\"category\":\"People\",\"sort_order\":116,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"sun_with_face\":{\"name\":\"Sun with Face\",\"unified\":\"1F31E\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f31e.png\",\"sheet_x\":6,\"sheet_y\":10,\"short_name\":\"sun_with_face\",\"short_names\":[\"sun_with_face\"],\"category\":\"Nature\",\"sort_order\":116,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ke\":{\"name\":\"Regional Indicator Symbol Letters KE\",\"unified\":\"1F1F0-1F1EA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f0-1f1ea.png\",\"sheet_x\":35,\"sheet_y\":30,\"short_name\":\"flag-ke\",\"short_names\":[\"flag-ke\"],\"category\":\"Flags\",\"sort_order\":116,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"mailbox_closed\":{\"name\":\"Closed Mailbox with Lowered Flag\",\"unified\":\"1F4EA\",\"variations\":[],\"docomo\":\"E665\",\"au\":\"E51B\",\"softbank\":\"E101\",\"google\":\"FE52C\",\"image\":\"1f4ea.png\",\"sheet_x\":22,\"sheet_y\":4,\"short_name\":\"mailbox_closed\",\"short_names\":[\"mailbox_closed\"],\"category\":\"Objects\",\"sort_order\":117,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ki\":{\"name\":\"Regional Indicator Symbol Letters KI\",\"unified\":\"1F1F0-1F1EE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f0-1f1ee.png\",\"sheet_x\":35,\"sheet_y\":33,\"short_name\":\"flag-ki\",\"short_names\":[\"flag-ki\"],\"category\":\"Flags\",\"sort_order\":117,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"eyes\":{\"name\":\"Eyes\",\"unified\":\"1F440\",\"variations\":[],\"docomo\":\"E691\",\"au\":\"E5A4\",\"softbank\":\"E419\",\"google\":\"FE190\",\"image\":\"1f440.png\",\"sheet_x\":13,\"sheet_y\":28,\"short_name\":\"eyes\",\"short_names\":[\"eyes\"],\"category\":\"People\",\"sort_order\":117,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"wc\":{\"name\":\"Water Closet\",\"unified\":\"1F6BE\",\"variations\":[],\"docomo\":\"E66E\",\"au\":\"E4A5\",\"softbank\":\"E309\",\"google\":\"FE508\",\"image\":\"1f6be.png\",\"sheet_x\":31,\"sheet_y\":12,\"short_name\":\"wc\",\"short_names\":[\"wc\"],\"category\":\"Symbols\",\"sort_order\":117,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"crescent_moon\":{\"name\":\"Crescent Moon\",\"unified\":\"1F319\",\"variations\":[],\"docomo\":\"E69F\",\"au\":\"E486\",\"softbank\":\"E04C\",\"google\":\"FE014\",\"image\":\"1f319.png\",\"sheet_x\":6,\"sheet_y\":5,\"short_name\":\"crescent_moon\",\"short_names\":[\"crescent_moon\"],\"category\":\"Nature\",\"sort_order\":117,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"mailbox\":{\"name\":\"Closed Mailbox with Raised Flag\",\"unified\":\"1F4EB\",\"variations\":[],\"docomo\":\"E665\",\"au\":\"EB0A\",\"softbank\":\"E101\",\"google\":\"FE52D\",\"image\":\"1f4eb.png\",\"sheet_x\":22,\"sheet_y\":5,\"short_name\":\"mailbox\",\"short_names\":[\"mailbox\"],\"category\":\"Objects\",\"sort_order\":118,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-xk\":{\"name\":\"Regional Indicator Symbol Letters XK\",\"unified\":\"1F1FD-1F1F0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1fd-1f1f0.png\",\"sheet_x\":38,\"sheet_y\":38,\"short_name\":\"flag-xk\",\"short_names\":[\"flag-xk\"],\"category\":\"Flags\",\"sort_order\":118,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"parking\":{\"name\":\"Negative Squared Latin Capital Letter P\",\"unified\":\"1F17F\",\"variations\":[\"1F17F-FE0F\"],\"docomo\":\"E66C\",\"au\":\"E4A6\",\"softbank\":\"E14F\",\"google\":\"FE7F6\",\"image\":\"1f17f.png\",\"sheet_x\":4,\"sheet_y\":35,\"short_name\":\"parking\",\"short_names\":[\"parking\"],\"category\":\"Symbols\",\"sort_order\":118,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"bust_in_silhouette\":{\"name\":\"Bust in Silhouette\",\"unified\":\"1F464\",\"variations\":[],\"docomo\":\"E6B1\",\"au\":null,\"softbank\":null,\"google\":\"FE19A\",\"image\":\"1f464.png\",\"sheet_x\":16,\"sheet_y\":6,\"short_name\":\"bust_in_silhouette\",\"short_names\":[\"bust_in_silhouette\"],\"category\":\"People\",\"sort_order\":118,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"star\":{\"name\":\"White Medium Star\",\"unified\":\"2B50\",\"variations\":[\"2B50-FE0F\"],\"docomo\":null,\"au\":\"E48B\",\"softbank\":\"E32F\",\"google\":\"FEB68\",\"image\":\"2b50.png\",\"sheet_x\":4,\"sheet_y\":24,\"short_name\":\"star\",\"short_names\":[\"star\"],\"category\":\"Nature\",\"sort_order\":118,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"star2\":{\"name\":\"Glowing Star\",\"unified\":\"1F31F\",\"variations\":[],\"docomo\":null,\"au\":\"E48B\",\"softbank\":\"E335\",\"google\":\"FEB69\",\"image\":\"1f31f.png\",\"sheet_x\":6,\"sheet_y\":11,\"short_name\":\"star2\",\"short_names\":[\"star2\"],\"category\":\"Nature\",\"sort_order\":119,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"mailbox_with_mail\":{\"name\":\"Open Mailbox with Raised Flag\",\"unified\":\"1F4EC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f4ec.png\",\"sheet_x\":22,\"sheet_y\":6,\"short_name\":\"mailbox_with_mail\",\"short_names\":[\"mailbox_with_mail\"],\"category\":\"Objects\",\"sort_order\":119,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"potable_water\":{\"name\":\"Potable Water Symbol\",\"unified\":\"1F6B0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6b0.png\",\"sheet_x\":30,\"sheet_y\":24,\"short_name\":\"potable_water\",\"short_names\":[\"potable_water\"],\"category\":\"Symbols\",\"sort_order\":119,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"busts_in_silhouette\":{\"name\":\"Busts in Silhouette\",\"unified\":\"1F465\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f465.png\",\"sheet_x\":16,\"sheet_y\":7,\"short_name\":\"busts_in_silhouette\",\"short_names\":[\"busts_in_silhouette\"],\"category\":\"People\",\"sort_order\":119,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-kw\":{\"name\":\"Regional Indicator Symbol Letters KW\",\"unified\":\"1F1F0-1F1FC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f0-1f1fc.png\",\"sheet_x\":35,\"sheet_y\":38,\"short_name\":\"flag-kw\",\"short_names\":[\"flag-kw\"],\"category\":\"Flags\",\"sort_order\":119,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"mens\":{\"name\":\"Mens Symbol\",\"unified\":\"1F6B9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":\"E138\",\"google\":\"FEB33\",\"image\":\"1f6b9.png\",\"sheet_x\":31,\"sheet_y\":7,\"short_name\":\"mens\",\"short_names\":[\"mens\"],\"category\":\"Symbols\",\"sort_order\":120,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"dizzy\":{\"name\":\"Dizzy Symbol\",\"unified\":\"1F4AB\",\"variations\":[],\"docomo\":null,\"au\":\"EB5C\",\"softbank\":\"E407\",\"google\":\"FEB5F\",\"image\":\"1f4ab.png\",\"sheet_x\":20,\"sheet_y\":23,\"short_name\":\"dizzy\",\"short_names\":[\"dizzy\"],\"category\":\"Nature\",\"sort_order\":120,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"speaking_head_in_silhouette\":{\"name\":\"Speaking Head in Silhouette\",\"unified\":\"1F5E3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5e3.png\",\"sheet_x\":26,\"sheet_y\":5,\"short_name\":\"speaking_head_in_silhouette\",\"short_names\":[\"speaking_head_in_silhouette\"],\"category\":\"People\",\"sort_order\":120,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-kg\":{\"name\":\"Regional Indicator Symbol Letters KG\",\"unified\":\"1F1F0-1F1EC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f0-1f1ec.png\",\"sheet_x\":35,\"sheet_y\":31,\"short_name\":\"flag-kg\",\"short_names\":[\"flag-kg\"],\"category\":\"Flags\",\"sort_order\":120,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"mailbox_with_no_mail\":{\"name\":\"Open Mailbox with Lowered Flag\",\"unified\":\"1F4ED\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f4ed.png\",\"sheet_x\":22,\"sheet_y\":7,\"short_name\":\"mailbox_with_no_mail\",\"short_names\":[\"mailbox_with_no_mail\"],\"category\":\"Objects\",\"sort_order\":120,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"sparkles\":{\"name\":\"Sparkles\",\"unified\":\"2728\",\"variations\":[],\"docomo\":\"E6FA\",\"au\":\"EAAB\",\"softbank\":\"E32E\",\"google\":\"FEB60\",\"image\":\"2728.png\",\"sheet_x\":3,\"sheet_y\":39,\"short_name\":\"sparkles\",\"short_names\":[\"sparkles\"],\"category\":\"Nature\",\"sort_order\":121,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"baby\":{\"name\":\"Baby\",\"unified\":\"1F476\",\"variations\":[],\"docomo\":null,\"au\":\"EB18\",\"softbank\":\"E51A\",\"google\":\"FE1A9\",\"image\":\"1f476.png\",\"sheet_x\":17,\"sheet_y\":38,\"short_name\":\"baby\",\"short_names\":[\"baby\"],\"category\":\"People\",\"sort_order\":121,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F476-1F3FB\":{\"unified\":\"1F476-1F3FB\",\"image\":\"1f476-1f3fb.png\",\"sheet_x\":17,\"sheet_y\":39,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F476-1F3FC\":{\"unified\":\"1F476-1F3FC\",\"image\":\"1f476-1f3fc.png\",\"sheet_x\":17,\"sheet_y\":40,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F476-1F3FD\":{\"unified\":\"1F476-1F3FD\",\"image\":\"1f476-1f3fd.png\",\"sheet_x\":18,\"sheet_y\":0,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F476-1F3FE\":{\"unified\":\"1F476-1F3FE\",\"image\":\"1f476-1f3fe.png\",\"sheet_x\":18,\"sheet_y\":1,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F476-1F3FF\":{\"unified\":\"1F476-1F3FF\",\"image\":\"1f476-1f3ff.png\",\"sheet_x\":18,\"sheet_y\":2,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"package\":{\"name\":\"Package\",\"unified\":\"1F4E6\",\"variations\":[],\"docomo\":\"E685\",\"au\":\"E51F\",\"softbank\":\"E112\",\"google\":\"FE535\",\"image\":\"1f4e6.png\",\"sheet_x\":22,\"sheet_y\":0,\"short_name\":\"package\",\"short_names\":[\"package\"],\"category\":\"Objects\",\"sort_order\":121,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"womens\":{\"name\":\"Womens Symbol\",\"unified\":\"1F6BA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":\"E139\",\"google\":\"FEB34\",\"image\":\"1f6ba.png\",\"sheet_x\":31,\"sheet_y\":8,\"short_name\":\"womens\",\"short_names\":[\"womens\"],\"category\":\"Symbols\",\"sort_order\":121,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-la\":{\"name\":\"Regional Indicator Symbol Letters LA\",\"unified\":\"1F1F1-1F1E6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f1-1f1e6.png\",\"sheet_x\":36,\"sheet_y\":0,\"short_name\":\"flag-la\",\"short_names\":[\"flag-la\"],\"category\":\"Flags\",\"sort_order\":121,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"baby_symbol\":{\"name\":\"Baby Symbol\",\"unified\":\"1F6BC\",\"variations\":[],\"docomo\":null,\"au\":\"EB18\",\"softbank\":\"E13A\",\"google\":\"FEB35\",\"image\":\"1f6bc.png\",\"sheet_x\":31,\"sheet_y\":10,\"short_name\":\"baby_symbol\",\"short_names\":[\"baby_symbol\"],\"category\":\"Symbols\",\"sort_order\":122,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-lv\":{\"name\":\"Regional Indicator Symbol Letters LV\",\"unified\":\"1F1F1-1F1FB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f1-1f1fb.png\",\"sheet_x\":36,\"sheet_y\":9,\"short_name\":\"flag-lv\",\"short_names\":[\"flag-lv\"],\"category\":\"Flags\",\"sort_order\":122,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"postal_horn\":{\"name\":\"Postal Horn\",\"unified\":\"1F4EF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f4ef.png\",\"sheet_x\":22,\"sheet_y\":9,\"short_name\":\"postal_horn\",\"short_names\":[\"postal_horn\"],\"category\":\"Objects\",\"sort_order\":122,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"comet\":{\"name\":\"Comet\",\"unified\":\"2604\",\"variations\":[\"2604-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"2604.png\",\"sheet_x\":1,\"sheet_y\":4,\"short_name\":\"comet\",\"short_names\":[\"comet\"],\"category\":\"Nature\",\"sort_order\":122,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"boy\":{\"name\":\"Boy\",\"unified\":\"1F466\",\"variations\":[],\"docomo\":\"E6F0\",\"au\":\"E4FC\",\"softbank\":\"E001\",\"google\":\"FE19B\",\"image\":\"1f466.png\",\"sheet_x\":16,\"sheet_y\":8,\"short_name\":\"boy\",\"short_names\":[\"boy\"],\"category\":\"People\",\"sort_order\":122,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F466-1F3FB\":{\"unified\":\"1F466-1F3FB\",\"image\":\"1f466-1f3fb.png\",\"sheet_x\":16,\"sheet_y\":9,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F466-1F3FC\":{\"unified\":\"1F466-1F3FC\",\"image\":\"1f466-1f3fc.png\",\"sheet_x\":16,\"sheet_y\":10,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F466-1F3FD\":{\"unified\":\"1F466-1F3FD\",\"image\":\"1f466-1f3fd.png\",\"sheet_x\":16,\"sheet_y\":11,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F466-1F3FE\":{\"unified\":\"1F466-1F3FE\",\"image\":\"1f466-1f3fe.png\",\"sheet_x\":16,\"sheet_y\":12,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F466-1F3FF\":{\"unified\":\"1F466-1F3FF\",\"image\":\"1f466-1f3ff.png\",\"sheet_x\":16,\"sheet_y\":13,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"restroom\":{\"name\":\"Restroom\",\"unified\":\"1F6BB\",\"variations\":[],\"docomo\":\"E66E\",\"au\":\"E4A5\",\"softbank\":\"E151\",\"google\":\"FE506\",\"image\":\"1f6bb.png\",\"sheet_x\":31,\"sheet_y\":9,\"short_name\":\"restroom\",\"short_names\":[\"restroom\"],\"category\":\"Symbols\",\"sort_order\":123,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-lb\":{\"name\":\"Regional Indicator Symbol Letters LB\",\"unified\":\"1F1F1-1F1E7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f1-1f1e7.png\",\"sheet_x\":36,\"sheet_y\":1,\"short_name\":\"flag-lb\",\"short_names\":[\"flag-lb\"],\"category\":\"Flags\",\"sort_order\":123,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"inbox_tray\":{\"name\":\"Inbox Tray\",\"unified\":\"1F4E5\",\"variations\":[],\"docomo\":null,\"au\":\"E593\",\"softbank\":null,\"google\":\"FE534\",\"image\":\"1f4e5.png\",\"sheet_x\":21,\"sheet_y\":40,\"short_name\":\"inbox_tray\",\"short_names\":[\"inbox_tray\"],\"category\":\"Objects\",\"sort_order\":123,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"sunny\":{\"name\":\"Black Sun with Rays\",\"unified\":\"2600\",\"variations\":[\"2600-FE0F\"],\"docomo\":\"E63E\",\"au\":\"E488\",\"softbank\":\"E04A\",\"google\":\"FE000\",\"image\":\"2600.png\",\"sheet_x\":1,\"sheet_y\":0,\"short_name\":\"sunny\",\"short_names\":[\"sunny\"],\"category\":\"Nature\",\"sort_order\":123,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"girl\":{\"name\":\"Girl\",\"unified\":\"1F467\",\"variations\":[],\"docomo\":\"E6F0\",\"au\":\"E4FA\",\"softbank\":\"E002\",\"google\":\"FE19C\",\"image\":\"1f467.png\",\"sheet_x\":16,\"sheet_y\":14,\"short_name\":\"girl\",\"short_names\":[\"girl\"],\"category\":\"People\",\"sort_order\":123,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F467-1F3FB\":{\"unified\":\"1F467-1F3FB\",\"image\":\"1f467-1f3fb.png\",\"sheet_x\":16,\"sheet_y\":15,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F467-1F3FC\":{\"unified\":\"1F467-1F3FC\",\"image\":\"1f467-1f3fc.png\",\"sheet_x\":16,\"sheet_y\":16,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F467-1F3FD\":{\"unified\":\"1F467-1F3FD\",\"image\":\"1f467-1f3fd.png\",\"sheet_x\":16,\"sheet_y\":17,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F467-1F3FE\":{\"unified\":\"1F467-1F3FE\",\"image\":\"1f467-1f3fe.png\",\"sheet_x\":16,\"sheet_y\":18,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F467-1F3FF\":{\"unified\":\"1F467-1F3FF\",\"image\":\"1f467-1f3ff.png\",\"sheet_x\":16,\"sheet_y\":19,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"man\":{\"name\":\"Man\",\"unified\":\"1F468\",\"variations\":[],\"docomo\":\"E6F0\",\"au\":\"E4FC\",\"softbank\":\"E004\",\"google\":\"FE19D\",\"image\":\"1f468.png\",\"sheet_x\":16,\"sheet_y\":20,\"short_name\":\"man\",\"short_names\":[\"man\"],\"category\":\"People\",\"sort_order\":124,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F468-1F3FB\":{\"unified\":\"1F468-1F3FB\",\"image\":\"1f468-1f3fb.png\",\"sheet_x\":16,\"sheet_y\":21,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F468-1F3FC\":{\"unified\":\"1F468-1F3FC\",\"image\":\"1f468-1f3fc.png\",\"sheet_x\":16,\"sheet_y\":22,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F468-1F3FD\":{\"unified\":\"1F468-1F3FD\",\"image\":\"1f468-1f3fd.png\",\"sheet_x\":16,\"sheet_y\":23,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F468-1F3FE\":{\"unified\":\"1F468-1F3FE\",\"image\":\"1f468-1f3fe.png\",\"sheet_x\":16,\"sheet_y\":24,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F468-1F3FF\":{\"unified\":\"1F468-1F3FF\",\"image\":\"1f468-1f3ff.png\",\"sheet_x\":16,\"sheet_y\":25,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"put_litter_in_its_place\":{\"name\":\"Put Litter in Its Place Symbol\",\"unified\":\"1F6AE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f6ae.png\",\"sheet_x\":30,\"sheet_y\":22,\"short_name\":\"put_litter_in_its_place\",\"short_names\":[\"put_litter_in_its_place\"],\"category\":\"Symbols\",\"sort_order\":124,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"mostly_sunny\":{\"name\":\"White Sun with Small Cloud\",\"unified\":\"1F324\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f324.png\",\"sheet_x\":6,\"sheet_y\":14,\"short_name\":\"mostly_sunny\",\"short_names\":[\"mostly_sunny\",\"sun_small_cloud\"],\"category\":\"Nature\",\"sort_order\":124,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ls\":{\"name\":\"Regional Indicator Symbol Letters LS\",\"unified\":\"1F1F1-1F1F8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f1-1f1f8.png\",\"sheet_x\":36,\"sheet_y\":6,\"short_name\":\"flag-ls\",\"short_names\":[\"flag-ls\"],\"category\":\"Flags\",\"sort_order\":124,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"outbox_tray\":{\"name\":\"Outbox Tray\",\"unified\":\"1F4E4\",\"variations\":[],\"docomo\":null,\"au\":\"E592\",\"softbank\":null,\"google\":\"FE533\",\"image\":\"1f4e4.png\",\"sheet_x\":21,\"sheet_y\":39,\"short_name\":\"outbox_tray\",\"short_names\":[\"outbox_tray\"],\"category\":\"Objects\",\"sort_order\":124,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"cinema\":{\"name\":\"Cinema\",\"unified\":\"1F3A6\",\"variations\":[],\"docomo\":\"E677\",\"au\":\"E517\",\"softbank\":\"E507\",\"google\":\"FE802\",\"image\":\"1f3a6.png\",\"sheet_x\":9,\"sheet_y\":21,\"short_name\":\"cinema\",\"short_names\":[\"cinema\"],\"category\":\"Symbols\",\"sort_order\":125,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-lr\":{\"name\":\"Regional Indicator Symbol Letters LR\",\"unified\":\"1F1F1-1F1F7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f1-1f1f7.png\",\"sheet_x\":36,\"sheet_y\":5,\"short_name\":\"flag-lr\",\"short_names\":[\"flag-lr\"],\"category\":\"Flags\",\"sort_order\":125,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"scroll\":{\"name\":\"Scroll\",\"unified\":\"1F4DC\",\"variations\":[],\"docomo\":\"E70A\",\"au\":\"E55F\",\"softbank\":null,\"google\":\"FE4FD\",\"image\":\"1f4dc.png\",\"sheet_x\":21,\"sheet_y\":31,\"short_name\":\"scroll\",\"short_names\":[\"scroll\"],\"category\":\"Objects\",\"sort_order\":125,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"partly_sunny\":{\"name\":\"Sun Behind Cloud\",\"unified\":\"26C5\",\"variations\":[\"26C5-FE0F\"],\"docomo\":\"E63E-E63F\",\"au\":\"E48E\",\"softbank\":\"E04A-E049\",\"google\":\"FE00F\",\"image\":\"26c5.png\",\"sheet_x\":2,\"sheet_y\":21,\"short_name\":\"partly_sunny\",\"short_names\":[\"partly_sunny\"],\"category\":\"Nature\",\"sort_order\":125,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"woman\":{\"name\":\"Woman\",\"unified\":\"1F469\",\"variations\":[],\"docomo\":\"E6F0\",\"au\":\"E4FA\",\"softbank\":\"E005\",\"google\":\"FE19E\",\"image\":\"1f469.png\",\"sheet_x\":16,\"sheet_y\":26,\"short_name\":\"woman\",\"short_names\":[\"woman\"],\"category\":\"People\",\"sort_order\":125,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F469-1F3FB\":{\"unified\":\"1F469-1F3FB\",\"image\":\"1f469-1f3fb.png\",\"sheet_x\":16,\"sheet_y\":27,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F469-1F3FC\":{\"unified\":\"1F469-1F3FC\",\"image\":\"1f469-1f3fc.png\",\"sheet_x\":16,\"sheet_y\":28,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F469-1F3FD\":{\"unified\":\"1F469-1F3FD\",\"image\":\"1f469-1f3fd.png\",\"sheet_x\":16,\"sheet_y\":29,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F469-1F3FE\":{\"unified\":\"1F469-1F3FE\",\"image\":\"1f469-1f3fe.png\",\"sheet_x\":16,\"sheet_y\":30,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F469-1F3FF\":{\"unified\":\"1F469-1F3FF\",\"image\":\"1f469-1f3ff.png\",\"sheet_x\":16,\"sheet_y\":31,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"signal_strength\":{\"name\":\"Antenna with Bars\",\"unified\":\"1F4F6\",\"variations\":[],\"docomo\":null,\"au\":\"EA84\",\"softbank\":\"E20B\",\"google\":\"FE838\",\"image\":\"1f4f6.png\",\"sheet_x\":22,\"sheet_y\":16,\"short_name\":\"signal_strength\",\"short_names\":[\"signal_strength\"],\"category\":\"Symbols\",\"sort_order\":126,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"person_with_blond_hair\":{\"name\":\"Person with Blond Hair\",\"unified\":\"1F471\",\"variations\":[],\"docomo\":null,\"au\":\"EB13\",\"softbank\":\"E515\",\"google\":\"FE1A4\",\"image\":\"1f471.png\",\"sheet_x\":17,\"sheet_y\":8,\"short_name\":\"person_with_blond_hair\",\"short_names\":[\"person_with_blond_hair\"],\"category\":\"People\",\"sort_order\":126,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F471-1F3FB\":{\"unified\":\"1F471-1F3FB\",\"image\":\"1f471-1f3fb.png\",\"sheet_x\":17,\"sheet_y\":9,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F471-1F3FC\":{\"unified\":\"1F471-1F3FC\",\"image\":\"1f471-1f3fc.png\",\"sheet_x\":17,\"sheet_y\":10,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F471-1F3FD\":{\"unified\":\"1F471-1F3FD\",\"image\":\"1f471-1f3fd.png\",\"sheet_x\":17,\"sheet_y\":11,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F471-1F3FE\":{\"unified\":\"1F471-1F3FE\",\"image\":\"1f471-1f3fe.png\",\"sheet_x\":17,\"sheet_y\":12,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F471-1F3FF\":{\"unified\":\"1F471-1F3FF\",\"image\":\"1f471-1f3ff.png\",\"sheet_x\":17,\"sheet_y\":13,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"barely_sunny\":{\"name\":\"White Sun Behind Cloud\",\"unified\":\"1F325\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f325.png\",\"sheet_x\":6,\"sheet_y\":15,\"short_name\":\"barely_sunny\",\"short_names\":[\"barely_sunny\",\"sun_behind_cloud\"],\"category\":\"Nature\",\"sort_order\":126,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"page_with_curl\":{\"name\":\"Page with Curl\",\"unified\":\"1F4C3\",\"variations\":[],\"docomo\":\"E689\",\"au\":\"E561\",\"softbank\":\"E301\",\"google\":\"FE540\",\"image\":\"1f4c3.png\",\"sheet_x\":21,\"sheet_y\":6,\"short_name\":\"page_with_curl\",\"short_names\":[\"page_with_curl\"],\"category\":\"Objects\",\"sort_order\":126,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ly\":{\"name\":\"Regional Indicator Symbol Letters LY\",\"unified\":\"1F1F1-1F1FE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f1-1f1fe.png\",\"sheet_x\":36,\"sheet_y\":10,\"short_name\":\"flag-ly\",\"short_names\":[\"flag-ly\"],\"category\":\"Flags\",\"sort_order\":126,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"bookmark_tabs\":{\"name\":\"Bookmark Tabs\",\"unified\":\"1F4D1\",\"variations\":[],\"docomo\":\"E689\",\"au\":\"EB0B\",\"softbank\":\"E301\",\"google\":\"FE552\",\"image\":\"1f4d1.png\",\"sheet_x\":21,\"sheet_y\":20,\"short_name\":\"bookmark_tabs\",\"short_names\":[\"bookmark_tabs\"],\"category\":\"Objects\",\"sort_order\":127,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-li\":{\"name\":\"Regional Indicator Symbol Letters LI\",\"unified\":\"1F1F1-1F1EE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f1-1f1ee.png\",\"sheet_x\":36,\"sheet_y\":3,\"short_name\":\"flag-li\",\"short_names\":[\"flag-li\"],\"category\":\"Flags\",\"sort_order\":127,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"older_man\":{\"name\":\"Older Man\",\"unified\":\"1F474\",\"variations\":[],\"docomo\":null,\"au\":\"EB16\",\"softbank\":\"E518\",\"google\":\"FE1A7\",\"image\":\"1f474.png\",\"sheet_x\":17,\"sheet_y\":26,\"short_name\":\"older_man\",\"short_names\":[\"older_man\"],\"category\":\"People\",\"sort_order\":127,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F474-1F3FB\":{\"unified\":\"1F474-1F3FB\",\"image\":\"1f474-1f3fb.png\",\"sheet_x\":17,\"sheet_y\":27,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F474-1F3FC\":{\"unified\":\"1F474-1F3FC\",\"image\":\"1f474-1f3fc.png\",\"sheet_x\":17,\"sheet_y\":28,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F474-1F3FD\":{\"unified\":\"1F474-1F3FD\",\"image\":\"1f474-1f3fd.png\",\"sheet_x\":17,\"sheet_y\":29,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F474-1F3FE\":{\"unified\":\"1F474-1F3FE\",\"image\":\"1f474-1f3fe.png\",\"sheet_x\":17,\"sheet_y\":30,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F474-1F3FF\":{\"unified\":\"1F474-1F3FF\",\"image\":\"1f474-1f3ff.png\",\"sheet_x\":17,\"sheet_y\":31,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"partly_sunny_rain\":{\"name\":\"White Sun Behind Cloud with Rain\",\"unified\":\"1F326\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f326.png\",\"sheet_x\":6,\"sheet_y\":16,\"short_name\":\"partly_sunny_rain\",\"short_names\":[\"partly_sunny_rain\",\"sun_behind_rain_cloud\"],\"category\":\"Nature\",\"sort_order\":127,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"koko\":{\"name\":\"Squared Katakana Koko\",\"unified\":\"1F201\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":\"E203\",\"google\":\"FEB24\",\"image\":\"1f201.png\",\"sheet_x\":5,\"sheet_y\":6,\"short_name\":\"koko\",\"short_names\":[\"koko\"],\"category\":\"Symbols\",\"sort_order\":127,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"bar_chart\":{\"name\":\"Bar Chart\",\"unified\":\"1F4CA\",\"variations\":[],\"docomo\":null,\"au\":\"E574\",\"softbank\":\"E14A\",\"google\":\"FE54A\",\"image\":\"1f4ca.png\",\"sheet_x\":21,\"sheet_y\":13,\"short_name\":\"bar_chart\",\"short_names\":[\"bar_chart\"],\"category\":\"Objects\",\"sort_order\":128,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"cloud\":{\"name\":\"Cloud\",\"unified\":\"2601\",\"variations\":[\"2601-FE0F\"],\"docomo\":\"E63F\",\"au\":\"E48D\",\"softbank\":\"E049\",\"google\":\"FE001\",\"image\":\"2601.png\",\"sheet_x\":1,\"sheet_y\":1,\"short_name\":\"cloud\",\"short_names\":[\"cloud\"],\"category\":\"Nature\",\"sort_order\":128,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"ng\":{\"name\":\"Squared Ng\",\"unified\":\"1F196\",\"variations\":[],\"docomo\":\"E72F\",\"au\":null,\"softbank\":null,\"google\":\"FEB28\",\"image\":\"1f196.png\",\"sheet_x\":5,\"sheet_y\":1,\"short_name\":\"ng\",\"short_names\":[\"ng\"],\"category\":\"Symbols\",\"sort_order\":128,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-lt\":{\"name\":\"Regional Indicator Symbol Letters LT\",\"unified\":\"1F1F1-1F1F9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f1-1f1f9.png\",\"sheet_x\":36,\"sheet_y\":7,\"short_name\":\"flag-lt\",\"short_names\":[\"flag-lt\"],\"category\":\"Flags\",\"sort_order\":128,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"older_woman\":{\"name\":\"Older Woman\",\"unified\":\"1F475\",\"variations\":[],\"docomo\":null,\"au\":\"EB17\",\"softbank\":\"E519\",\"google\":\"FE1A8\",\"image\":\"1f475.png\",\"sheet_x\":17,\"sheet_y\":32,\"short_name\":\"older_woman\",\"short_names\":[\"older_woman\"],\"category\":\"People\",\"sort_order\":128,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F475-1F3FB\":{\"unified\":\"1F475-1F3FB\",\"image\":\"1f475-1f3fb.png\",\"sheet_x\":17,\"sheet_y\":33,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F475-1F3FC\":{\"unified\":\"1F475-1F3FC\",\"image\":\"1f475-1f3fc.png\",\"sheet_x\":17,\"sheet_y\":34,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F475-1F3FD\":{\"unified\":\"1F475-1F3FD\",\"image\":\"1f475-1f3fd.png\",\"sheet_x\":17,\"sheet_y\":35,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F475-1F3FE\":{\"unified\":\"1F475-1F3FE\",\"image\":\"1f475-1f3fe.png\",\"sheet_x\":17,\"sheet_y\":36,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F475-1F3FF\":{\"unified\":\"1F475-1F3FF\",\"image\":\"1f475-1f3ff.png\",\"sheet_x\":17,\"sheet_y\":37,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"rain_cloud\":{\"name\":\"Cloud with Rain\",\"unified\":\"1F327\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f327.png\",\"sheet_x\":6,\"sheet_y\":17,\"short_name\":\"rain_cloud\",\"short_names\":[\"rain_cloud\"],\"category\":\"Nature\",\"sort_order\":129,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-lu\":{\"name\":\"Regional Indicator Symbol Letters LU\",\"unified\":\"1F1F1-1F1FA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f1-1f1fa.png\",\"sheet_x\":36,\"sheet_y\":8,\"short_name\":\"flag-lu\",\"short_names\":[\"flag-lu\"],\"category\":\"Flags\",\"sort_order\":129,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"chart_with_upwards_trend\":{\"name\":\"Chart with Upwards Trend\",\"unified\":\"1F4C8\",\"variations\":[],\"docomo\":null,\"au\":\"E575\",\"softbank\":\"E14A\",\"google\":\"FE54B\",\"image\":\"1f4c8.png\",\"sheet_x\":21,\"sheet_y\":11,\"short_name\":\"chart_with_upwards_trend\",\"short_names\":[\"chart_with_upwards_trend\"],\"category\":\"Objects\",\"sort_order\":129,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"ok\":{\"name\":\"Squared Ok\",\"unified\":\"1F197\",\"variations\":[],\"docomo\":\"E70B\",\"au\":\"E5AD\",\"softbank\":\"E24D\",\"google\":\"FEB27\",\"image\":\"1f197.png\",\"sheet_x\":5,\"sheet_y\":2,\"short_name\":\"ok\",\"short_names\":[\"ok\"],\"category\":\"Symbols\",\"sort_order\":129,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"man_with_gua_pi_mao\":{\"name\":\"Man with Gua Pi Mao\",\"unified\":\"1F472\",\"variations\":[],\"docomo\":null,\"au\":\"EB14\",\"softbank\":\"E516\",\"google\":\"FE1A5\",\"image\":\"1f472.png\",\"sheet_x\":17,\"sheet_y\":14,\"short_name\":\"man_with_gua_pi_mao\",\"short_names\":[\"man_with_gua_pi_mao\"],\"category\":\"People\",\"sort_order\":129,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F472-1F3FB\":{\"unified\":\"1F472-1F3FB\",\"image\":\"1f472-1f3fb.png\",\"sheet_x\":17,\"sheet_y\":15,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F472-1F3FC\":{\"unified\":\"1F472-1F3FC\",\"image\":\"1f472-1f3fc.png\",\"sheet_x\":17,\"sheet_y\":16,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F472-1F3FD\":{\"unified\":\"1F472-1F3FD\",\"image\":\"1f472-1f3fd.png\",\"sheet_x\":17,\"sheet_y\":17,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F472-1F3FE\":{\"unified\":\"1F472-1F3FE\",\"image\":\"1f472-1f3fe.png\",\"sheet_x\":17,\"sheet_y\":18,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F472-1F3FF\":{\"unified\":\"1F472-1F3FF\",\"image\":\"1f472-1f3ff.png\",\"sheet_x\":17,\"sheet_y\":19,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"thunder_cloud_and_rain\":{\"name\":\"Thunder Cloud and Rain\",\"unified\":\"26C8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"26c8.png\",\"sheet_x\":2,\"sheet_y\":22,\"short_name\":\"thunder_cloud_and_rain\",\"short_names\":[\"thunder_cloud_and_rain\"],\"category\":\"Nature\",\"sort_order\":130,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"up\":{\"name\":\"Squared Up with Exclamation Mark\",\"unified\":\"1F199\",\"variations\":[],\"docomo\":null,\"au\":\"E50F\",\"softbank\":\"E213\",\"google\":\"FEB37\",\"image\":\"1f199.png\",\"sheet_x\":5,\"sheet_y\":4,\"short_name\":\"up\",\"short_names\":[\"up\"],\"category\":\"Symbols\",\"sort_order\":130,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"man_with_turban\":{\"name\":\"Man with Turban\",\"unified\":\"1F473\",\"variations\":[],\"docomo\":null,\"au\":\"EB15\",\"softbank\":\"E517\",\"google\":\"FE1A6\",\"image\":\"1f473.png\",\"sheet_x\":17,\"sheet_y\":20,\"short_name\":\"man_with_turban\",\"short_names\":[\"man_with_turban\"],\"category\":\"People\",\"sort_order\":130,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F473-1F3FB\":{\"unified\":\"1F473-1F3FB\",\"image\":\"1f473-1f3fb.png\",\"sheet_x\":17,\"sheet_y\":21,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F473-1F3FC\":{\"unified\":\"1F473-1F3FC\",\"image\":\"1f473-1f3fc.png\",\"sheet_x\":17,\"sheet_y\":22,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F473-1F3FD\":{\"unified\":\"1F473-1F3FD\",\"image\":\"1f473-1f3fd.png\",\"sheet_x\":17,\"sheet_y\":23,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F473-1F3FE\":{\"unified\":\"1F473-1F3FE\",\"image\":\"1f473-1f3fe.png\",\"sheet_x\":17,\"sheet_y\":24,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F473-1F3FF\":{\"unified\":\"1F473-1F3FF\",\"image\":\"1f473-1f3ff.png\",\"sheet_x\":17,\"sheet_y\":25,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"chart_with_downwards_trend\":{\"name\":\"Chart with Downwards Trend\",\"unified\":\"1F4C9\",\"variations\":[],\"docomo\":null,\"au\":\"E576\",\"softbank\":null,\"google\":\"FE54C\",\"image\":\"1f4c9.png\",\"sheet_x\":21,\"sheet_y\":12,\"short_name\":\"chart_with_downwards_trend\",\"short_names\":[\"chart_with_downwards_trend\"],\"category\":\"Objects\",\"sort_order\":130,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-mo\":{\"name\":\"Regional Indicator Symbol Letters MO\",\"unified\":\"1F1F2-1F1F4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1f4.png\",\"sheet_x\":36,\"sheet_y\":22,\"short_name\":\"flag-mo\",\"short_names\":[\"flag-mo\"],\"category\":\"Flags\",\"sort_order\":130,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"page_facing_up\":{\"name\":\"Page Facing Up\",\"unified\":\"1F4C4\",\"variations\":[],\"docomo\":\"E689\",\"au\":\"E569\",\"softbank\":\"E301\",\"google\":\"FE541\",\"image\":\"1f4c4.png\",\"sheet_x\":21,\"sheet_y\":7,\"short_name\":\"page_facing_up\",\"short_names\":[\"page_facing_up\"],\"category\":\"Objects\",\"sort_order\":131,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"cool\":{\"name\":\"Squared Cool\",\"unified\":\"1F192\",\"variations\":[],\"docomo\":null,\"au\":\"EA85\",\"softbank\":\"E214\",\"google\":\"FEB38\",\"image\":\"1f192.png\",\"sheet_x\":4,\"sheet_y\":38,\"short_name\":\"cool\",\"short_names\":[\"cool\"],\"category\":\"Symbols\",\"sort_order\":131,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"lightning\":{\"name\":\"Cloud with Lightning\",\"unified\":\"1F329\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f329.png\",\"sheet_x\":6,\"sheet_y\":19,\"short_name\":\"lightning\",\"short_names\":[\"lightning\",\"lightning_cloud\"],\"category\":\"Nature\",\"sort_order\":131,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-mk\":{\"name\":\"Regional Indicator Symbol Letters MK\",\"unified\":\"1F1F2-1F1F0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1f0.png\",\"sheet_x\":36,\"sheet_y\":18,\"short_name\":\"flag-mk\",\"short_names\":[\"flag-mk\"],\"category\":\"Flags\",\"sort_order\":131,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"cop\":{\"name\":\"Police Officer\",\"unified\":\"1F46E\",\"variations\":[],\"docomo\":null,\"au\":\"E5DD\",\"softbank\":\"E152\",\"google\":\"FE1A1\",\"image\":\"1f46e.png\",\"sheet_x\":16,\"sheet_y\":36,\"short_name\":\"cop\",\"short_names\":[\"cop\"],\"category\":\"People\",\"sort_order\":131,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F46E-1F3FB\":{\"unified\":\"1F46E-1F3FB\",\"image\":\"1f46e-1f3fb.png\",\"sheet_x\":16,\"sheet_y\":37,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F46E-1F3FC\":{\"unified\":\"1F46E-1F3FC\",\"image\":\"1f46e-1f3fc.png\",\"sheet_x\":16,\"sheet_y\":38,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F46E-1F3FD\":{\"unified\":\"1F46E-1F3FD\",\"image\":\"1f46e-1f3fd.png\",\"sheet_x\":16,\"sheet_y\":39,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F46E-1F3FE\":{\"unified\":\"1F46E-1F3FE\",\"image\":\"1f46e-1f3fe.png\",\"sheet_x\":16,\"sheet_y\":40,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F46E-1F3FF\":{\"unified\":\"1F46E-1F3FF\",\"image\":\"1f46e-1f3ff.png\",\"sheet_x\":17,\"sheet_y\":0,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"flag-mg\":{\"name\":\"Regional Indicator Symbol Letters MG\",\"unified\":\"1F1F2-1F1EC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1ec.png\",\"sheet_x\":36,\"sheet_y\":16,\"short_name\":\"flag-mg\",\"short_names\":[\"flag-mg\"],\"category\":\"Flags\",\"sort_order\":132,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"date\":{\"name\":\"Calendar\",\"unified\":\"1F4C5\",\"variations\":[],\"docomo\":null,\"au\":\"E563\",\"softbank\":null,\"google\":\"FE542\",\"image\":\"1f4c5.png\",\"sheet_x\":21,\"sheet_y\":8,\"short_name\":\"date\",\"short_names\":[\"date\"],\"category\":\"Objects\",\"sort_order\":132,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"new\":{\"name\":\"Squared New\",\"unified\":\"1F195\",\"variations\":[],\"docomo\":\"E6DD\",\"au\":\"E5B5\",\"softbank\":\"E212\",\"google\":\"FEB36\",\"image\":\"1f195.png\",\"sheet_x\":5,\"sheet_y\":0,\"short_name\":\"new\",\"short_names\":[\"new\"],\"category\":\"Symbols\",\"sort_order\":132,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"zap\":{\"name\":\"High Voltage Sign\",\"unified\":\"26A1\",\"variations\":[\"26A1-FE0F\"],\"docomo\":\"E642\",\"au\":\"E487\",\"softbank\":\"E13D\",\"google\":\"FE004\",\"image\":\"26a1.png\",\"sheet_x\":2,\"sheet_y\":13,\"short_name\":\"zap\",\"short_names\":[\"zap\"],\"category\":\"Nature\",\"sort_order\":132,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"construction_worker\":{\"name\":\"Construction Worker\",\"unified\":\"1F477\",\"variations\":[],\"docomo\":null,\"au\":\"EB19\",\"softbank\":\"E51B\",\"google\":\"FE1AA\",\"image\":\"1f477.png\",\"sheet_x\":18,\"sheet_y\":3,\"short_name\":\"construction_worker\",\"short_names\":[\"construction_worker\"],\"category\":\"People\",\"sort_order\":132,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F477-1F3FB\":{\"unified\":\"1F477-1F3FB\",\"image\":\"1f477-1f3fb.png\",\"sheet_x\":18,\"sheet_y\":4,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F477-1F3FC\":{\"unified\":\"1F477-1F3FC\",\"image\":\"1f477-1f3fc.png\",\"sheet_x\":18,\"sheet_y\":5,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F477-1F3FD\":{\"unified\":\"1F477-1F3FD\",\"image\":\"1f477-1f3fd.png\",\"sheet_x\":18,\"sheet_y\":6,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F477-1F3FE\":{\"unified\":\"1F477-1F3FE\",\"image\":\"1f477-1f3fe.png\",\"sheet_x\":18,\"sheet_y\":7,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F477-1F3FF\":{\"unified\":\"1F477-1F3FF\",\"image\":\"1f477-1f3ff.png\",\"sheet_x\":18,\"sheet_y\":8,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"guardsman\":{\"name\":\"Guardsman\",\"unified\":\"1F482\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":\"E51E\",\"google\":\"FE1B5\",\"image\":\"1f482.png\",\"sheet_x\":18,\"sheet_y\":34,\"short_name\":\"guardsman\",\"short_names\":[\"guardsman\"],\"category\":\"People\",\"sort_order\":133,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F482-1F3FB\":{\"unified\":\"1F482-1F3FB\",\"image\":\"1f482-1f3fb.png\",\"sheet_x\":18,\"sheet_y\":35,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F482-1F3FC\":{\"unified\":\"1F482-1F3FC\",\"image\":\"1f482-1f3fc.png\",\"sheet_x\":18,\"sheet_y\":36,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F482-1F3FD\":{\"unified\":\"1F482-1F3FD\",\"image\":\"1f482-1f3fd.png\",\"sheet_x\":18,\"sheet_y\":37,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F482-1F3FE\":{\"unified\":\"1F482-1F3FE\",\"image\":\"1f482-1f3fe.png\",\"sheet_x\":18,\"sheet_y\":38,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F482-1F3FF\":{\"unified\":\"1F482-1F3FF\",\"image\":\"1f482-1f3ff.png\",\"sheet_x\":18,\"sheet_y\":39,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"fire\":{\"name\":\"Fire\",\"unified\":\"1F525\",\"variations\":[],\"docomo\":null,\"au\":\"E47B\",\"softbank\":\"E11D\",\"google\":\"FE4F6\",\"image\":\"1f525.png\",\"sheet_x\":23,\"sheet_y\":21,\"short_name\":\"fire\",\"short_names\":[\"fire\"],\"category\":\"Nature\",\"sort_order\":133,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"free\":{\"name\":\"Squared Free\",\"unified\":\"1F193\",\"variations\":[],\"docomo\":\"E6D7\",\"au\":\"E578\",\"softbank\":null,\"google\":\"FEB21\",\"image\":\"1f193.png\",\"sheet_x\":4,\"sheet_y\":39,\"short_name\":\"free\",\"short_names\":[\"free\"],\"category\":\"Symbols\",\"sort_order\":133,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-mw\":{\"name\":\"Regional Indicator Symbol Letters MW\",\"unified\":\"1F1F2-1F1FC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1fc.png\",\"sheet_x\":36,\"sheet_y\":30,\"short_name\":\"flag-mw\",\"short_names\":[\"flag-mw\"],\"category\":\"Flags\",\"sort_order\":133,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"calendar\":{\"name\":\"Tear-off Calendar\",\"unified\":\"1F4C6\",\"variations\":[],\"docomo\":null,\"au\":\"E56A\",\"softbank\":null,\"google\":\"FE549\",\"image\":\"1f4c6.png\",\"sheet_x\":21,\"sheet_y\":9,\"short_name\":\"calendar\",\"short_names\":[\"calendar\"],\"category\":\"Objects\",\"sort_order\":133,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"spiral_calendar_pad\":{\"name\":\"Spiral Calendar Pad\",\"unified\":\"1F5D3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5d3.png\",\"sheet_x\":26,\"sheet_y\":0,\"short_name\":\"spiral_calendar_pad\",\"short_names\":[\"spiral_calendar_pad\"],\"category\":\"Objects\",\"sort_order\":134,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"boom\":{\"name\":\"Collision Symbol\",\"unified\":\"1F4A5\",\"variations\":[],\"docomo\":\"E705\",\"au\":\"E5B0\",\"softbank\":null,\"google\":\"FEB5A\",\"image\":\"1f4a5.png\",\"sheet_x\":20,\"sheet_y\":12,\"short_name\":\"boom\",\"short_names\":[\"boom\",\"collision\"],\"category\":\"Nature\",\"sort_order\":134,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-my\":{\"name\":\"Regional Indicator Symbol Letters MY\",\"unified\":\"1F1F2-1F1FE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1fe.png\",\"sheet_x\":36,\"sheet_y\":32,\"short_name\":\"flag-my\",\"short_names\":[\"flag-my\"],\"category\":\"Flags\",\"sort_order\":134,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"zero\":{\"name\":\"Keycap 0\",\"unified\":\"0030-20E3\",\"variations\":[\"0030-FE0F-20E3\"],\"docomo\":\"E6EB\",\"au\":\"E5AC\",\"softbank\":\"E225\",\"google\":\"FE837\",\"image\":\"0030-20e3.png\",\"sheet_x\":32,\"sheet_y\":23,\"short_name\":\"zero\",\"short_names\":[\"zero\"],\"category\":\"Symbols\",\"sort_order\":134,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"sleuth_or_spy\":{\"name\":\"Sleuth or Spy\",\"unified\":\"1F575\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f575.png\",\"sheet_x\":24,\"sheet_y\":39,\"short_name\":\"sleuth_or_spy\",\"short_names\":[\"sleuth_or_spy\"],\"category\":\"People\",\"sort_order\":134,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F575-1F3FB\":{\"unified\":\"1F575-1F3FB\",\"image\":\"1f575-1f3fb.png\",\"sheet_x\":24,\"sheet_y\":40,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":false,\"has_img_emojione\":true},\"1F575-1F3FC\":{\"unified\":\"1F575-1F3FC\",\"image\":\"1f575-1f3fc.png\",\"sheet_x\":25,\"sheet_y\":0,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":false,\"has_img_emojione\":true},\"1F575-1F3FD\":{\"unified\":\"1F575-1F3FD\",\"image\":\"1f575-1f3fd.png\",\"sheet_x\":25,\"sheet_y\":1,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":false,\"has_img_emojione\":true},\"1F575-1F3FE\":{\"unified\":\"1F575-1F3FE\",\"image\":\"1f575-1f3fe.png\",\"sheet_x\":25,\"sheet_y\":2,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":false,\"has_img_emojione\":true},\"1F575-1F3FF\":{\"unified\":\"1F575-1F3FF\",\"image\":\"1f575-1f3ff.png\",\"sheet_x\":25,\"sheet_y\":3,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":false,\"has_img_emojione\":true}},\"emoticons\":[]},\"one\":{\"name\":\"Keycap 1\",\"unified\":\"0031-20E3\",\"variations\":[\"0031-FE0F-20E3\"],\"docomo\":\"E6E2\",\"au\":\"E522\",\"softbank\":\"E21C\",\"google\":\"FE82E\",\"image\":\"0031-20e3.png\",\"sheet_x\":32,\"sheet_y\":24,\"short_name\":\"one\",\"short_names\":[\"one\"],\"category\":\"Symbols\",\"sort_order\":135,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"santa\":{\"name\":\"Father Christmas\",\"unified\":\"1F385\",\"variations\":[],\"docomo\":null,\"au\":\"EAF0\",\"softbank\":\"E448\",\"google\":\"FE513\",\"image\":\"1f385.png\",\"sheet_x\":8,\"sheet_y\":29,\"short_name\":\"santa\",\"short_names\":[\"santa\"],\"category\":\"People\",\"sort_order\":135,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F385-1F3FB\":{\"unified\":\"1F385-1F3FB\",\"image\":\"1f385-1f3fb.png\",\"sheet_x\":8,\"sheet_y\":30,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F385-1F3FC\":{\"unified\":\"1F385-1F3FC\",\"image\":\"1f385-1f3fc.png\",\"sheet_x\":8,\"sheet_y\":31,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F385-1F3FD\":{\"unified\":\"1F385-1F3FD\",\"image\":\"1f385-1f3fd.png\",\"sheet_x\":8,\"sheet_y\":32,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F385-1F3FE\":{\"unified\":\"1F385-1F3FE\",\"image\":\"1f385-1f3fe.png\",\"sheet_x\":8,\"sheet_y\":33,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F385-1F3FF\":{\"unified\":\"1F385-1F3FF\",\"image\":\"1f385-1f3ff.png\",\"sheet_x\":8,\"sheet_y\":34,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"card_index\":{\"name\":\"Card Index\",\"unified\":\"1F4C7\",\"variations\":[],\"docomo\":\"E683\",\"au\":\"E56C\",\"softbank\":\"E148\",\"google\":\"FE54D\",\"image\":\"1f4c7.png\",\"sheet_x\":21,\"sheet_y\":10,\"short_name\":\"card_index\",\"short_names\":[\"card_index\"],\"category\":\"Objects\",\"sort_order\":135,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"snowflake\":{\"name\":\"Snowflake\",\"unified\":\"2744\",\"variations\":[\"2744-FE0F\"],\"docomo\":null,\"au\":\"E48A\",\"softbank\":null,\"google\":\"FE00E\",\"image\":\"2744.png\",\"sheet_x\":4,\"sheet_y\":1,\"short_name\":\"snowflake\",\"short_names\":[\"snowflake\"],\"category\":\"Nature\",\"sort_order\":135,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-mv\":{\"name\":\"Regional Indicator Symbol Letters MV\",\"unified\":\"1F1F2-1F1FB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1fb.png\",\"sheet_x\":36,\"sheet_y\":29,\"short_name\":\"flag-mv\",\"short_names\":[\"flag-mv\"],\"category\":\"Flags\",\"sort_order\":135,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"snow_cloud\":{\"name\":\"Cloud with Snow\",\"unified\":\"1F328\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f328.png\",\"sheet_x\":6,\"sheet_y\":18,\"short_name\":\"snow_cloud\",\"short_names\":[\"snow_cloud\"],\"category\":\"Nature\",\"sort_order\":136,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"angel\":{\"name\":\"Baby Angel\",\"unified\":\"1F47C\",\"variations\":[],\"docomo\":null,\"au\":\"E5BF\",\"softbank\":\"E04E\",\"google\":\"FE1AF\",\"image\":\"1f47c.png\",\"sheet_x\":18,\"sheet_y\":18,\"short_name\":\"angel\",\"short_names\":[\"angel\"],\"category\":\"People\",\"sort_order\":136,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F47C-1F3FB\":{\"unified\":\"1F47C-1F3FB\",\"image\":\"1f47c-1f3fb.png\",\"sheet_x\":18,\"sheet_y\":19,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F47C-1F3FC\":{\"unified\":\"1F47C-1F3FC\",\"image\":\"1f47c-1f3fc.png\",\"sheet_x\":18,\"sheet_y\":20,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F47C-1F3FD\":{\"unified\":\"1F47C-1F3FD\",\"image\":\"1f47c-1f3fd.png\",\"sheet_x\":18,\"sheet_y\":21,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F47C-1F3FE\":{\"unified\":\"1F47C-1F3FE\",\"image\":\"1f47c-1f3fe.png\",\"sheet_x\":18,\"sheet_y\":22,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F47C-1F3FF\":{\"unified\":\"1F47C-1F3FF\",\"image\":\"1f47c-1f3ff.png\",\"sheet_x\":18,\"sheet_y\":23,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"two\":{\"name\":\"Keycap 2\",\"unified\":\"0032-20E3\",\"variations\":[\"0032-FE0F-20E3\"],\"docomo\":\"E6E3\",\"au\":\"E523\",\"softbank\":\"E21D\",\"google\":\"FE82F\",\"image\":\"0032-20e3.png\",\"sheet_x\":32,\"sheet_y\":25,\"short_name\":\"two\",\"short_names\":[\"two\"],\"category\":\"Symbols\",\"sort_order\":136,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"card_file_box\":{\"name\":\"Card File Box\",\"unified\":\"1F5C3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5c3.png\",\"sheet_x\":25,\"sheet_y\":37,\"short_name\":\"card_file_box\",\"short_names\":[\"card_file_box\"],\"category\":\"Objects\",\"sort_order\":136,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ml\":{\"name\":\"Regional Indicator Symbol Letters ML\",\"unified\":\"1F1F2-1F1F1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1f1.png\",\"sheet_x\":36,\"sheet_y\":19,\"short_name\":\"flag-ml\",\"short_names\":[\"flag-ml\"],\"category\":\"Flags\",\"sort_order\":136,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"three\":{\"name\":\"Keycap 3\",\"unified\":\"0033-20E3\",\"variations\":[\"0033-FE0F-20E3\"],\"docomo\":\"E6E4\",\"au\":\"E524\",\"softbank\":\"E21E\",\"google\":\"FE830\",\"image\":\"0033-20e3.png\",\"sheet_x\":32,\"sheet_y\":26,\"short_name\":\"three\",\"short_names\":[\"three\"],\"category\":\"Symbols\",\"sort_order\":137,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"princess\":{\"name\":\"Princess\",\"unified\":\"1F478\",\"variations\":[],\"docomo\":null,\"au\":\"EB1A\",\"softbank\":\"E51C\",\"google\":\"FE1AB\",\"image\":\"1f478.png\",\"sheet_x\":18,\"sheet_y\":9,\"short_name\":\"princess\",\"short_names\":[\"princess\"],\"category\":\"People\",\"sort_order\":137,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F478-1F3FB\":{\"unified\":\"1F478-1F3FB\",\"image\":\"1f478-1f3fb.png\",\"sheet_x\":18,\"sheet_y\":10,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F478-1F3FC\":{\"unified\":\"1F478-1F3FC\",\"image\":\"1f478-1f3fc.png\",\"sheet_x\":18,\"sheet_y\":11,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F478-1F3FD\":{\"unified\":\"1F478-1F3FD\",\"image\":\"1f478-1f3fd.png\",\"sheet_x\":18,\"sheet_y\":12,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F478-1F3FE\":{\"unified\":\"1F478-1F3FE\",\"image\":\"1f478-1f3fe.png\",\"sheet_x\":18,\"sheet_y\":13,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F478-1F3FF\":{\"unified\":\"1F478-1F3FF\",\"image\":\"1f478-1f3ff.png\",\"sheet_x\":18,\"sheet_y\":14,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"snowman\":{\"name\":\"Snowman\",\"unified\":\"2603\",\"variations\":[\"2603-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"2603.png\",\"sheet_x\":1,\"sheet_y\":3,\"short_name\":\"snowman\",\"short_names\":[\"snowman\"],\"category\":\"Nature\",\"sort_order\":137,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"ballot_box_with_ballot\":{\"name\":\"Ballot Box with Ballot\",\"unified\":\"1F5F3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5f3.png\",\"sheet_x\":26,\"sheet_y\":8,\"short_name\":\"ballot_box_with_ballot\",\"short_names\":[\"ballot_box_with_ballot\"],\"category\":\"Objects\",\"sort_order\":137,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-mt\":{\"name\":\"Regional Indicator Symbol Letters MT\",\"unified\":\"1F1F2-1F1F9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1f9.png\",\"sheet_x\":36,\"sheet_y\":27,\"short_name\":\"flag-mt\",\"short_names\":[\"flag-mt\"],\"category\":\"Flags\",\"sort_order\":137,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"file_cabinet\":{\"name\":\"File Cabinet\",\"unified\":\"1F5C4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5c4.png\",\"sheet_x\":25,\"sheet_y\":38,\"short_name\":\"file_cabinet\",\"short_names\":[\"file_cabinet\"],\"category\":\"Objects\",\"sort_order\":138,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"bride_with_veil\":{\"name\":\"Bride with Veil\",\"unified\":\"1F470\",\"variations\":[],\"docomo\":null,\"au\":\"EAE9\",\"softbank\":null,\"google\":\"FE1A3\",\"image\":\"1f470.png\",\"sheet_x\":17,\"sheet_y\":2,\"short_name\":\"bride_with_veil\",\"short_names\":[\"bride_with_veil\"],\"category\":\"People\",\"sort_order\":138,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F470-1F3FB\":{\"unified\":\"1F470-1F3FB\",\"image\":\"1f470-1f3fb.png\",\"sheet_x\":17,\"sheet_y\":3,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F470-1F3FC\":{\"unified\":\"1F470-1F3FC\",\"image\":\"1f470-1f3fc.png\",\"sheet_x\":17,\"sheet_y\":4,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F470-1F3FD\":{\"unified\":\"1F470-1F3FD\",\"image\":\"1f470-1f3fd.png\",\"sheet_x\":17,\"sheet_y\":5,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F470-1F3FE\":{\"unified\":\"1F470-1F3FE\",\"image\":\"1f470-1f3fe.png\",\"sheet_x\":17,\"sheet_y\":6,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F470-1F3FF\":{\"unified\":\"1F470-1F3FF\",\"image\":\"1f470-1f3ff.png\",\"sheet_x\":17,\"sheet_y\":7,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"flag-mh\":{\"name\":\"Regional Indicator Symbol Letters MH\",\"unified\":\"1F1F2-1F1ED\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1ed.png\",\"sheet_x\":36,\"sheet_y\":17,\"short_name\":\"flag-mh\",\"short_names\":[\"flag-mh\"],\"category\":\"Flags\",\"sort_order\":138,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"snowman_without_snow\":{\"name\":\"Snowman Without Snow\",\"unified\":\"26C4\",\"variations\":[\"26C4-FE0F\"],\"docomo\":\"E641\",\"au\":\"E485\",\"softbank\":\"E048\",\"google\":\"FE003\",\"image\":\"26c4.png\",\"sheet_x\":2,\"sheet_y\":20,\"short_name\":\"snowman_without_snow\",\"short_names\":[\"snowman_without_snow\"],\"category\":\"Nature\",\"sort_order\":138,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"four\":{\"name\":\"Keycap 4\",\"unified\":\"0034-20E3\",\"variations\":[\"0034-FE0F-20E3\"],\"docomo\":\"E6E5\",\"au\":\"E525\",\"softbank\":\"E21F\",\"google\":\"FE831\",\"image\":\"0034-20e3.png\",\"sheet_x\":32,\"sheet_y\":27,\"short_name\":\"four\",\"short_names\":[\"four\"],\"category\":\"Symbols\",\"sort_order\":138,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"clipboard\":{\"name\":\"Clipboard\",\"unified\":\"1F4CB\",\"variations\":[],\"docomo\":\"E689\",\"au\":\"E564\",\"softbank\":\"E301\",\"google\":\"FE548\",\"image\":\"1f4cb.png\",\"sheet_x\":21,\"sheet_y\":14,\"short_name\":\"clipboard\",\"short_names\":[\"clipboard\"],\"category\":\"Objects\",\"sort_order\":139,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"wind_blowing_face\":{\"name\":\"Wind Blowing Face\",\"unified\":\"1F32C\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f32c.png\",\"sheet_x\":6,\"sheet_y\":22,\"short_name\":\"wind_blowing_face\",\"short_names\":[\"wind_blowing_face\"],\"category\":\"Nature\",\"sort_order\":139,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"five\":{\"name\":\"Keycap 5\",\"unified\":\"0035-20E3\",\"variations\":[\"0035-FE0F-20E3\"],\"docomo\":\"E6E6\",\"au\":\"E526\",\"softbank\":\"E220\",\"google\":\"FE832\",\"image\":\"0035-20e3.png\",\"sheet_x\":32,\"sheet_y\":28,\"short_name\":\"five\",\"short_names\":[\"five\"],\"category\":\"Symbols\",\"sort_order\":139,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"walking\":{\"name\":\"Pedestrian\",\"unified\":\"1F6B6\",\"variations\":[],\"docomo\":\"E733\",\"au\":\"EB72\",\"softbank\":\"E201\",\"google\":\"FE7F0\",\"image\":\"1f6b6.png\",\"sheet_x\":30,\"sheet_y\":40,\"short_name\":\"walking\",\"short_names\":[\"walking\"],\"category\":\"People\",\"sort_order\":139,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F6B6-1F3FB\":{\"unified\":\"1F6B6-1F3FB\",\"image\":\"1f6b6-1f3fb.png\",\"sheet_x\":31,\"sheet_y\":0,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6B6-1F3FC\":{\"unified\":\"1F6B6-1F3FC\",\"image\":\"1f6b6-1f3fc.png\",\"sheet_x\":31,\"sheet_y\":1,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6B6-1F3FD\":{\"unified\":\"1F6B6-1F3FD\",\"image\":\"1f6b6-1f3fd.png\",\"sheet_x\":31,\"sheet_y\":2,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6B6-1F3FE\":{\"unified\":\"1F6B6-1F3FE\",\"image\":\"1f6b6-1f3fe.png\",\"sheet_x\":31,\"sheet_y\":3,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F6B6-1F3FF\":{\"unified\":\"1F6B6-1F3FF\",\"image\":\"1f6b6-1f3ff.png\",\"sheet_x\":31,\"sheet_y\":4,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"flag-mq\":{\"name\":\"Regional Indicator Symbol Letters MQ\",\"unified\":\"1F1F2-1F1F6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1f6.png\",\"sheet_x\":36,\"sheet_y\":24,\"short_name\":\"flag-mq\",\"short_names\":[\"flag-mq\"],\"category\":\"Flags\",\"sort_order\":139,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"six\":{\"name\":\"Keycap 6\",\"unified\":\"0036-20E3\",\"variations\":[\"0036-FE0F-20E3\"],\"docomo\":\"E6E7\",\"au\":\"E527\",\"softbank\":\"E221\",\"google\":\"FE833\",\"image\":\"0036-20e3.png\",\"sheet_x\":32,\"sheet_y\":29,\"short_name\":\"six\",\"short_names\":[\"six\"],\"category\":\"Symbols\",\"sort_order\":140,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"dash\":{\"name\":\"Dash Symbol\",\"unified\":\"1F4A8\",\"variations\":[],\"docomo\":\"E708\",\"au\":\"E4F4\",\"softbank\":\"E330\",\"google\":\"FEB5D\",\"image\":\"1f4a8.png\",\"sheet_x\":20,\"sheet_y\":15,\"short_name\":\"dash\",\"short_names\":[\"dash\"],\"category\":\"Nature\",\"sort_order\":140,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-mr\":{\"name\":\"Regional Indicator Symbol Letters MR\",\"unified\":\"1F1F2-1F1F7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1f7.png\",\"sheet_x\":36,\"sheet_y\":25,\"short_name\":\"flag-mr\",\"short_names\":[\"flag-mr\"],\"category\":\"Flags\",\"sort_order\":140,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"runner\":{\"name\":\"Runner\",\"unified\":\"1F3C3\",\"variations\":[],\"docomo\":\"E733\",\"au\":\"E46B\",\"softbank\":\"E115\",\"google\":\"FE7D9\",\"image\":\"1f3c3.png\",\"sheet_x\":10,\"sheet_y\":9,\"short_name\":\"runner\",\"short_names\":[\"runner\",\"running\"],\"category\":\"People\",\"sort_order\":140,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F3C3-1F3FB\":{\"unified\":\"1F3C3-1F3FB\",\"image\":\"1f3c3-1f3fb.png\",\"sheet_x\":10,\"sheet_y\":10,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F3C3-1F3FC\":{\"unified\":\"1F3C3-1F3FC\",\"image\":\"1f3c3-1f3fc.png\",\"sheet_x\":10,\"sheet_y\":11,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F3C3-1F3FD\":{\"unified\":\"1F3C3-1F3FD\",\"image\":\"1f3c3-1f3fd.png\",\"sheet_x\":10,\"sheet_y\":12,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F3C3-1F3FE\":{\"unified\":\"1F3C3-1F3FE\",\"image\":\"1f3c3-1f3fe.png\",\"sheet_x\":10,\"sheet_y\":13,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F3C3-1F3FF\":{\"unified\":\"1F3C3-1F3FF\",\"image\":\"1f3c3-1f3ff.png\",\"sheet_x\":10,\"sheet_y\":14,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"spiral_note_pad\":{\"name\":\"Spiral Note Pad\",\"unified\":\"1F5D2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5d2.png\",\"sheet_x\":25,\"sheet_y\":40,\"short_name\":\"spiral_note_pad\",\"short_names\":[\"spiral_note_pad\"],\"category\":\"Objects\",\"sort_order\":140,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"seven\":{\"name\":\"Keycap 7\",\"unified\":\"0037-20E3\",\"variations\":[\"0037-FE0F-20E3\"],\"docomo\":\"E6E8\",\"au\":\"E528\",\"softbank\":\"E222\",\"google\":\"FE834\",\"image\":\"0037-20e3.png\",\"sheet_x\":32,\"sheet_y\":30,\"short_name\":\"seven\",\"short_names\":[\"seven\"],\"category\":\"Symbols\",\"sort_order\":141,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"tornado\":{\"name\":\"Cloud with Tornado\",\"unified\":\"1F32A\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f32a.png\",\"sheet_x\":6,\"sheet_y\":20,\"short_name\":\"tornado\",\"short_names\":[\"tornado\",\"tornado_cloud\"],\"category\":\"Nature\",\"sort_order\":141,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"file_folder\":{\"name\":\"File Folder\",\"unified\":\"1F4C1\",\"variations\":[],\"docomo\":null,\"au\":\"E58F\",\"softbank\":null,\"google\":\"FE543\",\"image\":\"1f4c1.png\",\"sheet_x\":21,\"sheet_y\":4,\"short_name\":\"file_folder\",\"short_names\":[\"file_folder\"],\"category\":\"Objects\",\"sort_order\":141,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-mu\":{\"name\":\"Regional Indicator Symbol Letters MU\",\"unified\":\"1F1F2-1F1FA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1fa.png\",\"sheet_x\":36,\"sheet_y\":28,\"short_name\":\"flag-mu\",\"short_names\":[\"flag-mu\"],\"category\":\"Flags\",\"sort_order\":141,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"dancer\":{\"name\":\"Dancer\",\"unified\":\"1F483\",\"variations\":[],\"docomo\":null,\"au\":\"EB1C\",\"softbank\":\"E51F\",\"google\":\"FE1B6\",\"image\":\"1f483.png\",\"sheet_x\":18,\"sheet_y\":40,\"short_name\":\"dancer\",\"short_names\":[\"dancer\"],\"category\":\"People\",\"sort_order\":141,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F483-1F3FB\":{\"unified\":\"1F483-1F3FB\",\"image\":\"1f483-1f3fb.png\",\"sheet_x\":19,\"sheet_y\":0,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F483-1F3FC\":{\"unified\":\"1F483-1F3FC\",\"image\":\"1f483-1f3fc.png\",\"sheet_x\":19,\"sheet_y\":1,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F483-1F3FD\":{\"unified\":\"1F483-1F3FD\",\"image\":\"1f483-1f3fd.png\",\"sheet_x\":19,\"sheet_y\":2,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F483-1F3FE\":{\"unified\":\"1F483-1F3FE\",\"image\":\"1f483-1f3fe.png\",\"sheet_x\":19,\"sheet_y\":3,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F483-1F3FF\":{\"unified\":\"1F483-1F3FF\",\"image\":\"1f483-1f3ff.png\",\"sheet_x\":19,\"sheet_y\":4,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"open_file_folder\":{\"name\":\"Open File Folder\",\"unified\":\"1F4C2\",\"variations\":[],\"docomo\":null,\"au\":\"E590\",\"softbank\":null,\"google\":\"FE544\",\"image\":\"1f4c2.png\",\"sheet_x\":21,\"sheet_y\":5,\"short_name\":\"open_file_folder\",\"short_names\":[\"open_file_folder\"],\"category\":\"Objects\",\"sort_order\":142,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"eight\":{\"name\":\"Keycap 8\",\"unified\":\"0038-20E3\",\"variations\":[\"0038-FE0F-20E3\"],\"docomo\":\"E6E9\",\"au\":\"E529\",\"softbank\":\"E223\",\"google\":\"FE835\",\"image\":\"0038-20e3.png\",\"sheet_x\":32,\"sheet_y\":31,\"short_name\":\"eight\",\"short_names\":[\"eight\"],\"category\":\"Symbols\",\"sort_order\":142,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"fog\":{\"name\":\"Fog\",\"unified\":\"1F32B\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f32b.png\",\"sheet_x\":6,\"sheet_y\":21,\"short_name\":\"fog\",\"short_names\":[\"fog\"],\"category\":\"Nature\",\"sort_order\":142,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"dancers\":{\"name\":\"Woman with Bunny Ears\",\"unified\":\"1F46F\",\"variations\":[],\"docomo\":null,\"au\":\"EADB\",\"softbank\":\"E429\",\"google\":\"FE1A2\",\"image\":\"1f46f.png\",\"sheet_x\":17,\"sheet_y\":1,\"short_name\":\"dancers\",\"short_names\":[\"dancers\"],\"category\":\"People\",\"sort_order\":142,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-yt\":{\"name\":\"Regional Indicator Symbol Letters YT\",\"unified\":\"1F1FE-1F1F9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1fe-1f1f9.png\",\"sheet_x\":38,\"sheet_y\":40,\"short_name\":\"flag-yt\",\"short_names\":[\"flag-yt\"],\"category\":\"Flags\",\"sort_order\":142,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-mx\":{\"name\":\"Regional Indicator Symbol Letters MX\",\"unified\":\"1F1F2-1F1FD\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1fd.png\",\"sheet_x\":36,\"sheet_y\":31,\"short_name\":\"flag-mx\",\"short_names\":[\"flag-mx\"],\"category\":\"Flags\",\"sort_order\":143,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"card_index_dividers\":{\"name\":\"Card Index Dividers\",\"unified\":\"1F5C2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5c2.png\",\"sheet_x\":25,\"sheet_y\":36,\"short_name\":\"card_index_dividers\",\"short_names\":[\"card_index_dividers\"],\"category\":\"Objects\",\"sort_order\":143,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"couple\":{\"name\":\"Man and Woman Holding Hands\",\"unified\":\"1F46B\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":\"E428\",\"google\":\"FE1A0\",\"image\":\"1f46b.png\",\"sheet_x\":16,\"sheet_y\":33,\"short_name\":\"couple\",\"short_names\":[\"couple\",\"man_and_woman_holding_hands\"],\"category\":\"People\",\"sort_order\":143,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"umbrella\":{\"name\":\"Umbrella\",\"unified\":\"2602\",\"variations\":[\"2602-FE0F\"],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"2602.png\",\"sheet_x\":1,\"sheet_y\":2,\"short_name\":\"umbrella\",\"short_names\":[\"umbrella\"],\"category\":\"Nature\",\"sort_order\":143,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"nine\":{\"name\":\"Keycap 9\",\"unified\":\"0039-20E3\",\"variations\":[\"0039-FE0F-20E3\"],\"docomo\":\"E6EA\",\"au\":\"E52A\",\"softbank\":\"E224\",\"google\":\"FE836\",\"image\":\"0039-20e3.png\",\"sheet_x\":32,\"sheet_y\":32,\"short_name\":\"nine\",\"short_names\":[\"nine\"],\"category\":\"Symbols\",\"sort_order\":143,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"rolled_up_newspaper\":{\"name\":\"Rolled-Up Newspaper\",\"unified\":\"1F5DE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5de.png\",\"sheet_x\":26,\"sheet_y\":3,\"short_name\":\"rolled_up_newspaper\",\"short_names\":[\"rolled_up_newspaper\"],\"category\":\"Objects\",\"sort_order\":144,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-fm\":{\"name\":\"Regional Indicator Symbol Letters FM\",\"unified\":\"1F1EB-1F1F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1eb-1f1f2.png\",\"sheet_x\":34,\"sheet_y\":28,\"short_name\":\"flag-fm\",\"short_names\":[\"flag-fm\"],\"category\":\"Flags\",\"sort_order\":144,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"umbrella_with_rain_drops\":{\"name\":\"Umbrella with Rain Drops\",\"unified\":\"2614\",\"variations\":[\"2614-FE0F\"],\"docomo\":\"E640\",\"au\":\"E48C\",\"softbank\":\"E04B\",\"google\":\"FE002\",\"image\":\"2614.png\",\"sheet_x\":1,\"sheet_y\":7,\"short_name\":\"umbrella_with_rain_drops\",\"short_names\":[\"umbrella_with_rain_drops\"],\"category\":\"Nature\",\"sort_order\":144,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"two_men_holding_hands\":{\"name\":\"Two Men Holding Hands\",\"unified\":\"1F46C\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f46c.png\",\"sheet_x\":16,\"sheet_y\":34,\"short_name\":\"two_men_holding_hands\",\"short_names\":[\"two_men_holding_hands\"],\"category\":\"People\",\"sort_order\":144,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"keycap_ten\":{\"name\":\"Keycap Ten\",\"unified\":\"1F51F\",\"variations\":[],\"docomo\":null,\"au\":\"E52B\",\"softbank\":null,\"google\":\"FE83B\",\"image\":\"1f51f.png\",\"sheet_x\":23,\"sheet_y\":15,\"short_name\":\"keycap_ten\",\"short_names\":[\"keycap_ten\"],\"category\":\"Symbols\",\"sort_order\":144,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"newspaper\":{\"name\":\"Newspaper\",\"unified\":\"1F4F0\",\"variations\":[],\"docomo\":null,\"au\":\"E58B\",\"softbank\":null,\"google\":\"FE822\",\"image\":\"1f4f0.png\",\"sheet_x\":22,\"sheet_y\":10,\"short_name\":\"newspaper\",\"short_names\":[\"newspaper\"],\"category\":\"Objects\",\"sort_order\":145,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"keycap_star\":{\"name\":\"Keycap Star\",\"unified\":\"002A-20E3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"002a-20e3.png\",\"sheet_x\":32,\"sheet_y\":22,\"short_name\":\"keycap_star\",\"short_names\":[\"keycap_star\"],\"category\":\"Symbols\",\"sort_order\":145,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-md\":{\"name\":\"Regional Indicator Symbol Letters MD\",\"unified\":\"1F1F2-1F1E9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1e9.png\",\"sheet_x\":36,\"sheet_y\":13,\"short_name\":\"flag-md\",\"short_names\":[\"flag-md\"],\"category\":\"Flags\",\"sort_order\":145,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"two_women_holding_hands\":{\"name\":\"Two Women Holding Hands\",\"unified\":\"1F46D\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f46d.png\",\"sheet_x\":16,\"sheet_y\":35,\"short_name\":\"two_women_holding_hands\",\"short_names\":[\"two_women_holding_hands\"],\"category\":\"People\",\"sort_order\":145,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"droplet\":{\"name\":\"Droplet\",\"unified\":\"1F4A7\",\"variations\":[],\"docomo\":\"E707\",\"au\":\"E4E6\",\"softbank\":\"E331\",\"google\":\"FEB5C\",\"image\":\"1f4a7.png\",\"sheet_x\":20,\"sheet_y\":14,\"short_name\":\"droplet\",\"short_names\":[\"droplet\"],\"category\":\"Nature\",\"sort_order\":145,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"bow\":{\"name\":\"Person Bowing Deeply\",\"unified\":\"1F647\",\"variations\":[],\"docomo\":null,\"au\":\"EAD9\",\"softbank\":\"E426\",\"google\":\"FE353\",\"image\":\"1f647.png\",\"sheet_x\":28,\"sheet_y\":14,\"short_name\":\"bow\",\"short_names\":[\"bow\"],\"category\":\"People\",\"sort_order\":146,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F647-1F3FB\":{\"unified\":\"1F647-1F3FB\",\"image\":\"1f647-1f3fb.png\",\"sheet_x\":28,\"sheet_y\":15,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F647-1F3FC\":{\"unified\":\"1F647-1F3FC\",\"image\":\"1f647-1f3fc.png\",\"sheet_x\":28,\"sheet_y\":16,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F647-1F3FD\":{\"unified\":\"1F647-1F3FD\",\"image\":\"1f647-1f3fd.png\",\"sheet_x\":28,\"sheet_y\":17,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F647-1F3FE\":{\"unified\":\"1F647-1F3FE\",\"image\":\"1f647-1f3fe.png\",\"sheet_x\":28,\"sheet_y\":18,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F647-1F3FF\":{\"unified\":\"1F647-1F3FF\",\"image\":\"1f647-1f3ff.png\",\"sheet_x\":28,\"sheet_y\":19,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"notebook\":{\"name\":\"Notebook\",\"unified\":\"1F4D3\",\"variations\":[],\"docomo\":\"E683\",\"au\":\"E56B\",\"softbank\":\"E148\",\"google\":\"FE545\",\"image\":\"1f4d3.png\",\"sheet_x\":21,\"sheet_y\":22,\"short_name\":\"notebook\",\"short_names\":[\"notebook\"],\"category\":\"Objects\",\"sort_order\":146,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"sweat_drops\":{\"name\":\"Splashing Sweat Symbol\",\"unified\":\"1F4A6\",\"variations\":[],\"docomo\":\"E706\",\"au\":\"E5B1\",\"softbank\":\"E331\",\"google\":\"FEB5B\",\"image\":\"1f4a6.png\",\"sheet_x\":20,\"sheet_y\":13,\"short_name\":\"sweat_drops\",\"short_names\":[\"sweat_drops\"],\"category\":\"Nature\",\"sort_order\":146,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-mc\":{\"name\":\"Regional Indicator Symbol Letters MC\",\"unified\":\"1F1F2-1F1E8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1e8.png\",\"sheet_x\":36,\"sheet_y\":12,\"short_name\":\"flag-mc\",\"short_names\":[\"flag-mc\"],\"category\":\"Flags\",\"sort_order\":146,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"closed_book\":{\"name\":\"Closed Book\",\"unified\":\"1F4D5\",\"variations\":[],\"docomo\":\"E683\",\"au\":\"E568\",\"softbank\":\"E148\",\"google\":\"FE502\",\"image\":\"1f4d5.png\",\"sheet_x\":21,\"sheet_y\":24,\"short_name\":\"closed_book\",\"short_names\":[\"closed_book\"],\"category\":\"Objects\",\"sort_order\":147,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-mn\":{\"name\":\"Regional Indicator Symbol Letters MN\",\"unified\":\"1F1F2-1F1F3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1f3.png\",\"sheet_x\":36,\"sheet_y\":21,\"short_name\":\"flag-mn\",\"short_names\":[\"flag-mn\"],\"category\":\"Flags\",\"sort_order\":147,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"arrow_forward\":{\"name\":\"Black Right-Pointing Triangle\",\"unified\":\"25B6\",\"variations\":[\"25B6-FE0F\"],\"docomo\":null,\"au\":\"E52E\",\"softbank\":\"E23A\",\"google\":\"FEAFC\",\"image\":\"25b6.png\",\"sheet_x\":0,\"sheet_y\":35,\"short_name\":\"arrow_forward\",\"short_names\":[\"arrow_forward\"],\"category\":\"Symbols\",\"sort_order\":147,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"information_desk_person\":{\"name\":\"Information Desk Person\",\"unified\":\"1F481\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":\"E253\",\"google\":\"FE1B4\",\"image\":\"1f481.png\",\"sheet_x\":18,\"sheet_y\":28,\"short_name\":\"information_desk_person\",\"short_names\":[\"information_desk_person\"],\"category\":\"People\",\"sort_order\":147,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F481-1F3FB\":{\"unified\":\"1F481-1F3FB\",\"image\":\"1f481-1f3fb.png\",\"sheet_x\":18,\"sheet_y\":29,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F481-1F3FC\":{\"unified\":\"1F481-1F3FC\",\"image\":\"1f481-1f3fc.png\",\"sheet_x\":18,\"sheet_y\":30,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F481-1F3FD\":{\"unified\":\"1F481-1F3FD\",\"image\":\"1f481-1f3fd.png\",\"sheet_x\":18,\"sheet_y\":31,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F481-1F3FE\":{\"unified\":\"1F481-1F3FE\",\"image\":\"1f481-1f3fe.png\",\"sheet_x\":18,\"sheet_y\":32,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F481-1F3FF\":{\"unified\":\"1F481-1F3FF\",\"image\":\"1f481-1f3ff.png\",\"sheet_x\":18,\"sheet_y\":33,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"ocean\":{\"name\":\"Water Wave\",\"unified\":\"1F30A\",\"variations\":[],\"docomo\":\"E73F\",\"au\":\"EB7C\",\"softbank\":\"E43E\",\"google\":\"FE038\",\"image\":\"1f30a.png\",\"sheet_x\":5,\"sheet_y\":31,\"short_name\":\"ocean\",\"short_names\":[\"ocean\"],\"category\":\"Nature\",\"sort_order\":147,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"double_vertical_bar\":{\"name\":\"Double Vertical Bar\",\"unified\":\"23F8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"23f8.png\",\"sheet_x\":0,\"sheet_y\":29,\"short_name\":\"double_vertical_bar\",\"short_names\":[\"double_vertical_bar\"],\"category\":\"Symbols\",\"sort_order\":148,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"green_book\":{\"name\":\"Green Book\",\"unified\":\"1F4D7\",\"variations\":[],\"docomo\":\"E683\",\"au\":\"E565\",\"softbank\":\"E148\",\"google\":\"FE4FF\",\"image\":\"1f4d7.png\",\"sheet_x\":21,\"sheet_y\":26,\"short_name\":\"green_book\",\"short_names\":[\"green_book\"],\"category\":\"Objects\",\"sort_order\":148,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"no_good\":{\"name\":\"Face with No Good Gesture\",\"unified\":\"1F645\",\"variations\":[],\"docomo\":\"E72F\",\"au\":\"EAD7\",\"softbank\":\"E423\",\"google\":\"FE351\",\"image\":\"1f645.png\",\"sheet_x\":28,\"sheet_y\":2,\"short_name\":\"no_good\",\"short_names\":[\"no_good\"],\"category\":\"People\",\"sort_order\":148,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F645-1F3FB\":{\"unified\":\"1F645-1F3FB\",\"image\":\"1f645-1f3fb.png\",\"sheet_x\":28,\"sheet_y\":3,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F645-1F3FC\":{\"unified\":\"1F645-1F3FC\",\"image\":\"1f645-1f3fc.png\",\"sheet_x\":28,\"sheet_y\":4,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F645-1F3FD\":{\"unified\":\"1F645-1F3FD\",\"image\":\"1f645-1f3fd.png\",\"sheet_x\":28,\"sheet_y\":5,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F645-1F3FE\":{\"unified\":\"1F645-1F3FE\",\"image\":\"1f645-1f3fe.png\",\"sheet_x\":28,\"sheet_y\":6,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F645-1F3FF\":{\"unified\":\"1F645-1F3FF\",\"image\":\"1f645-1f3ff.png\",\"sheet_x\":28,\"sheet_y\":7,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"flag-me\":{\"name\":\"Regional Indicator Symbol Letters ME\",\"unified\":\"1F1F2-1F1EA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1ea.png\",\"sheet_x\":36,\"sheet_y\":14,\"short_name\":\"flag-me\",\"short_names\":[\"flag-me\"],\"category\":\"Flags\",\"sort_order\":148,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ms\":{\"name\":\"Regional Indicator Symbol Letters MS\",\"unified\":\"1F1F2-1F1F8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1f8.png\",\"sheet_x\":36,\"sheet_y\":26,\"short_name\":\"flag-ms\",\"short_names\":[\"flag-ms\"],\"category\":\"Flags\",\"sort_order\":149,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"ok_woman\":{\"name\":\"Face with Ok Gesture\",\"unified\":\"1F646\",\"variations\":[],\"docomo\":\"E70B\",\"au\":\"EAD8\",\"softbank\":\"E424\",\"google\":\"FE352\",\"image\":\"1f646.png\",\"sheet_x\":28,\"sheet_y\":8,\"short_name\":\"ok_woman\",\"short_names\":[\"ok_woman\"],\"category\":\"People\",\"sort_order\":149,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F646-1F3FB\":{\"unified\":\"1F646-1F3FB\",\"image\":\"1f646-1f3fb.png\",\"sheet_x\":28,\"sheet_y\":9,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F646-1F3FC\":{\"unified\":\"1F646-1F3FC\",\"image\":\"1f646-1f3fc.png\",\"sheet_x\":28,\"sheet_y\":10,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F646-1F3FD\":{\"unified\":\"1F646-1F3FD\",\"image\":\"1f646-1f3fd.png\",\"sheet_x\":28,\"sheet_y\":11,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F646-1F3FE\":{\"unified\":\"1F646-1F3FE\",\"image\":\"1f646-1f3fe.png\",\"sheet_x\":28,\"sheet_y\":12,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F646-1F3FF\":{\"unified\":\"1F646-1F3FF\",\"image\":\"1f646-1f3ff.png\",\"sheet_x\":28,\"sheet_y\":13,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"blue_book\":{\"name\":\"Blue Book\",\"unified\":\"1F4D8\",\"variations\":[],\"docomo\":\"E683\",\"au\":\"E566\",\"softbank\":\"E148\",\"google\":\"FE500\",\"image\":\"1f4d8.png\",\"sheet_x\":21,\"sheet_y\":27,\"short_name\":\"blue_book\",\"short_names\":[\"blue_book\"],\"category\":\"Objects\",\"sort_order\":149,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"black_right_pointing_triangle_with_double_vertical_bar\":{\"name\":\"Black Right-Pointing Triangle with Double Vertical Bar\",\"unified\":\"23EF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"23ef.png\",\"sheet_x\":0,\"sheet_y\":24,\"short_name\":\"black_right_pointing_triangle_with_double_vertical_bar\",\"short_names\":[\"black_right_pointing_triangle_with_double_vertical_bar\"],\"category\":\"Symbols\",\"sort_order\":149,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"raising_hand\":{\"name\":\"Happy Person Raising One Hand\",\"unified\":\"1F64B\",\"variations\":[],\"docomo\":null,\"au\":\"EB85\",\"softbank\":\"E012\",\"google\":\"FE357\",\"image\":\"1f64b.png\",\"sheet_x\":28,\"sheet_y\":23,\"short_name\":\"raising_hand\",\"short_names\":[\"raising_hand\"],\"category\":\"People\",\"sort_order\":150,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F64B-1F3FB\":{\"unified\":\"1F64B-1F3FB\",\"image\":\"1f64b-1f3fb.png\",\"sheet_x\":28,\"sheet_y\":24,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64B-1F3FC\":{\"unified\":\"1F64B-1F3FC\",\"image\":\"1f64b-1f3fc.png\",\"sheet_x\":28,\"sheet_y\":25,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64B-1F3FD\":{\"unified\":\"1F64B-1F3FD\",\"image\":\"1f64b-1f3fd.png\",\"sheet_x\":28,\"sheet_y\":26,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64B-1F3FE\":{\"unified\":\"1F64B-1F3FE\",\"image\":\"1f64b-1f3fe.png\",\"sheet_x\":28,\"sheet_y\":27,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64B-1F3FF\":{\"unified\":\"1F64B-1F3FF\",\"image\":\"1f64b-1f3ff.png\",\"sheet_x\":28,\"sheet_y\":28,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"black_square_for_stop\":{\"name\":\"Black Square for Stop\",\"unified\":\"23F9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"23f9.png\",\"sheet_x\":0,\"sheet_y\":30,\"short_name\":\"black_square_for_stop\",\"short_names\":[\"black_square_for_stop\"],\"category\":\"Symbols\",\"sort_order\":150,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"orange_book\":{\"name\":\"Orange Book\",\"unified\":\"1F4D9\",\"variations\":[],\"docomo\":\"E683\",\"au\":\"E567\",\"softbank\":\"E148\",\"google\":\"FE501\",\"image\":\"1f4d9.png\",\"sheet_x\":21,\"sheet_y\":28,\"short_name\":\"orange_book\",\"short_names\":[\"orange_book\"],\"category\":\"Objects\",\"sort_order\":150,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ma\":{\"name\":\"Regional Indicator Symbol Letters MA\",\"unified\":\"1F1F2-1F1E6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1e6.png\",\"sheet_x\":36,\"sheet_y\":11,\"short_name\":\"flag-ma\",\"short_names\":[\"flag-ma\"],\"category\":\"Flags\",\"sort_order\":150,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-mz\":{\"name\":\"Regional Indicator Symbol Letters MZ\",\"unified\":\"1F1F2-1F1FF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1ff.png\",\"sheet_x\":36,\"sheet_y\":33,\"short_name\":\"flag-mz\",\"short_names\":[\"flag-mz\"],\"category\":\"Flags\",\"sort_order\":151,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"notebook_with_decorative_cover\":{\"name\":\"Notebook with Decorative Cover\",\"unified\":\"1F4D4\",\"variations\":[],\"docomo\":\"E683\",\"au\":\"E49D\",\"softbank\":\"E148\",\"google\":\"FE547\",\"image\":\"1f4d4.png\",\"sheet_x\":21,\"sheet_y\":23,\"short_name\":\"notebook_with_decorative_cover\",\"short_names\":[\"notebook_with_decorative_cover\"],\"category\":\"Objects\",\"sort_order\":151,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"person_with_pouting_face\":{\"name\":\"Person with Pouting Face\",\"unified\":\"1F64E\",\"variations\":[],\"docomo\":\"E6F1\",\"au\":\"EB88\",\"softbank\":\"E416\",\"google\":\"FE35A\",\"image\":\"1f64e.png\",\"sheet_x\":29,\"sheet_y\":0,\"short_name\":\"person_with_pouting_face\",\"short_names\":[\"person_with_pouting_face\"],\"category\":\"People\",\"sort_order\":151,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F64E-1F3FB\":{\"unified\":\"1F64E-1F3FB\",\"image\":\"1f64e-1f3fb.png\",\"sheet_x\":29,\"sheet_y\":1,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64E-1F3FC\":{\"unified\":\"1F64E-1F3FC\",\"image\":\"1f64e-1f3fc.png\",\"sheet_x\":29,\"sheet_y\":2,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64E-1F3FD\":{\"unified\":\"1F64E-1F3FD\",\"image\":\"1f64e-1f3fd.png\",\"sheet_x\":29,\"sheet_y\":3,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64E-1F3FE\":{\"unified\":\"1F64E-1F3FE\",\"image\":\"1f64e-1f3fe.png\",\"sheet_x\":29,\"sheet_y\":4,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64E-1F3FF\":{\"unified\":\"1F64E-1F3FF\",\"image\":\"1f64e-1f3ff.png\",\"sheet_x\":29,\"sheet_y\":5,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"eject\":{\"name\":\"Eject Symbol\",\"unified\":\"23CF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"23cf.png\",\"sheet_x\":0,\"sheet_y\":17,\"short_name\":\"eject\",\"short_names\":[\"eject\"],\"category\":\"Symbols\",\"sort_order\":151,\"has_img_apple\":false,\"has_img_google\":true,\"has_img_twitter\":false,\"has_img_emojione\":false,\"emoticons\":[]},\"black_circle_for_record\":{\"name\":\"Black Circle for Record\",\"unified\":\"23FA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"23fa.png\",\"sheet_x\":0,\"sheet_y\":31,\"short_name\":\"black_circle_for_record\",\"short_names\":[\"black_circle_for_record\"],\"category\":\"Symbols\",\"sort_order\":152,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-mm\":{\"name\":\"Regional Indicator Symbol Letters MM\",\"unified\":\"1F1F2-1F1F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1f2.png\",\"sheet_x\":36,\"sheet_y\":20,\"short_name\":\"flag-mm\",\"short_names\":[\"flag-mm\"],\"category\":\"Flags\",\"sort_order\":152,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"person_frowning\":{\"name\":\"Person Frowning\",\"unified\":\"1F64D\",\"variations\":[],\"docomo\":\"E6F3\",\"au\":\"EB87\",\"softbank\":\"E403\",\"google\":\"FE359\",\"image\":\"1f64d.png\",\"sheet_x\":28,\"sheet_y\":35,\"short_name\":\"person_frowning\",\"short_names\":[\"person_frowning\"],\"category\":\"People\",\"sort_order\":152,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F64D-1F3FB\":{\"unified\":\"1F64D-1F3FB\",\"image\":\"1f64d-1f3fb.png\",\"sheet_x\":28,\"sheet_y\":36,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64D-1F3FC\":{\"unified\":\"1F64D-1F3FC\",\"image\":\"1f64d-1f3fc.png\",\"sheet_x\":28,\"sheet_y\":37,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64D-1F3FD\":{\"unified\":\"1F64D-1F3FD\",\"image\":\"1f64d-1f3fd.png\",\"sheet_x\":28,\"sheet_y\":38,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64D-1F3FE\":{\"unified\":\"1F64D-1F3FE\",\"image\":\"1f64d-1f3fe.png\",\"sheet_x\":28,\"sheet_y\":39,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F64D-1F3FF\":{\"unified\":\"1F64D-1F3FF\",\"image\":\"1f64d-1f3ff.png\",\"sheet_x\":28,\"sheet_y\":40,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"ledger\":{\"name\":\"Ledger\",\"unified\":\"1F4D2\",\"variations\":[],\"docomo\":\"E683\",\"au\":\"E56E\",\"softbank\":\"E148\",\"google\":\"FE54F\",\"image\":\"1f4d2.png\",\"sheet_x\":21,\"sheet_y\":21,\"short_name\":\"ledger\",\"short_names\":[\"ledger\"],\"category\":\"Objects\",\"sort_order\":152,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-na\":{\"name\":\"Regional Indicator Symbol Letters NA\",\"unified\":\"1F1F3-1F1E6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f3-1f1e6.png\",\"sheet_x\":36,\"sheet_y\":34,\"short_name\":\"flag-na\",\"short_names\":[\"flag-na\"],\"category\":\"Flags\",\"sort_order\":153,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"haircut\":{\"name\":\"Haircut\",\"unified\":\"1F487\",\"variations\":[],\"docomo\":\"E675\",\"au\":\"EAA1\",\"softbank\":\"E31F\",\"google\":\"FE198\",\"image\":\"1f487.png\",\"sheet_x\":19,\"sheet_y\":18,\"short_name\":\"haircut\",\"short_names\":[\"haircut\"],\"category\":\"People\",\"sort_order\":153,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F487-1F3FB\":{\"unified\":\"1F487-1F3FB\",\"image\":\"1f487-1f3fb.png\",\"sheet_x\":19,\"sheet_y\":19,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F487-1F3FC\":{\"unified\":\"1F487-1F3FC\",\"image\":\"1f487-1f3fc.png\",\"sheet_x\":19,\"sheet_y\":20,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F487-1F3FD\":{\"unified\":\"1F487-1F3FD\",\"image\":\"1f487-1f3fd.png\",\"sheet_x\":19,\"sheet_y\":21,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F487-1F3FE\":{\"unified\":\"1F487-1F3FE\",\"image\":\"1f487-1f3fe.png\",\"sheet_x\":19,\"sheet_y\":22,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F487-1F3FF\":{\"unified\":\"1F487-1F3FF\",\"image\":\"1f487-1f3ff.png\",\"sheet_x\":19,\"sheet_y\":23,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"books\":{\"name\":\"Books\",\"unified\":\"1F4DA\",\"variations\":[],\"docomo\":\"E683\",\"au\":\"E56F\",\"softbank\":\"E148\",\"google\":\"FE503\",\"image\":\"1f4da.png\",\"sheet_x\":21,\"sheet_y\":29,\"short_name\":\"books\",\"short_names\":[\"books\"],\"category\":\"Objects\",\"sort_order\":153,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"black_right_pointing_double_triangle_with_vertical_bar\":{\"name\":\"Black Right-Pointing Double Triangle with Vertical Bar\",\"unified\":\"23ED\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"23ed.png\",\"sheet_x\":0,\"sheet_y\":22,\"short_name\":\"black_right_pointing_double_triangle_with_vertical_bar\",\"short_names\":[\"black_right_pointing_double_triangle_with_vertical_bar\"],\"category\":\"Symbols\",\"sort_order\":153,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"book\":{\"name\":\"Open Book\",\"unified\":\"1F4D6\",\"variations\":[],\"docomo\":\"E683\",\"au\":\"E49F\",\"softbank\":\"E148\",\"google\":\"FE546\",\"image\":\"1f4d6.png\",\"sheet_x\":21,\"sheet_y\":25,\"short_name\":\"book\",\"short_names\":[\"book\",\"open_book\"],\"category\":\"Objects\",\"sort_order\":154,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-nr\":{\"name\":\"Regional Indicator Symbol Letters NR\",\"unified\":\"1F1F3-1F1F7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f3-1f1f7.png\",\"sheet_x\":37,\"sheet_y\":2,\"short_name\":\"flag-nr\",\"short_names\":[\"flag-nr\"],\"category\":\"Flags\",\"sort_order\":154,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"black_left_pointing_double_triangle_with_vertical_bar\":{\"name\":\"Black Left-Pointing Double Triangle with Vertical Bar\",\"unified\":\"23EE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"23ee.png\",\"sheet_x\":0,\"sheet_y\":23,\"short_name\":\"black_left_pointing_double_triangle_with_vertical_bar\",\"short_names\":[\"black_left_pointing_double_triangle_with_vertical_bar\"],\"category\":\"Symbols\",\"sort_order\":154,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"massage\":{\"name\":\"Face Massage\",\"unified\":\"1F486\",\"variations\":[],\"docomo\":null,\"au\":\"E50B\",\"softbank\":\"E31E\",\"google\":\"FE197\",\"image\":\"1f486.png\",\"sheet_x\":19,\"sheet_y\":12,\"short_name\":\"massage\",\"short_names\":[\"massage\"],\"category\":\"People\",\"sort_order\":154,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"skin_variations\":{\"1F486-1F3FB\":{\"unified\":\"1F486-1F3FB\",\"image\":\"1f486-1f3fb.png\",\"sheet_x\":19,\"sheet_y\":13,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F486-1F3FC\":{\"unified\":\"1F486-1F3FC\",\"image\":\"1f486-1f3fc.png\",\"sheet_x\":19,\"sheet_y\":14,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F486-1F3FD\":{\"unified\":\"1F486-1F3FD\",\"image\":\"1f486-1f3fd.png\",\"sheet_x\":19,\"sheet_y\":15,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F486-1F3FE\":{\"unified\":\"1F486-1F3FE\",\"image\":\"1f486-1f3fe.png\",\"sheet_x\":19,\"sheet_y\":16,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true},\"1F486-1F3FF\":{\"unified\":\"1F486-1F3FF\",\"image\":\"1f486-1f3ff.png\",\"sheet_x\":19,\"sheet_y\":17,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true}},\"emoticons\":[]},\"couple_with_heart\":{\"name\":\"Couple with Heart\",\"unified\":\"1F491\",\"variations\":[],\"docomo\":\"E6ED\",\"au\":\"EADA\",\"softbank\":\"E425\",\"google\":\"FE829\",\"image\":\"1f491.png\",\"sheet_x\":19,\"sheet_y\":33,\"short_name\":\"couple_with_heart\",\"short_names\":[\"couple_with_heart\"],\"category\":\"People\",\"sort_order\":155,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"fast_forward\":{\"name\":\"Black Right-Pointing Double Triangle\",\"unified\":\"23E9\",\"variations\":[],\"docomo\":null,\"au\":\"E530\",\"softbank\":\"E23C\",\"google\":\"FEAFE\",\"image\":\"23e9.png\",\"sheet_x\":0,\"sheet_y\":18,\"short_name\":\"fast_forward\",\"short_names\":[\"fast_forward\"],\"category\":\"Symbols\",\"sort_order\":155,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-np\":{\"name\":\"Regional Indicator Symbol Letters NP\",\"unified\":\"1F1F3-1F1F5\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f3-1f1f5.png\",\"sheet_x\":37,\"sheet_y\":1,\"short_name\":\"flag-np\",\"short_names\":[\"flag-np\"],\"category\":\"Flags\",\"sort_order\":155,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"link\":{\"name\":\"Link Symbol\",\"unified\":\"1F517\",\"variations\":[],\"docomo\":null,\"au\":\"E58A\",\"softbank\":null,\"google\":\"FEB4B\",\"image\":\"1f517.png\",\"sheet_x\":23,\"sheet_y\":7,\"short_name\":\"link\",\"short_names\":[\"link\"],\"category\":\"Objects\",\"sort_order\":155,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"paperclip\":{\"name\":\"Paperclip\",\"unified\":\"1F4CE\",\"variations\":[],\"docomo\":\"E730\",\"au\":\"E4A0\",\"softbank\":null,\"google\":\"FE53A\",\"image\":\"1f4ce.png\",\"sheet_x\":21,\"sheet_y\":17,\"short_name\":\"paperclip\",\"short_names\":[\"paperclip\"],\"category\":\"Objects\",\"sort_order\":156,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"rewind\":{\"name\":\"Black Left-Pointing Double Triangle\",\"unified\":\"23EA\",\"variations\":[],\"docomo\":null,\"au\":\"E52F\",\"softbank\":\"E23D\",\"google\":\"FEAFF\",\"image\":\"23ea.png\",\"sheet_x\":0,\"sheet_y\":19,\"short_name\":\"rewind\",\"short_names\":[\"rewind\"],\"category\":\"Symbols\",\"sort_order\":156,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"woman-heart-woman\":{\"name\":\"Woman Heart Woman\",\"unified\":\"1F469-200D-2764-FE0F-200D-1F469\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f469-200d-2764-fe0f-200d-1f469.png\",\"sheet_x\":39,\"sheet_y\":19,\"short_name\":\"woman-heart-woman\",\"short_names\":[\"woman-heart-woman\"],\"category\":\"People\",\"sort_order\":156,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":false,\"emoticons\":[]},\"flag-nl\":{\"name\":\"Regional Indicator Symbol Letters NL\",\"unified\":\"1F1F3-1F1F1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f3-1f1f1.png\",\"sheet_x\":36,\"sheet_y\":40,\"short_name\":\"flag-nl\",\"short_names\":[\"flag-nl\"],\"category\":\"Flags\",\"sort_order\":156,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"linked_paperclips\":{\"name\":\"Linked Paperclips\",\"unified\":\"1F587\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f587.png\",\"sheet_x\":25,\"sheet_y\":8,\"short_name\":\"linked_paperclips\",\"short_names\":[\"linked_paperclips\"],\"category\":\"Objects\",\"sort_order\":157,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"man-heart-man\":{\"name\":\"Man Heart Man\",\"unified\":\"1F468-200D-2764-FE0F-200D-1F468\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f468-200d-2764-fe0f-200d-1f468.png\",\"sheet_x\":39,\"sheet_y\":12,\"short_name\":\"man-heart-man\",\"short_names\":[\"man-heart-man\"],\"category\":\"People\",\"sort_order\":157,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":false,\"emoticons\":[]},\"flag-nc\":{\"name\":\"Regional Indicator Symbol Letters NC\",\"unified\":\"1F1F3-1F1E8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f3-1f1e8.png\",\"sheet_x\":36,\"sheet_y\":35,\"short_name\":\"flag-nc\",\"short_names\":[\"flag-nc\"],\"category\":\"Flags\",\"sort_order\":157,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"twisted_rightwards_arrows\":{\"name\":\"Twisted Rightwards Arrows\",\"unified\":\"1F500\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f500.png\",\"sheet_x\":22,\"sheet_y\":25,\"short_name\":\"twisted_rightwards_arrows\",\"short_names\":[\"twisted_rightwards_arrows\"],\"category\":\"Symbols\",\"sort_order\":157,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"couplekiss\":{\"name\":\"Kiss\",\"unified\":\"1F48F\",\"variations\":[],\"docomo\":\"E6F9\",\"au\":\"E5CA\",\"softbank\":\"E111\",\"google\":\"FE827\",\"image\":\"1f48f.png\",\"sheet_x\":19,\"sheet_y\":31,\"short_name\":\"couplekiss\",\"short_names\":[\"couplekiss\"],\"category\":\"People\",\"sort_order\":158,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-nz\":{\"name\":\"Regional Indicator Symbol Letters NZ\",\"unified\":\"1F1F3-1F1FF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f3-1f1ff.png\",\"sheet_x\":37,\"sheet_y\":4,\"short_name\":\"flag-nz\",\"short_names\":[\"flag-nz\"],\"category\":\"Flags\",\"sort_order\":158,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"scissors\":{\"name\":\"Black Scissors\",\"unified\":\"2702\",\"variations\":[\"2702-FE0F\"],\"docomo\":\"E675\",\"au\":\"E516\",\"softbank\":\"E313\",\"google\":\"FE53E\",\"image\":\"2702.png\",\"sheet_x\":3,\"sheet_y\":5,\"short_name\":\"scissors\",\"short_names\":[\"scissors\"],\"category\":\"Objects\",\"sort_order\":158,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"repeat\":{\"name\":\"Clockwise Rightwards and Leftwards Open Circle Arrows\",\"unified\":\"1F501\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f501.png\",\"sheet_x\":22,\"sheet_y\":26,\"short_name\":\"repeat\",\"short_names\":[\"repeat\"],\"category\":\"Symbols\",\"sort_order\":158,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"repeat_one\":{\"name\":\"Clockwise Rightwards and Leftwards Open Circle Arrows with Circled One Overlay\",\"unified\":\"1F502\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f502.png\",\"sheet_x\":22,\"sheet_y\":27,\"short_name\":\"repeat_one\",\"short_names\":[\"repeat_one\"],\"category\":\"Symbols\",\"sort_order\":159,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ni\":{\"name\":\"Regional Indicator Symbol Letters NI\",\"unified\":\"1F1F3-1F1EE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f3-1f1ee.png\",\"sheet_x\":36,\"sheet_y\":39,\"short_name\":\"flag-ni\",\"short_names\":[\"flag-ni\"],\"category\":\"Flags\",\"sort_order\":159,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"woman-kiss-woman\":{\"name\":\"Woman Kiss Woman\",\"unified\":\"1F469-200D-2764-FE0F-200D-1F48B-200D-1F469\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f469-200d-2764-fe0f-200d-1f48b-200d-1f469.png\",\"sheet_x\":39,\"sheet_y\":20,\"short_name\":\"woman-kiss-woman\",\"short_names\":[\"woman-kiss-woman\"],\"category\":\"People\",\"sort_order\":159,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":false,\"emoticons\":[]},\"triangular_ruler\":{\"name\":\"Triangular Ruler\",\"unified\":\"1F4D0\",\"variations\":[],\"docomo\":null,\"au\":\"E4A2\",\"softbank\":null,\"google\":\"FE551\",\"image\":\"1f4d0.png\",\"sheet_x\":21,\"sheet_y\":19,\"short_name\":\"triangular_ruler\",\"short_names\":[\"triangular_ruler\"],\"category\":\"Objects\",\"sort_order\":159,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"straight_ruler\":{\"name\":\"Straight Ruler\",\"unified\":\"1F4CF\",\"variations\":[],\"docomo\":null,\"au\":\"E570\",\"softbank\":null,\"google\":\"FE550\",\"image\":\"1f4cf.png\",\"sheet_x\":21,\"sheet_y\":18,\"short_name\":\"straight_ruler\",\"short_names\":[\"straight_ruler\"],\"category\":\"Objects\",\"sort_order\":160,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ne\":{\"name\":\"Regional Indicator Symbol Letters NE\",\"unified\":\"1F1F3-1F1EA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f3-1f1ea.png\",\"sheet_x\":36,\"sheet_y\":36,\"short_name\":\"flag-ne\",\"short_names\":[\"flag-ne\"],\"category\":\"Flags\",\"sort_order\":160,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"man-kiss-man\":{\"name\":\"Man Kiss Man\",\"unified\":\"1F468-200D-2764-FE0F-200D-1F48B-200D-1F468\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f468-200d-2764-fe0f-200d-1f48b-200d-1f468.png\",\"sheet_x\":39,\"sheet_y\":13,\"short_name\":\"man-kiss-man\",\"short_names\":[\"man-kiss-man\"],\"category\":\"People\",\"sort_order\":160,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":false,\"emoticons\":[]},\"arrow_backward\":{\"name\":\"Black Left-Pointing Triangle\",\"unified\":\"25C0\",\"variations\":[\"25C0-FE0F\"],\"docomo\":null,\"au\":\"E52D\",\"softbank\":\"E23B\",\"google\":\"FEAFD\",\"image\":\"25c0.png\",\"sheet_x\":0,\"sheet_y\":36,\"short_name\":\"arrow_backward\",\"short_names\":[\"arrow_backward\"],\"category\":\"Symbols\",\"sort_order\":160,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"arrow_up_small\":{\"name\":\"Up-Pointing Small Red Triangle\",\"unified\":\"1F53C\",\"variations\":[],\"docomo\":null,\"au\":\"E543\",\"softbank\":null,\"google\":\"FEB01\",\"image\":\"1f53c.png\",\"sheet_x\":24,\"sheet_y\":3,\"short_name\":\"arrow_up_small\",\"short_names\":[\"arrow_up_small\"],\"category\":\"Symbols\",\"sort_order\":161,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ng\":{\"name\":\"Regional Indicator Symbol Letters NG\",\"unified\":\"1F1F3-1F1EC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f3-1f1ec.png\",\"sheet_x\":36,\"sheet_y\":38,\"short_name\":\"flag-ng\",\"short_names\":[\"flag-ng\"],\"category\":\"Flags\",\"sort_order\":161,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"family\":{\"name\":\"Family\",\"unified\":\"1F46A\",\"variations\":[\"1F468-200D-1F469-200D-1F466\"],\"docomo\":null,\"au\":\"E501\",\"softbank\":null,\"google\":\"FE19F\",\"image\":\"1f46a.png\",\"sheet_x\":16,\"sheet_y\":32,\"short_name\":\"family\",\"short_names\":[\"family\",\"man-woman-boy\"],\"category\":\"People\",\"sort_order\":161,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"pushpin\":{\"name\":\"Pushpin\",\"unified\":\"1F4CC\",\"variations\":[],\"docomo\":null,\"au\":\"E56D\",\"softbank\":null,\"google\":\"FE54E\",\"image\":\"1f4cc.png\",\"sheet_x\":21,\"sheet_y\":15,\"short_name\":\"pushpin\",\"short_names\":[\"pushpin\"],\"category\":\"Objects\",\"sort_order\":161,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"man-woman-girl\":{\"name\":\"Man Woman Girl\",\"unified\":\"1F468-200D-1F469-200D-1F467\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f468-200d-1f469-200d-1f467.png\",\"sheet_x\":39,\"sheet_y\":9,\"short_name\":\"man-woman-girl\",\"short_names\":[\"man-woman-girl\"],\"category\":\"People\",\"sort_order\":162,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"round_pushpin\":{\"name\":\"Round Pushpin\",\"unified\":\"1F4CD\",\"variations\":[],\"docomo\":null,\"au\":\"E560\",\"softbank\":null,\"google\":\"FE53F\",\"image\":\"1f4cd.png\",\"sheet_x\":21,\"sheet_y\":16,\"short_name\":\"round_pushpin\",\"short_names\":[\"round_pushpin\"],\"category\":\"Objects\",\"sort_order\":162,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"arrow_down_small\":{\"name\":\"Down-Pointing Small Red Triangle\",\"unified\":\"1F53D\",\"variations\":[],\"docomo\":null,\"au\":\"E542\",\"softbank\":null,\"google\":\"FEB00\",\"image\":\"1f53d.png\",\"sheet_x\":24,\"sheet_y\":4,\"short_name\":\"arrow_down_small\",\"short_names\":[\"arrow_down_small\"],\"category\":\"Symbols\",\"sort_order\":162,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-nu\":{\"name\":\"Regional Indicator Symbol Letters NU\",\"unified\":\"1F1F3-1F1FA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f3-1f1fa.png\",\"sheet_x\":37,\"sheet_y\":3,\"short_name\":\"flag-nu\",\"short_names\":[\"flag-nu\"],\"category\":\"Flags\",\"sort_order\":162,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-nf\":{\"name\":\"Regional Indicator Symbol Letters NF\",\"unified\":\"1F1F3-1F1EB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f3-1f1eb.png\",\"sheet_x\":36,\"sheet_y\":37,\"short_name\":\"flag-nf\",\"short_names\":[\"flag-nf\"],\"category\":\"Flags\",\"sort_order\":163,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"triangular_flag_on_post\":{\"name\":\"Triangular Flag on Post\",\"unified\":\"1F6A9\",\"variations\":[],\"docomo\":\"E6DE\",\"au\":\"EB2C\",\"softbank\":null,\"google\":\"FEB22\",\"image\":\"1f6a9.png\",\"sheet_x\":30,\"sheet_y\":17,\"short_name\":\"triangular_flag_on_post\",\"short_names\":[\"triangular_flag_on_post\"],\"category\":\"Objects\",\"sort_order\":163,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"man-woman-girl-boy\":{\"name\":\"Man Woman Girl Boy\",\"unified\":\"1F468-200D-1F469-200D-1F467-200D-1F466\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f468-200d-1f469-200d-1f467-200d-1f466.png\",\"sheet_x\":39,\"sheet_y\":10,\"short_name\":\"man-woman-girl-boy\",\"short_names\":[\"man-woman-girl-boy\"],\"category\":\"People\",\"sort_order\":163,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"arrow_double_up\":{\"name\":\"Black Up-Pointing Double Triangle\",\"unified\":\"23EB\",\"variations\":[],\"docomo\":null,\"au\":\"E545\",\"softbank\":null,\"google\":\"FEB03\",\"image\":\"23eb.png\",\"sheet_x\":0,\"sheet_y\":20,\"short_name\":\"arrow_double_up\",\"short_names\":[\"arrow_double_up\"],\"category\":\"Symbols\",\"sort_order\":163,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"man-woman-boy-boy\":{\"name\":\"Man Woman Boy Boy\",\"unified\":\"1F468-200D-1F469-200D-1F466-200D-1F466\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f468-200d-1f469-200d-1f466-200d-1f466.png\",\"sheet_x\":39,\"sheet_y\":8,\"short_name\":\"man-woman-boy-boy\",\"short_names\":[\"man-woman-boy-boy\"],\"category\":\"People\",\"sort_order\":164,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-mp\":{\"name\":\"Regional Indicator Symbol Letters MP\",\"unified\":\"1F1F2-1F1F5\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1f5.png\",\"sheet_x\":36,\"sheet_y\":23,\"short_name\":\"flag-mp\",\"short_names\":[\"flag-mp\"],\"category\":\"Flags\",\"sort_order\":164,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"waving_white_flag\":{\"name\":\"Waving White Flag\",\"unified\":\"1F3F3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3f3.png\",\"sheet_x\":11,\"sheet_y\":34,\"short_name\":\"waving_white_flag\",\"short_names\":[\"waving_white_flag\"],\"category\":\"Objects\",\"sort_order\":164,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"arrow_double_down\":{\"name\":\"Black Down-Pointing Double Triangle\",\"unified\":\"23EC\",\"variations\":[],\"docomo\":null,\"au\":\"E544\",\"softbank\":null,\"google\":\"FEB02\",\"image\":\"23ec.png\",\"sheet_x\":0,\"sheet_y\":21,\"short_name\":\"arrow_double_down\",\"short_names\":[\"arrow_double_down\"],\"category\":\"Symbols\",\"sort_order\":164,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"man-woman-girl-girl\":{\"name\":\"Man Woman Girl Girl\",\"unified\":\"1F468-200D-1F469-200D-1F467-200D-1F467\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f468-200d-1f469-200d-1f467-200d-1f467.png\",\"sheet_x\":39,\"sheet_y\":11,\"short_name\":\"man-woman-girl-girl\",\"short_names\":[\"man-woman-girl-girl\"],\"category\":\"People\",\"sort_order\":165,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-kp\":{\"name\":\"Regional Indicator Symbol Letters KP\",\"unified\":\"1F1F0-1F1F5\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f0-1f1f5.png\",\"sheet_x\":35,\"sheet_y\":36,\"short_name\":\"flag-kp\",\"short_names\":[\"flag-kp\"],\"category\":\"Flags\",\"sort_order\":165,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"waving_black_flag\":{\"name\":\"Waving Black Flag\",\"unified\":\"1F3F4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3f4.png\",\"sheet_x\":11,\"sheet_y\":35,\"short_name\":\"waving_black_flag\",\"short_names\":[\"waving_black_flag\"],\"category\":\"Objects\",\"sort_order\":165,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"arrow_right\":{\"name\":\"Black Rightwards Arrow\",\"unified\":\"27A1\",\"variations\":[\"27A1-FE0F\"],\"docomo\":null,\"au\":\"E552\",\"softbank\":\"E234\",\"google\":\"FEAFA\",\"image\":\"27a1.png\",\"sheet_x\":4,\"sheet_y\":14,\"short_name\":\"arrow_right\",\"short_names\":[\"arrow_right\"],\"category\":\"Symbols\",\"sort_order\":165,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-no\":{\"name\":\"Regional Indicator Symbol Letters NO\",\"unified\":\"1F1F3-1F1F4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f3-1f1f4.png\",\"sheet_x\":37,\"sheet_y\":0,\"short_name\":\"flag-no\",\"short_names\":[\"flag-no\"],\"category\":\"Flags\",\"sort_order\":166,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"woman-woman-boy\":{\"name\":\"Woman Woman Boy\",\"unified\":\"1F469-200D-1F469-200D-1F466\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f469-200d-1f469-200d-1f466.png\",\"sheet_x\":39,\"sheet_y\":14,\"short_name\":\"woman-woman-boy\",\"short_names\":[\"woman-woman-boy\"],\"category\":\"People\",\"sort_order\":166,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"arrow_left\":{\"name\":\"Leftwards Black Arrow\",\"unified\":\"2B05\",\"variations\":[\"2B05-FE0F\"],\"docomo\":null,\"au\":\"E553\",\"softbank\":\"E235\",\"google\":\"FEAFB\",\"image\":\"2b05.png\",\"sheet_x\":4,\"sheet_y\":19,\"short_name\":\"arrow_left\",\"short_names\":[\"arrow_left\"],\"category\":\"Symbols\",\"sort_order\":166,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"closed_lock_with_key\":{\"name\":\"Closed Lock with Key\",\"unified\":\"1F510\",\"variations\":[],\"docomo\":\"E6D9\",\"au\":\"EAFC\",\"softbank\":\"E144\",\"google\":\"FEB8A\",\"image\":\"1f510.png\",\"sheet_x\":23,\"sheet_y\":0,\"short_name\":\"closed_lock_with_key\",\"short_names\":[\"closed_lock_with_key\"],\"category\":\"Objects\",\"sort_order\":166,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-om\":{\"name\":\"Regional Indicator Symbol Letters OM\",\"unified\":\"1F1F4-1F1F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f4-1f1f2.png\",\"sheet_x\":37,\"sheet_y\":5,\"short_name\":\"flag-om\",\"short_names\":[\"flag-om\"],\"category\":\"Flags\",\"sort_order\":167,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"lock\":{\"name\":\"Lock\",\"unified\":\"1F512\",\"variations\":[],\"docomo\":\"E6D9\",\"au\":\"E51C\",\"softbank\":\"E144\",\"google\":\"FEB86\",\"image\":\"1f512.png\",\"sheet_x\":23,\"sheet_y\":2,\"short_name\":\"lock\",\"short_names\":[\"lock\"],\"category\":\"Objects\",\"sort_order\":167,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"arrow_up\":{\"name\":\"Upwards Black Arrow\",\"unified\":\"2B06\",\"variations\":[\"2B06-FE0F\"],\"docomo\":null,\"au\":\"E53F\",\"softbank\":\"E232\",\"google\":\"FEAF8\",\"image\":\"2b06.png\",\"sheet_x\":4,\"sheet_y\":20,\"short_name\":\"arrow_up\",\"short_names\":[\"arrow_up\"],\"category\":\"Symbols\",\"sort_order\":167,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"woman-woman-girl\":{\"name\":\"Woman Woman Girl\",\"unified\":\"1F469-200D-1F469-200D-1F467\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f469-200d-1f469-200d-1f467.png\",\"sheet_x\":39,\"sheet_y\":16,\"short_name\":\"woman-woman-girl\",\"short_names\":[\"woman-woman-girl\"],\"category\":\"People\",\"sort_order\":167,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"arrow_down\":{\"name\":\"Downwards Black Arrow\",\"unified\":\"2B07\",\"variations\":[\"2B07-FE0F\"],\"docomo\":null,\"au\":\"E540\",\"softbank\":\"E233\",\"google\":\"FEAF9\",\"image\":\"2b07.png\",\"sheet_x\":4,\"sheet_y\":21,\"short_name\":\"arrow_down\",\"short_names\":[\"arrow_down\"],\"category\":\"Symbols\",\"sort_order\":168,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-pk\":{\"name\":\"Regional Indicator Symbol Letters PK\",\"unified\":\"1F1F5-1F1F0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f5-1f1f0.png\",\"sheet_x\":37,\"sheet_y\":11,\"short_name\":\"flag-pk\",\"short_names\":[\"flag-pk\"],\"category\":\"Flags\",\"sort_order\":168,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"woman-woman-girl-boy\":{\"name\":\"Woman Woman Girl Boy\",\"unified\":\"1F469-200D-1F469-200D-1F467-200D-1F466\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f469-200d-1f469-200d-1f467-200d-1f466.png\",\"sheet_x\":39,\"sheet_y\":17,\"short_name\":\"woman-woman-girl-boy\",\"short_names\":[\"woman-woman-girl-boy\"],\"category\":\"People\",\"sort_order\":168,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"unlock\":{\"name\":\"Open Lock\",\"unified\":\"1F513\",\"variations\":[],\"docomo\":\"E6D9\",\"au\":\"E51C\",\"softbank\":\"E145\",\"google\":\"FEB87\",\"image\":\"1f513.png\",\"sheet_x\":23,\"sheet_y\":3,\"short_name\":\"unlock\",\"short_names\":[\"unlock\"],\"category\":\"Objects\",\"sort_order\":168,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"woman-woman-boy-boy\":{\"name\":\"Woman Woman Boy Boy\",\"unified\":\"1F469-200D-1F469-200D-1F466-200D-1F466\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f469-200d-1f469-200d-1f466-200d-1f466.png\",\"sheet_x\":39,\"sheet_y\":15,\"short_name\":\"woman-woman-boy-boy\",\"short_names\":[\"woman-woman-boy-boy\"],\"category\":\"People\",\"sort_order\":169,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"lock_with_ink_pen\":{\"name\":\"Lock with Ink Pen\",\"unified\":\"1F50F\",\"variations\":[],\"docomo\":\"E6D9\",\"au\":\"EB0C\",\"softbank\":\"E144\",\"google\":\"FEB90\",\"image\":\"1f50f.png\",\"sheet_x\":22,\"sheet_y\":40,\"short_name\":\"lock_with_ink_pen\",\"short_names\":[\"lock_with_ink_pen\"],\"category\":\"Objects\",\"sort_order\":169,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-pw\":{\"name\":\"Regional Indicator Symbol Letters PW\",\"unified\":\"1F1F5-1F1FC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f5-1f1fc.png\",\"sheet_x\":37,\"sheet_y\":18,\"short_name\":\"flag-pw\",\"short_names\":[\"flag-pw\"],\"category\":\"Flags\",\"sort_order\":169,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"arrow_upper_right\":{\"name\":\"North East Arrow\",\"unified\":\"2197\",\"variations\":[\"2197-FE0F\"],\"docomo\":\"E678\",\"au\":\"E555\",\"softbank\":\"E236\",\"google\":\"FEAF0\",\"image\":\"2197.png\",\"sheet_x\":0,\"sheet_y\":9,\"short_name\":\"arrow_upper_right\",\"short_names\":[\"arrow_upper_right\"],\"category\":\"Symbols\",\"sort_order\":169,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"woman-woman-girl-girl\":{\"name\":\"Woman Woman Girl Girl\",\"unified\":\"1F469-200D-1F469-200D-1F467-200D-1F467\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f469-200d-1f469-200d-1f467-200d-1f467.png\",\"sheet_x\":39,\"sheet_y\":18,\"short_name\":\"woman-woman-girl-girl\",\"short_names\":[\"woman-woman-girl-girl\"],\"category\":\"People\",\"sort_order\":170,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"arrow_lower_right\":{\"name\":\"South East Arrow\",\"unified\":\"2198\",\"variations\":[\"2198-FE0F\"],\"docomo\":\"E696\",\"au\":\"E54D\",\"softbank\":\"E238\",\"google\":\"FEAF1\",\"image\":\"2198.png\",\"sheet_x\":0,\"sheet_y\":10,\"short_name\":\"arrow_lower_right\",\"short_names\":[\"arrow_lower_right\"],\"category\":\"Symbols\",\"sort_order\":170,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"lower_left_ballpoint_pen\":{\"name\":\"Lower Left Ballpoint Pen\",\"unified\":\"1F58A\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f58a.png\",\"sheet_x\":25,\"sheet_y\":9,\"short_name\":\"lower_left_ballpoint_pen\",\"short_names\":[\"lower_left_ballpoint_pen\"],\"category\":\"Objects\",\"sort_order\":170,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ps\":{\"name\":\"Regional Indicator Symbol Letters PS\",\"unified\":\"1F1F5-1F1F8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f5-1f1f8.png\",\"sheet_x\":37,\"sheet_y\":16,\"short_name\":\"flag-ps\",\"short_names\":[\"flag-ps\"],\"category\":\"Flags\",\"sort_order\":170,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-pa\":{\"name\":\"Regional Indicator Symbol Letters PA\",\"unified\":\"1F1F5-1F1E6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f5-1f1e6.png\",\"sheet_x\":37,\"sheet_y\":6,\"short_name\":\"flag-pa\",\"short_names\":[\"flag-pa\"],\"category\":\"Flags\",\"sort_order\":171,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"lower_left_fountain_pen\":{\"name\":\"Lower Left Fountain Pen\",\"unified\":\"1F58B\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f58b.png\",\"sheet_x\":25,\"sheet_y\":10,\"short_name\":\"lower_left_fountain_pen\",\"short_names\":[\"lower_left_fountain_pen\"],\"category\":\"Objects\",\"sort_order\":171,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"arrow_lower_left\":{\"name\":\"South West Arrow\",\"unified\":\"2199\",\"variations\":[\"2199-FE0F\"],\"docomo\":\"E6A5\",\"au\":\"E556\",\"softbank\":\"E239\",\"google\":\"FEAF3\",\"image\":\"2199.png\",\"sheet_x\":0,\"sheet_y\":11,\"short_name\":\"arrow_lower_left\",\"short_names\":[\"arrow_lower_left\"],\"category\":\"Symbols\",\"sort_order\":171,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"man-man-boy\":{\"name\":\"Man Man Boy\",\"unified\":\"1F468-200D-1F468-200D-1F466\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f468-200d-1f468-200d-1f466.png\",\"sheet_x\":39,\"sheet_y\":3,\"short_name\":\"man-man-boy\",\"short_names\":[\"man-man-boy\"],\"category\":\"People\",\"sort_order\":171,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"black_nib\":{\"name\":\"Black Nib\",\"unified\":\"2712\",\"variations\":[\"2712-FE0F\"],\"docomo\":\"E6AE\",\"au\":\"EB03\",\"softbank\":null,\"google\":\"FE536\",\"image\":\"2712.png\",\"sheet_x\":3,\"sheet_y\":34,\"short_name\":\"black_nib\",\"short_names\":[\"black_nib\"],\"category\":\"Objects\",\"sort_order\":172,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-pg\":{\"name\":\"Regional Indicator Symbol Letters PG\",\"unified\":\"1F1F5-1F1EC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f5-1f1ec.png\",\"sheet_x\":37,\"sheet_y\":9,\"short_name\":\"flag-pg\",\"short_names\":[\"flag-pg\"],\"category\":\"Flags\",\"sort_order\":172,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"arrow_upper_left\":{\"name\":\"North West Arrow\",\"unified\":\"2196\",\"variations\":[\"2196-FE0F\"],\"docomo\":\"E697\",\"au\":\"E54C\",\"softbank\":\"E237\",\"google\":\"FEAF2\",\"image\":\"2196.png\",\"sheet_x\":0,\"sheet_y\":8,\"short_name\":\"arrow_upper_left\",\"short_names\":[\"arrow_upper_left\"],\"category\":\"Symbols\",\"sort_order\":172,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"man-man-girl\":{\"name\":\"Man Man Girl\",\"unified\":\"1F468-200D-1F468-200D-1F467\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f468-200d-1f468-200d-1f467.png\",\"sheet_x\":39,\"sheet_y\":5,\"short_name\":\"man-man-girl\",\"short_names\":[\"man-man-girl\"],\"category\":\"People\",\"sort_order\":172,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"man-man-girl-boy\":{\"name\":\"Man Man Girl Boy\",\"unified\":\"1F468-200D-1F468-200D-1F467-200D-1F466\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f468-200d-1f468-200d-1f467-200d-1f466.png\",\"sheet_x\":39,\"sheet_y\":6,\"short_name\":\"man-man-girl-boy\",\"short_names\":[\"man-man-girl-boy\"],\"category\":\"People\",\"sort_order\":173,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"arrow_up_down\":{\"name\":\"Up Down Arrow\",\"unified\":\"2195\",\"variations\":[\"2195-FE0F\"],\"docomo\":\"E73D\",\"au\":\"EB7B\",\"softbank\":null,\"google\":\"FEAF7\",\"image\":\"2195.png\",\"sheet_x\":0,\"sheet_y\":7,\"short_name\":\"arrow_up_down\",\"short_names\":[\"arrow_up_down\"],\"category\":\"Symbols\",\"sort_order\":173,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"memo\":{\"name\":\"Memo\",\"unified\":\"1F4DD\",\"variations\":[],\"docomo\":\"E689\",\"au\":\"EA92\",\"softbank\":\"E301\",\"google\":\"FE527\",\"image\":\"1f4dd.png\",\"sheet_x\":21,\"sheet_y\":32,\"short_name\":\"memo\",\"short_names\":[\"memo\",\"pencil\"],\"category\":\"Objects\",\"sort_order\":173,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-py\":{\"name\":\"Regional Indicator Symbol Letters PY\",\"unified\":\"1F1F5-1F1FE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f5-1f1fe.png\",\"sheet_x\":37,\"sheet_y\":19,\"short_name\":\"flag-py\",\"short_names\":[\"flag-py\"],\"category\":\"Flags\",\"sort_order\":173,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-pe\":{\"name\":\"Regional Indicator Symbol Letters PE\",\"unified\":\"1F1F5-1F1EA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f5-1f1ea.png\",\"sheet_x\":37,\"sheet_y\":7,\"short_name\":\"flag-pe\",\"short_names\":[\"flag-pe\"],\"category\":\"Flags\",\"sort_order\":174,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"pencil2\":{\"name\":\"Pencil\",\"unified\":\"270F\",\"variations\":[\"270F-FE0F\"],\"docomo\":\"E719\",\"au\":\"E4A1\",\"softbank\":\"E301\",\"google\":\"FE539\",\"image\":\"270f.png\",\"sheet_x\":3,\"sheet_y\":33,\"short_name\":\"pencil2\",\"short_names\":[\"pencil2\"],\"category\":\"Objects\",\"sort_order\":174,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"man-man-boy-boy\":{\"name\":\"Man Man Boy Boy\",\"unified\":\"1F468-200D-1F468-200D-1F466-200D-1F466\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f468-200d-1f468-200d-1f466-200d-1f466.png\",\"sheet_x\":39,\"sheet_y\":4,\"short_name\":\"man-man-boy-boy\",\"short_names\":[\"man-man-boy-boy\"],\"category\":\"People\",\"sort_order\":174,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"left_right_arrow\":{\"name\":\"Left Right Arrow\",\"unified\":\"2194\",\"variations\":[\"2194-FE0F\"],\"docomo\":\"E73C\",\"au\":\"EB7A\",\"softbank\":null,\"google\":\"FEAF6\",\"image\":\"2194.png\",\"sheet_x\":0,\"sheet_y\":6,\"short_name\":\"left_right_arrow\",\"short_names\":[\"left_right_arrow\"],\"category\":\"Symbols\",\"sort_order\":174,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"man-man-girl-girl\":{\"name\":\"Man Man Girl Girl\",\"unified\":\"1F468-200D-1F468-200D-1F467-200D-1F467\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f468-200d-1f468-200d-1f467-200d-1f467.png\",\"sheet_x\":39,\"sheet_y\":7,\"short_name\":\"man-man-girl-girl\",\"short_names\":[\"man-man-girl-girl\"],\"category\":\"People\",\"sort_order\":175,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"arrows_counterclockwise\":{\"name\":\"Anticlockwise Downwards and Upwards Open Circle Arrows\",\"unified\":\"1F504\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f504.png\",\"sheet_x\":22,\"sheet_y\":29,\"short_name\":\"arrows_counterclockwise\",\"short_names\":[\"arrows_counterclockwise\"],\"category\":\"Symbols\",\"sort_order\":175,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ph\":{\"name\":\"Regional Indicator Symbol Letters PH\",\"unified\":\"1F1F5-1F1ED\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f5-1f1ed.png\",\"sheet_x\":37,\"sheet_y\":10,\"short_name\":\"flag-ph\",\"short_names\":[\"flag-ph\"],\"category\":\"Flags\",\"sort_order\":175,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"lower_left_crayon\":{\"name\":\"Lower Left Crayon\",\"unified\":\"1F58D\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f58d.png\",\"sheet_x\":25,\"sheet_y\":12,\"short_name\":\"lower_left_crayon\",\"short_names\":[\"lower_left_crayon\"],\"category\":\"Objects\",\"sort_order\":175,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"womans_clothes\":{\"name\":\"Womans Clothes\",\"unified\":\"1F45A\",\"variations\":[],\"docomo\":\"E70E\",\"au\":\"E50D\",\"softbank\":\"E006\",\"google\":\"FE4DB\",\"image\":\"1f45a.png\",\"sheet_x\":15,\"sheet_y\":37,\"short_name\":\"womans_clothes\",\"short_names\":[\"womans_clothes\"],\"category\":\"People\",\"sort_order\":176,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"lower_left_paintbrush\":{\"name\":\"Lower Left Paintbrush\",\"unified\":\"1F58C\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f58c.png\",\"sheet_x\":25,\"sheet_y\":11,\"short_name\":\"lower_left_paintbrush\",\"short_names\":[\"lower_left_paintbrush\"],\"category\":\"Objects\",\"sort_order\":176,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-pn\":{\"name\":\"Regional Indicator Symbol Letters PN\",\"unified\":\"1F1F5-1F1F3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f5-1f1f3.png\",\"sheet_x\":37,\"sheet_y\":14,\"short_name\":\"flag-pn\",\"short_names\":[\"flag-pn\"],\"category\":\"Flags\",\"sort_order\":176,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"arrow_right_hook\":{\"name\":\"Rightwards Arrow with Hook\",\"unified\":\"21AA\",\"variations\":[\"21AA-FE0F\"],\"docomo\":null,\"au\":\"E55C\",\"softbank\":null,\"google\":\"FEB88\",\"image\":\"21aa.png\",\"sheet_x\":0,\"sheet_y\":13,\"short_name\":\"arrow_right_hook\",\"short_names\":[\"arrow_right_hook\"],\"category\":\"Symbols\",\"sort_order\":176,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"leftwards_arrow_with_hook\":{\"name\":\"Leftwards Arrow with Hook\",\"unified\":\"21A9\",\"variations\":[\"21A9-FE0F\"],\"docomo\":\"E6DA\",\"au\":\"E55D\",\"softbank\":null,\"google\":\"FEB83\",\"image\":\"21a9.png\",\"sheet_x\":0,\"sheet_y\":12,\"short_name\":\"leftwards_arrow_with_hook\",\"short_names\":[\"leftwards_arrow_with_hook\"],\"category\":\"Symbols\",\"sort_order\":177,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"mag\":{\"name\":\"Left-Pointing Magnifying Glass\",\"unified\":\"1F50D\",\"variations\":[],\"docomo\":\"E6DC\",\"au\":\"E518\",\"softbank\":\"E114\",\"google\":\"FEB85\",\"image\":\"1f50d.png\",\"sheet_x\":22,\"sheet_y\":38,\"short_name\":\"mag\",\"short_names\":[\"mag\"],\"category\":\"Objects\",\"sort_order\":177,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-pl\":{\"name\":\"Regional Indicator Symbol Letters PL\",\"unified\":\"1F1F5-1F1F1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f5-1f1f1.png\",\"sheet_x\":37,\"sheet_y\":12,\"short_name\":\"flag-pl\",\"short_names\":[\"flag-pl\"],\"category\":\"Flags\",\"sort_order\":177,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"shirt\":{\"name\":\"T-Shirt\",\"unified\":\"1F455\",\"variations\":[],\"docomo\":\"E70E\",\"au\":\"E5B6\",\"softbank\":\"E006\",\"google\":\"FE4CF\",\"image\":\"1f455.png\",\"sheet_x\":15,\"sheet_y\":32,\"short_name\":\"shirt\",\"short_names\":[\"shirt\",\"tshirt\"],\"category\":\"People\",\"sort_order\":177,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-pt\":{\"name\":\"Regional Indicator Symbol Letters PT\",\"unified\":\"1F1F5-1F1F9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f5-1f1f9.png\",\"sheet_x\":37,\"sheet_y\":17,\"short_name\":\"flag-pt\",\"short_names\":[\"flag-pt\"],\"category\":\"Flags\",\"sort_order\":178,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"jeans\":{\"name\":\"Jeans\",\"unified\":\"1F456\",\"variations\":[],\"docomo\":\"E711\",\"au\":\"EB77\",\"softbank\":null,\"google\":\"FE4D0\",\"image\":\"1f456.png\",\"sheet_x\":15,\"sheet_y\":33,\"short_name\":\"jeans\",\"short_names\":[\"jeans\"],\"category\":\"People\",\"sort_order\":178,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"mag_right\":{\"name\":\"Right-Pointing Magnifying Glass\",\"unified\":\"1F50E\",\"variations\":[],\"docomo\":\"E6DC\",\"au\":\"EB05\",\"softbank\":\"E114\",\"google\":\"FEB8D\",\"image\":\"1f50e.png\",\"sheet_x\":22,\"sheet_y\":39,\"short_name\":\"mag_right\",\"short_names\":[\"mag_right\"],\"category\":\"Objects\",\"sort_order\":178,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"arrow_heading_up\":{\"name\":\"Arrow Pointing Rightwards Then Curving Upwards\",\"unified\":\"2934\",\"variations\":[\"2934-FE0F\"],\"docomo\":\"E6F5\",\"au\":\"EB2D\",\"softbank\":\"E236\",\"google\":\"FEAF4\",\"image\":\"2934.png\",\"sheet_x\":4,\"sheet_y\":17,\"short_name\":\"arrow_heading_up\",\"short_names\":[\"arrow_heading_up\"],\"category\":\"Symbols\",\"sort_order\":178,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"necktie\":{\"name\":\"Necktie\",\"unified\":\"1F454\",\"variations\":[],\"docomo\":null,\"au\":\"EA93\",\"softbank\":\"E302\",\"google\":\"FE4D3\",\"image\":\"1f454.png\",\"sheet_x\":15,\"sheet_y\":31,\"short_name\":\"necktie\",\"short_names\":[\"necktie\"],\"category\":\"People\",\"sort_order\":179,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-pr\":{\"name\":\"Regional Indicator Symbol Letters PR\",\"unified\":\"1F1F5-1F1F7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f5-1f1f7.png\",\"sheet_x\":37,\"sheet_y\":15,\"short_name\":\"flag-pr\",\"short_names\":[\"flag-pr\"],\"category\":\"Flags\",\"sort_order\":179,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"arrow_heading_down\":{\"name\":\"Arrow Pointing Rightwards Then Curving Downwards\",\"unified\":\"2935\",\"variations\":[\"2935-FE0F\"],\"docomo\":\"E700\",\"au\":\"EB2E\",\"softbank\":\"E238\",\"google\":\"FEAF5\",\"image\":\"2935.png\",\"sheet_x\":4,\"sheet_y\":18,\"short_name\":\"arrow_heading_down\",\"short_names\":[\"arrow_heading_down\"],\"category\":\"Symbols\",\"sort_order\":179,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"dress\":{\"name\":\"Dress\",\"unified\":\"1F457\",\"variations\":[],\"docomo\":null,\"au\":\"EB6B\",\"softbank\":\"E319\",\"google\":\"FE4D5\",\"image\":\"1f457.png\",\"sheet_x\":15,\"sheet_y\":34,\"short_name\":\"dress\",\"short_names\":[\"dress\"],\"category\":\"People\",\"sort_order\":180,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-qa\":{\"name\":\"Regional Indicator Symbol Letters QA\",\"unified\":\"1F1F6-1F1E6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f6-1f1e6.png\",\"sheet_x\":37,\"sheet_y\":20,\"short_name\":\"flag-qa\",\"short_names\":[\"flag-qa\"],\"category\":\"Flags\",\"sort_order\":180,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"hash\":{\"name\":\"Hash Key\",\"unified\":\"0023-20E3\",\"variations\":[\"0023-FE0F-20E3\"],\"docomo\":\"E6E0\",\"au\":\"EB84\",\"softbank\":\"E210\",\"google\":\"FE82C\",\"image\":\"0023-20e3.png\",\"sheet_x\":32,\"sheet_y\":21,\"short_name\":\"hash\",\"short_names\":[\"hash\"],\"category\":\"Symbols\",\"sort_order\":180,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-re\":{\"name\":\"Regional Indicator Symbol Letters RE\",\"unified\":\"1F1F7-1F1EA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f7-1f1ea.png\",\"sheet_x\":37,\"sheet_y\":21,\"short_name\":\"flag-re\",\"short_names\":[\"flag-re\"],\"category\":\"Flags\",\"sort_order\":181,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"bikini\":{\"name\":\"Bikini\",\"unified\":\"1F459\",\"variations\":[],\"docomo\":null,\"au\":\"EAA4\",\"softbank\":\"E322\",\"google\":\"FE4DA\",\"image\":\"1f459.png\",\"sheet_x\":15,\"sheet_y\":36,\"short_name\":\"bikini\",\"short_names\":[\"bikini\"],\"category\":\"People\",\"sort_order\":181,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"information_source\":{\"name\":\"Information Source\",\"unified\":\"2139\",\"variations\":[\"2139-FE0F\"],\"docomo\":null,\"au\":\"E533\",\"softbank\":null,\"google\":\"FEB47\",\"image\":\"2139.png\",\"sheet_x\":0,\"sheet_y\":5,\"short_name\":\"information_source\",\"short_names\":[\"information_source\"],\"category\":\"Symbols\",\"sort_order\":181,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"kimono\":{\"name\":\"Kimono\",\"unified\":\"1F458\",\"variations\":[],\"docomo\":null,\"au\":\"EAA3\",\"softbank\":\"E321\",\"google\":\"FE4D9\",\"image\":\"1f458.png\",\"sheet_x\":15,\"sheet_y\":35,\"short_name\":\"kimono\",\"short_names\":[\"kimono\"],\"category\":\"People\",\"sort_order\":182,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"abc\":{\"name\":\"Input Symbol for Latin Letters\",\"unified\":\"1F524\",\"variations\":[],\"docomo\":null,\"au\":\"EB55\",\"softbank\":null,\"google\":\"FEB80\",\"image\":\"1f524.png\",\"sheet_x\":23,\"sheet_y\":20,\"short_name\":\"abc\",\"short_names\":[\"abc\"],\"category\":\"Symbols\",\"sort_order\":182,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ro\":{\"name\":\"Regional Indicator Symbol Letters RO\",\"unified\":\"1F1F7-1F1F4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f7-1f1f4.png\",\"sheet_x\":37,\"sheet_y\":22,\"short_name\":\"flag-ro\",\"short_names\":[\"flag-ro\"],\"category\":\"Flags\",\"sort_order\":182,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"lipstick\":{\"name\":\"Lipstick\",\"unified\":\"1F484\",\"variations\":[],\"docomo\":\"E710\",\"au\":\"E509\",\"softbank\":\"E31C\",\"google\":\"FE195\",\"image\":\"1f484.png\",\"sheet_x\":19,\"sheet_y\":5,\"short_name\":\"lipstick\",\"short_names\":[\"lipstick\"],\"category\":\"People\",\"sort_order\":183,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ru\":{\"name\":\"Regional Indicator Symbol Letters RU\",\"unified\":\"1F1F7-1F1FA\",\"variations\":[],\"docomo\":null,\"au\":\"E5D6\",\"softbank\":\"E512\",\"google\":\"FE4EC\",\"image\":\"1f1f7-1f1fa.png\",\"sheet_x\":37,\"sheet_y\":24,\"short_name\":\"flag-ru\",\"short_names\":[\"flag-ru\",\"ru\"],\"category\":\"Flags\",\"sort_order\":183,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"abcd\":{\"name\":\"Input Symbol for Latin Small Letters\",\"unified\":\"1F521\",\"variations\":[],\"docomo\":null,\"au\":\"EAFE\",\"softbank\":null,\"google\":\"FEB7D\",\"image\":\"1f521.png\",\"sheet_x\":23,\"sheet_y\":17,\"short_name\":\"abcd\",\"short_names\":[\"abcd\"],\"category\":\"Symbols\",\"sort_order\":183,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"kiss\":{\"name\":\"Kiss Mark\",\"unified\":\"1F48B\",\"variations\":[],\"docomo\":\"E6F9\",\"au\":\"E4EB\",\"softbank\":\"E003\",\"google\":\"FE823\",\"image\":\"1f48b.png\",\"sheet_x\":19,\"sheet_y\":27,\"short_name\":\"kiss\",\"short_names\":[\"kiss\"],\"category\":\"People\",\"sort_order\":184,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[\":*\",\":-*\"]},\"capital_abcd\":{\"name\":\"Input Symbol for Latin Capital Letters\",\"unified\":\"1F520\",\"variations\":[],\"docomo\":null,\"au\":\"EAFD\",\"softbank\":null,\"google\":\"FEB7C\",\"image\":\"1f520.png\",\"sheet_x\":23,\"sheet_y\":16,\"short_name\":\"capital_abcd\",\"short_names\":[\"capital_abcd\"],\"category\":\"Symbols\",\"sort_order\":184,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-rw\":{\"name\":\"Regional Indicator Symbol Letters RW\",\"unified\":\"1F1F7-1F1FC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f7-1f1fc.png\",\"sheet_x\":37,\"sheet_y\":25,\"short_name\":\"flag-rw\",\"short_names\":[\"flag-rw\"],\"category\":\"Flags\",\"sort_order\":184,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"footprints\":{\"name\":\"Footprints\",\"unified\":\"1F463\",\"variations\":[],\"docomo\":\"E698\",\"au\":\"EB2A\",\"softbank\":\"E536\",\"google\":\"FE553\",\"image\":\"1f463.png\",\"sheet_x\":16,\"sheet_y\":5,\"short_name\":\"footprints\",\"short_names\":[\"footprints\"],\"category\":\"People\",\"sort_order\":185,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-bl\":{\"name\":\"Regional Indicator Symbol Letters BL\",\"unified\":\"1F1E7-1F1F1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1f1.png\",\"sheet_x\":33,\"sheet_y\":18,\"short_name\":\"flag-bl\",\"short_names\":[\"flag-bl\"],\"category\":\"Flags\",\"sort_order\":185,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"symbols\":{\"name\":\"Input Symbol for Symbols\",\"unified\":\"1F523\",\"variations\":[],\"docomo\":null,\"au\":\"EB00\",\"softbank\":null,\"google\":\"FEB7F\",\"image\":\"1f523.png\",\"sheet_x\":23,\"sheet_y\":19,\"short_name\":\"symbols\",\"short_names\":[\"symbols\"],\"category\":\"Symbols\",\"sort_order\":185,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"high_heel\":{\"name\":\"High-Heeled Shoe\",\"unified\":\"1F460\",\"variations\":[],\"docomo\":\"E674\",\"au\":\"E51A\",\"softbank\":\"E13E\",\"google\":\"FE4D6\",\"image\":\"1f460.png\",\"sheet_x\":16,\"sheet_y\":2,\"short_name\":\"high_heel\",\"short_names\":[\"high_heel\"],\"category\":\"People\",\"sort_order\":186,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"musical_note\":{\"name\":\"Musical Note\",\"unified\":\"1F3B5\",\"variations\":[],\"docomo\":\"E6F6\",\"au\":\"E5BE\",\"softbank\":\"E03E\",\"google\":\"FE813\",\"image\":\"1f3b5.png\",\"sheet_x\":9,\"sheet_y\":36,\"short_name\":\"musical_note\",\"short_names\":[\"musical_note\"],\"category\":\"Symbols\",\"sort_order\":186,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-sh\":{\"name\":\"Regional Indicator Symbol Letters SH\",\"unified\":\"1F1F8-1F1ED\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1ed.png\",\"sheet_x\":37,\"sheet_y\":32,\"short_name\":\"flag-sh\",\"short_names\":[\"flag-sh\"],\"category\":\"Flags\",\"sort_order\":186,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-kn\":{\"name\":\"Regional Indicator Symbol Letters KN\",\"unified\":\"1F1F0-1F1F3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f0-1f1f3.png\",\"sheet_x\":35,\"sheet_y\":35,\"short_name\":\"flag-kn\",\"short_names\":[\"flag-kn\"],\"category\":\"Flags\",\"sort_order\":187,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"notes\":{\"name\":\"Multiple Musical Notes\",\"unified\":\"1F3B6\",\"variations\":[],\"docomo\":\"E6FF\",\"au\":\"E505\",\"softbank\":\"E326\",\"google\":\"FE814\",\"image\":\"1f3b6.png\",\"sheet_x\":9,\"sheet_y\":37,\"short_name\":\"notes\",\"short_names\":[\"notes\"],\"category\":\"Symbols\",\"sort_order\":187,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"sandal\":{\"name\":\"Womans Sandal\",\"unified\":\"1F461\",\"variations\":[],\"docomo\":\"E674\",\"au\":\"E51A\",\"softbank\":\"E31A\",\"google\":\"FE4D7\",\"image\":\"1f461.png\",\"sheet_x\":16,\"sheet_y\":3,\"short_name\":\"sandal\",\"short_names\":[\"sandal\"],\"category\":\"People\",\"sort_order\":187,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"boot\":{\"name\":\"Womans Boots\",\"unified\":\"1F462\",\"variations\":[],\"docomo\":null,\"au\":\"EA9F\",\"softbank\":\"E31B\",\"google\":\"FE4D8\",\"image\":\"1f462.png\",\"sheet_x\":16,\"sheet_y\":4,\"short_name\":\"boot\",\"short_names\":[\"boot\"],\"category\":\"People\",\"sort_order\":188,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"wavy_dash\":{\"name\":\"Wavy Dash\",\"unified\":\"3030\",\"variations\":[\"3030-FE0F\"],\"docomo\":\"E709\",\"au\":null,\"softbank\":null,\"google\":\"FEB07\",\"image\":\"3030.png\",\"sheet_x\":4,\"sheet_y\":26,\"short_name\":\"wavy_dash\",\"short_names\":[\"wavy_dash\"],\"category\":\"Symbols\",\"sort_order\":188,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-lc\":{\"name\":\"Regional Indicator Symbol Letters LC\",\"unified\":\"1F1F1-1F1E8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f1-1f1e8.png\",\"sheet_x\":36,\"sheet_y\":2,\"short_name\":\"flag-lc\",\"short_names\":[\"flag-lc\"],\"category\":\"Flags\",\"sort_order\":188,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-pm\":{\"name\":\"Regional Indicator Symbol Letters PM\",\"unified\":\"1F1F5-1F1F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f5-1f1f2.png\",\"sheet_x\":37,\"sheet_y\":13,\"short_name\":\"flag-pm\",\"short_names\":[\"flag-pm\"],\"category\":\"Flags\",\"sort_order\":189,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"mans_shoe\":{\"name\":\"Mans Shoe\",\"unified\":\"1F45E\",\"variations\":[],\"docomo\":\"E699\",\"au\":\"E5B7\",\"softbank\":\"E007\",\"google\":\"FE4CC\",\"image\":\"1f45e.png\",\"sheet_x\":16,\"sheet_y\":0,\"short_name\":\"mans_shoe\",\"short_names\":[\"mans_shoe\",\"shoe\"],\"category\":\"People\",\"sort_order\":189,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"curly_loop\":{\"name\":\"Curly Loop\",\"unified\":\"27B0\",\"variations\":[],\"docomo\":\"E70A\",\"au\":\"EB31\",\"softbank\":null,\"google\":\"FEB08\",\"image\":\"27b0.png\",\"sheet_x\":4,\"sheet_y\":15,\"short_name\":\"curly_loop\",\"short_names\":[\"curly_loop\"],\"category\":\"Symbols\",\"sort_order\":189,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-vc\":{\"name\":\"Regional Indicator Symbol Letters VC\",\"unified\":\"1F1FB-1F1E8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1fb-1f1e8.png\",\"sheet_x\":38,\"sheet_y\":30,\"short_name\":\"flag-vc\",\"short_names\":[\"flag-vc\"],\"category\":\"Flags\",\"sort_order\":190,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"heavy_check_mark\":{\"name\":\"Heavy Check Mark\",\"unified\":\"2714\",\"variations\":[\"2714-FE0F\"],\"docomo\":null,\"au\":\"E557\",\"softbank\":null,\"google\":\"FEB49\",\"image\":\"2714.png\",\"sheet_x\":3,\"sheet_y\":35,\"short_name\":\"heavy_check_mark\",\"short_names\":[\"heavy_check_mark\"],\"category\":\"Symbols\",\"sort_order\":190,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"athletic_shoe\":{\"name\":\"Athletic Shoe\",\"unified\":\"1F45F\",\"variations\":[],\"docomo\":\"E699\",\"au\":\"EB2B\",\"softbank\":\"E007\",\"google\":\"FE4CD\",\"image\":\"1f45f.png\",\"sheet_x\":16,\"sheet_y\":1,\"short_name\":\"athletic_shoe\",\"short_names\":[\"athletic_shoe\"],\"category\":\"People\",\"sort_order\":190,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"womans_hat\":{\"name\":\"Womans Hat\",\"unified\":\"1F452\",\"variations\":[],\"docomo\":null,\"au\":\"EA9E\",\"softbank\":\"E318\",\"google\":\"FE4D4\",\"image\":\"1f452.png\",\"sheet_x\":15,\"sheet_y\":29,\"short_name\":\"womans_hat\",\"short_names\":[\"womans_hat\"],\"category\":\"People\",\"sort_order\":191,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ws\":{\"name\":\"Regional Indicator Symbol Letters WS\",\"unified\":\"1F1FC-1F1F8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1fc-1f1f8.png\",\"sheet_x\":38,\"sheet_y\":37,\"short_name\":\"flag-ws\",\"short_names\":[\"flag-ws\"],\"category\":\"Flags\",\"sort_order\":191,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"arrows_clockwise\":{\"name\":\"Clockwise Downwards and Upwards Open Circle Arrows\",\"unified\":\"1F503\",\"variations\":[],\"docomo\":\"E735\",\"au\":\"EB0D\",\"softbank\":null,\"google\":\"FEB91\",\"image\":\"1f503.png\",\"sheet_x\":22,\"sheet_y\":28,\"short_name\":\"arrows_clockwise\",\"short_names\":[\"arrows_clockwise\"],\"category\":\"Symbols\",\"sort_order\":191,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"heavy_plus_sign\":{\"name\":\"Heavy Plus Sign\",\"unified\":\"2795\",\"variations\":[],\"docomo\":null,\"au\":\"E53C\",\"softbank\":null,\"google\":\"FEB51\",\"image\":\"2795.png\",\"sheet_x\":4,\"sheet_y\":11,\"short_name\":\"heavy_plus_sign\",\"short_names\":[\"heavy_plus_sign\"],\"category\":\"Symbols\",\"sort_order\":192,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"tophat\":{\"name\":\"Top Hat\",\"unified\":\"1F3A9\",\"variations\":[],\"docomo\":\"E67C\",\"au\":\"EAF5\",\"softbank\":\"E503\",\"google\":\"FE805\",\"image\":\"1f3a9.png\",\"sheet_x\":9,\"sheet_y\":24,\"short_name\":\"tophat\",\"short_names\":[\"tophat\"],\"category\":\"People\",\"sort_order\":192,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-sm\":{\"name\":\"Regional Indicator Symbol Letters SM\",\"unified\":\"1F1F8-1F1F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1f2.png\",\"sheet_x\":37,\"sheet_y\":37,\"short_name\":\"flag-sm\",\"short_names\":[\"flag-sm\"],\"category\":\"Flags\",\"sort_order\":192,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"helmet_with_white_cross\":{\"name\":\"Helmet with White Cross\",\"unified\":\"26D1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"26d1.png\",\"sheet_x\":2,\"sheet_y\":25,\"short_name\":\"helmet_with_white_cross\",\"short_names\":[\"helmet_with_white_cross\"],\"category\":\"People\",\"sort_order\":193,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"heavy_minus_sign\":{\"name\":\"Heavy Minus Sign\",\"unified\":\"2796\",\"variations\":[],\"docomo\":null,\"au\":\"E53D\",\"softbank\":null,\"google\":\"FEB52\",\"image\":\"2796.png\",\"sheet_x\":4,\"sheet_y\":12,\"short_name\":\"heavy_minus_sign\",\"short_names\":[\"heavy_minus_sign\"],\"category\":\"Symbols\",\"sort_order\":193,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-st\":{\"name\":\"Regional Indicator Symbol Letters ST\",\"unified\":\"1F1F8-1F1F9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1f9.png\",\"sheet_x\":38,\"sheet_y\":1,\"short_name\":\"flag-st\",\"short_names\":[\"flag-st\"],\"category\":\"Flags\",\"sort_order\":193,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-sa\":{\"name\":\"Regional Indicator Symbol Letters SA\",\"unified\":\"1F1F8-1F1E6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1e6.png\",\"sheet_x\":37,\"sheet_y\":26,\"short_name\":\"flag-sa\",\"short_names\":[\"flag-sa\"],\"category\":\"Flags\",\"sort_order\":194,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"heavy_division_sign\":{\"name\":\"Heavy Division Sign\",\"unified\":\"2797\",\"variations\":[],\"docomo\":null,\"au\":\"E554\",\"softbank\":null,\"google\":\"FEB54\",\"image\":\"2797.png\",\"sheet_x\":4,\"sheet_y\":13,\"short_name\":\"heavy_division_sign\",\"short_names\":[\"heavy_division_sign\"],\"category\":\"Symbols\",\"sort_order\":194,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"mortar_board\":{\"name\":\"Graduation Cap\",\"unified\":\"1F393\",\"variations\":[],\"docomo\":null,\"au\":\"EAE5\",\"softbank\":\"E439\",\"google\":\"FE51A\",\"image\":\"1f393.png\",\"sheet_x\":9,\"sheet_y\":7,\"short_name\":\"mortar_board\",\"short_names\":[\"mortar_board\"],\"category\":\"People\",\"sort_order\":194,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-sn\":{\"name\":\"Regional Indicator Symbol Letters SN\",\"unified\":\"1F1F8-1F1F3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1f3.png\",\"sheet_x\":37,\"sheet_y\":38,\"short_name\":\"flag-sn\",\"short_names\":[\"flag-sn\"],\"category\":\"Flags\",\"sort_order\":195,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"heavy_multiplication_x\":{\"name\":\"Heavy Multiplication X\",\"unified\":\"2716\",\"variations\":[\"2716-FE0F\"],\"docomo\":null,\"au\":\"E54F\",\"softbank\":\"E333\",\"google\":\"FEB53\",\"image\":\"2716.png\",\"sheet_x\":3,\"sheet_y\":36,\"short_name\":\"heavy_multiplication_x\",\"short_names\":[\"heavy_multiplication_x\"],\"category\":\"Symbols\",\"sort_order\":195,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"crown\":{\"name\":\"Crown\",\"unified\":\"1F451\",\"variations\":[],\"docomo\":\"E71A\",\"au\":\"E5C9\",\"softbank\":\"E10E\",\"google\":\"FE4D1\",\"image\":\"1f451.png\",\"sheet_x\":15,\"sheet_y\":28,\"short_name\":\"crown\",\"short_names\":[\"crown\"],\"category\":\"People\",\"sort_order\":195,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"school_satchel\":{\"name\":\"School Satchel\",\"unified\":\"1F392\",\"variations\":[],\"docomo\":null,\"au\":\"EAE6\",\"softbank\":\"E43A\",\"google\":\"FE51B\",\"image\":\"1f392.png\",\"sheet_x\":9,\"sheet_y\":6,\"short_name\":\"school_satchel\",\"short_names\":[\"school_satchel\"],\"category\":\"People\",\"sort_order\":196,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-rs\":{\"name\":\"Regional Indicator Symbol Letters RS\",\"unified\":\"1F1F7-1F1F8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f7-1f1f8.png\",\"sheet_x\":37,\"sheet_y\":23,\"short_name\":\"flag-rs\",\"short_names\":[\"flag-rs\"],\"category\":\"Flags\",\"sort_order\":196,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"heavy_dollar_sign\":{\"name\":\"Heavy Dollar Sign\",\"unified\":\"1F4B2\",\"variations\":[],\"docomo\":\"E715\",\"au\":\"E579\",\"softbank\":\"E12F\",\"google\":\"FE4E0\",\"image\":\"1f4b2.png\",\"sheet_x\":20,\"sheet_y\":30,\"short_name\":\"heavy_dollar_sign\",\"short_names\":[\"heavy_dollar_sign\"],\"category\":\"Symbols\",\"sort_order\":196,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-sc\":{\"name\":\"Regional Indicator Symbol Letters SC\",\"unified\":\"1F1F8-1F1E8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1e8.png\",\"sheet_x\":37,\"sheet_y\":28,\"short_name\":\"flag-sc\",\"short_names\":[\"flag-sc\"],\"category\":\"Flags\",\"sort_order\":197,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"currency_exchange\":{\"name\":\"Currency Exchange\",\"unified\":\"1F4B1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":\"E149\",\"google\":\"FE4DE\",\"image\":\"1f4b1.png\",\"sheet_x\":20,\"sheet_y\":29,\"short_name\":\"currency_exchange\",\"short_names\":[\"currency_exchange\"],\"category\":\"Symbols\",\"sort_order\":197,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"pouch\":{\"name\":\"Pouch\",\"unified\":\"1F45D\",\"variations\":[],\"docomo\":\"E6AD\",\"au\":null,\"softbank\":null,\"google\":\"FE4F1\",\"image\":\"1f45d.png\",\"sheet_x\":15,\"sheet_y\":40,\"short_name\":\"pouch\",\"short_names\":[\"pouch\"],\"category\":\"People\",\"sort_order\":197,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"purse\":{\"name\":\"Purse\",\"unified\":\"1F45B\",\"variations\":[],\"docomo\":\"E70F\",\"au\":\"E504\",\"softbank\":null,\"google\":\"FE4DC\",\"image\":\"1f45b.png\",\"sheet_x\":15,\"sheet_y\":38,\"short_name\":\"purse\",\"short_names\":[\"purse\"],\"category\":\"People\",\"sort_order\":198,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-sl\":{\"name\":\"Regional Indicator Symbol Letters SL\",\"unified\":\"1F1F8-1F1F1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1f1.png\",\"sheet_x\":37,\"sheet_y\":36,\"short_name\":\"flag-sl\",\"short_names\":[\"flag-sl\"],\"category\":\"Flags\",\"sort_order\":198,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"copyright\":{\"name\":\"Copyright Sign\",\"unified\":\"00A9\",\"variations\":[\"00A9-FE0F\"],\"docomo\":\"E731\",\"au\":\"E558\",\"softbank\":\"E24E\",\"google\":\"FEB29\",\"image\":\"00a9.png\",\"sheet_x\":0,\"sheet_y\":0,\"short_name\":\"copyright\",\"short_names\":[\"copyright\"],\"category\":\"Symbols\",\"sort_order\":198,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":false,\"has_img_emojione\":true,\"emoticons\":[]},\"handbag\":{\"name\":\"Handbag\",\"unified\":\"1F45C\",\"variations\":[],\"docomo\":\"E682\",\"au\":\"E49C\",\"softbank\":\"E323\",\"google\":\"FE4F0\",\"image\":\"1f45c.png\",\"sheet_x\":15,\"sheet_y\":39,\"short_name\":\"handbag\",\"short_names\":[\"handbag\"],\"category\":\"People\",\"sort_order\":199,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-sg\":{\"name\":\"Regional Indicator Symbol Letters SG\",\"unified\":\"1F1F8-1F1EC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1ec.png\",\"sheet_x\":37,\"sheet_y\":31,\"short_name\":\"flag-sg\",\"short_names\":[\"flag-sg\"],\"category\":\"Flags\",\"sort_order\":199,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"registered\":{\"name\":\"Registered Sign\",\"unified\":\"00AE\",\"variations\":[\"00AE-FE0F\"],\"docomo\":\"E736\",\"au\":\"E559\",\"softbank\":\"E24F\",\"google\":\"FEB2D\",\"image\":\"00ae.png\",\"sheet_x\":0,\"sheet_y\":1,\"short_name\":\"registered\",\"short_names\":[\"registered\"],\"category\":\"Symbols\",\"sort_order\":199,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":false,\"has_img_emojione\":true,\"emoticons\":[]},\"briefcase\":{\"name\":\"Briefcase\",\"unified\":\"1F4BC\",\"variations\":[],\"docomo\":\"E682\",\"au\":\"E5CE\",\"softbank\":\"E11E\",\"google\":\"FE53B\",\"image\":\"1f4bc.png\",\"sheet_x\":20,\"sheet_y\":40,\"short_name\":\"briefcase\",\"short_names\":[\"briefcase\"],\"category\":\"People\",\"sort_order\":200,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-sx\":{\"name\":\"Regional Indicator Symbol Letters SX\",\"unified\":\"1F1F8-1F1FD\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1fd.png\",\"sheet_x\":38,\"sheet_y\":3,\"short_name\":\"flag-sx\",\"short_names\":[\"flag-sx\"],\"category\":\"Flags\",\"sort_order\":200,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"tm\":{\"name\":\"Trade Mark Sign\",\"unified\":\"2122\",\"variations\":[\"2122-FE0F\"],\"docomo\":\"E732\",\"au\":\"E54E\",\"softbank\":\"E537\",\"google\":\"FEB2A\",\"image\":\"2122.png\",\"sheet_x\":0,\"sheet_y\":4,\"short_name\":\"tm\",\"short_names\":[\"tm\"],\"category\":\"Symbols\",\"sort_order\":200,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":false,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-sk\":{\"name\":\"Regional Indicator Symbol Letters SK\",\"unified\":\"1F1F8-1F1F0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1f0.png\",\"sheet_x\":37,\"sheet_y\":35,\"short_name\":\"flag-sk\",\"short_names\":[\"flag-sk\"],\"category\":\"Flags\",\"sort_order\":201,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"eyeglasses\":{\"name\":\"Eyeglasses\",\"unified\":\"1F453\",\"variations\":[],\"docomo\":\"E69A\",\"au\":\"E4FE\",\"softbank\":null,\"google\":\"FE4CE\",\"image\":\"1f453.png\",\"sheet_x\":15,\"sheet_y\":30,\"short_name\":\"eyeglasses\",\"short_names\":[\"eyeglasses\"],\"category\":\"People\",\"sort_order\":201,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"end\":{\"name\":\"End with Leftwards Arrow Above\",\"unified\":\"1F51A\",\"variations\":[],\"docomo\":\"E6B9\",\"au\":null,\"softbank\":null,\"google\":\"FE01A\",\"image\":\"1f51a.png\",\"sheet_x\":23,\"sheet_y\":10,\"short_name\":\"end\",\"short_names\":[\"end\"],\"category\":\"Symbols\",\"sort_order\":201,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"dark_sunglasses\":{\"name\":\"Dark Sunglasses\",\"unified\":\"1F576\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f576.png\",\"sheet_x\":25,\"sheet_y\":4,\"short_name\":\"dark_sunglasses\",\"short_names\":[\"dark_sunglasses\"],\"category\":\"People\",\"sort_order\":202,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-si\":{\"name\":\"Regional Indicator Symbol Letters SI\",\"unified\":\"1F1F8-1F1EE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1ee.png\",\"sheet_x\":37,\"sheet_y\":33,\"short_name\":\"flag-si\",\"short_names\":[\"flag-si\"],\"category\":\"Flags\",\"sort_order\":202,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"back\":{\"name\":\"Back with Leftwards Arrow Above\",\"unified\":\"1F519\",\"variations\":[],\"docomo\":null,\"au\":\"EB06\",\"softbank\":\"E235\",\"google\":\"FEB8E\",\"image\":\"1f519.png\",\"sheet_x\":23,\"sheet_y\":9,\"short_name\":\"back\",\"short_names\":[\"back\"],\"category\":\"Symbols\",\"sort_order\":202,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"ring\":{\"name\":\"Ring\",\"unified\":\"1F48D\",\"variations\":[],\"docomo\":\"E71B\",\"au\":\"E514\",\"softbank\":\"E034\",\"google\":\"FE825\",\"image\":\"1f48d.png\",\"sheet_x\":19,\"sheet_y\":29,\"short_name\":\"ring\",\"short_names\":[\"ring\"],\"category\":\"People\",\"sort_order\":203,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-sb\":{\"name\":\"Regional Indicator Symbol Letters SB\",\"unified\":\"1F1F8-1F1E7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1e7.png\",\"sheet_x\":37,\"sheet_y\":27,\"short_name\":\"flag-sb\",\"short_names\":[\"flag-sb\"],\"category\":\"Flags\",\"sort_order\":203,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"on\":{\"name\":\"On with Exclamation Mark with Left Right Arrow Above\",\"unified\":\"1F51B\",\"variations\":[],\"docomo\":\"E6B8\",\"au\":null,\"softbank\":null,\"google\":\"FE019\",\"image\":\"1f51b.png\",\"sheet_x\":23,\"sheet_y\":11,\"short_name\":\"on\",\"short_names\":[\"on\"],\"category\":\"Symbols\",\"sort_order\":203,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"top\":{\"name\":\"Top with Upwards Arrow Above\",\"unified\":\"1F51D\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":\"E24C\",\"google\":\"FEB42\",\"image\":\"1f51d.png\",\"sheet_x\":23,\"sheet_y\":13,\"short_name\":\"top\",\"short_names\":[\"top\"],\"category\":\"Symbols\",\"sort_order\":204,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-so\":{\"name\":\"Regional Indicator Symbol Letters SO\",\"unified\":\"1F1F8-1F1F4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1f4.png\",\"sheet_x\":37,\"sheet_y\":39,\"short_name\":\"flag-so\",\"short_names\":[\"flag-so\"],\"category\":\"Flags\",\"sort_order\":204,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"closed_umbrella\":{\"name\":\"Closed Umbrella\",\"unified\":\"1F302\",\"variations\":[],\"docomo\":\"E645\",\"au\":\"EAE8\",\"softbank\":\"E43C\",\"google\":\"FE007\",\"image\":\"1f302.png\",\"sheet_x\":5,\"sheet_y\":23,\"short_name\":\"closed_umbrella\",\"short_names\":[\"closed_umbrella\"],\"category\":\"People\",\"sort_order\":204,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-za\":{\"name\":\"Regional Indicator Symbol Letters ZA\",\"unified\":\"1F1FF-1F1E6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ff-1f1e6.png\",\"sheet_x\":39,\"sheet_y\":0,\"short_name\":\"flag-za\",\"short_names\":[\"flag-za\"],\"category\":\"Flags\",\"sort_order\":205,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"soon\":{\"name\":\"Soon with Rightwards Arrow Above\",\"unified\":\"1F51C\",\"variations\":[],\"docomo\":\"E6B7\",\"au\":null,\"softbank\":null,\"google\":\"FE018\",\"image\":\"1f51c.png\",\"sheet_x\":23,\"sheet_y\":12,\"short_name\":\"soon\",\"short_names\":[\"soon\"],\"category\":\"Symbols\",\"sort_order\":205,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-gs\":{\"name\":\"Regional Indicator Symbol Letters GS\",\"unified\":\"1F1EC-1F1F8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ec-1f1f8.png\",\"sheet_x\":35,\"sheet_y\":4,\"short_name\":\"flag-gs\",\"short_names\":[\"flag-gs\"],\"category\":\"Flags\",\"sort_order\":206,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"ballot_box_with_check\":{\"name\":\"Ballot Box with Check\",\"unified\":\"2611\",\"variations\":[\"2611-FE0F\"],\"docomo\":null,\"au\":\"EB02\",\"softbank\":null,\"google\":\"FEB8B\",\"image\":\"2611.png\",\"sheet_x\":1,\"sheet_y\":6,\"short_name\":\"ballot_box_with_check\",\"short_names\":[\"ballot_box_with_check\"],\"category\":\"Symbols\",\"sort_order\":206,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"radio_button\":{\"name\":\"Radio Button\",\"unified\":\"1F518\",\"variations\":[],\"docomo\":null,\"au\":\"EB04\",\"softbank\":null,\"google\":\"FEB8C\",\"image\":\"1f518.png\",\"sheet_x\":23,\"sheet_y\":8,\"short_name\":\"radio_button\",\"short_names\":[\"radio_button\"],\"category\":\"Symbols\",\"sort_order\":207,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-kr\":{\"name\":\"Regional Indicator Symbol Letters KR\",\"unified\":\"1F1F0-1F1F7\",\"variations\":[],\"docomo\":null,\"au\":\"EB12\",\"softbank\":\"E514\",\"google\":\"FE4EE\",\"image\":\"1f1f0-1f1f7.png\",\"sheet_x\":35,\"sheet_y\":37,\"short_name\":\"flag-kr\",\"short_names\":[\"flag-kr\",\"kr\"],\"category\":\"Flags\",\"sort_order\":207,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ss\":{\"name\":\"Regional Indicator Symbol Letters SS\",\"unified\":\"1F1F8-1F1F8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1f8.png\",\"sheet_x\":38,\"sheet_y\":0,\"short_name\":\"flag-ss\",\"short_names\":[\"flag-ss\"],\"category\":\"Flags\",\"sort_order\":208,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"white_circle\":{\"name\":\"Medium White Circle\",\"unified\":\"26AA\",\"variations\":[\"26AA-FE0F\"],\"docomo\":\"E69C\",\"au\":\"E53A\",\"softbank\":\"E219\",\"google\":\"FEB65\",\"image\":\"26aa.png\",\"sheet_x\":2,\"sheet_y\":14,\"short_name\":\"white_circle\",\"short_names\":[\"white_circle\"],\"category\":\"Symbols\",\"sort_order\":208,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-es\":{\"name\":\"Regional Indicator Symbol Letters ES\",\"unified\":\"1F1EA-1F1F8\",\"variations\":[],\"docomo\":null,\"au\":\"E5D5\",\"softbank\":\"E511\",\"google\":\"FE4EB\",\"image\":\"1f1ea-1f1f8.png\",\"sheet_x\":34,\"sheet_y\":22,\"short_name\":\"flag-es\",\"short_names\":[\"flag-es\",\"es\"],\"category\":\"Flags\",\"sort_order\":209,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"black_circle\":{\"name\":\"Medium Black Circle\",\"unified\":\"26AB\",\"variations\":[\"26AB-FE0F\"],\"docomo\":\"E69C\",\"au\":\"E53B\",\"softbank\":\"E219\",\"google\":\"FEB66\",\"image\":\"26ab.png\",\"sheet_x\":2,\"sheet_y\":15,\"short_name\":\"black_circle\",\"short_names\":[\"black_circle\"],\"category\":\"Symbols\",\"sort_order\":209,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-lk\":{\"name\":\"Regional Indicator Symbol Letters LK\",\"unified\":\"1F1F1-1F1F0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f1-1f1f0.png\",\"sheet_x\":36,\"sheet_y\":4,\"short_name\":\"flag-lk\",\"short_names\":[\"flag-lk\"],\"category\":\"Flags\",\"sort_order\":210,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"red_circle\":{\"name\":\"Large Red Circle\",\"unified\":\"1F534\",\"variations\":[],\"docomo\":\"E69C\",\"au\":\"E54A\",\"softbank\":\"E219\",\"google\":\"FEB63\",\"image\":\"1f534.png\",\"sheet_x\":23,\"sheet_y\":36,\"short_name\":\"red_circle\",\"short_names\":[\"red_circle\"],\"category\":\"Symbols\",\"sort_order\":210,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-sd\":{\"name\":\"Regional Indicator Symbol Letters SD\",\"unified\":\"1F1F8-1F1E9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1e9.png\",\"sheet_x\":37,\"sheet_y\":29,\"short_name\":\"flag-sd\",\"short_names\":[\"flag-sd\"],\"category\":\"Flags\",\"sort_order\":211,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"large_blue_circle\":{\"name\":\"Large Blue Circle\",\"unified\":\"1F535\",\"variations\":[],\"docomo\":\"E69C\",\"au\":\"E54B\",\"softbank\":\"E21A\",\"google\":\"FEB64\",\"image\":\"1f535.png\",\"sheet_x\":23,\"sheet_y\":37,\"short_name\":\"large_blue_circle\",\"short_names\":[\"large_blue_circle\"],\"category\":\"Symbols\",\"sort_order\":211,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"small_orange_diamond\":{\"name\":\"Small Orange Diamond\",\"unified\":\"1F538\",\"variations\":[],\"docomo\":null,\"au\":\"E536\",\"softbank\":\"E21B\",\"google\":\"FEB75\",\"image\":\"1f538.png\",\"sheet_x\":23,\"sheet_y\":40,\"short_name\":\"small_orange_diamond\",\"short_names\":[\"small_orange_diamond\"],\"category\":\"Symbols\",\"sort_order\":212,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-sr\":{\"name\":\"Regional Indicator Symbol Letters SR\",\"unified\":\"1F1F8-1F1F7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1f7.png\",\"sheet_x\":37,\"sheet_y\":40,\"short_name\":\"flag-sr\",\"short_names\":[\"flag-sr\"],\"category\":\"Flags\",\"sort_order\":212,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"small_blue_diamond\":{\"name\":\"Small Blue Diamond\",\"unified\":\"1F539\",\"variations\":[],\"docomo\":null,\"au\":\"E537\",\"softbank\":\"E21B\",\"google\":\"FEB76\",\"image\":\"1f539.png\",\"sheet_x\":24,\"sheet_y\":0,\"short_name\":\"small_blue_diamond\",\"short_names\":[\"small_blue_diamond\"],\"category\":\"Symbols\",\"sort_order\":213,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-sz\":{\"name\":\"Regional Indicator Symbol Letters SZ\",\"unified\":\"1F1F8-1F1FF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1ff.png\",\"sheet_x\":38,\"sheet_y\":5,\"short_name\":\"flag-sz\",\"short_names\":[\"flag-sz\"],\"category\":\"Flags\",\"sort_order\":213,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"large_orange_diamond\":{\"name\":\"Large Orange Diamond\",\"unified\":\"1F536\",\"variations\":[],\"docomo\":null,\"au\":\"E546\",\"softbank\":\"E21B\",\"google\":\"FEB73\",\"image\":\"1f536.png\",\"sheet_x\":23,\"sheet_y\":38,\"short_name\":\"large_orange_diamond\",\"short_names\":[\"large_orange_diamond\"],\"category\":\"Symbols\",\"sort_order\":214,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-se\":{\"name\":\"Regional Indicator Symbol Letters SE\",\"unified\":\"1F1F8-1F1EA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1ea.png\",\"sheet_x\":37,\"sheet_y\":30,\"short_name\":\"flag-se\",\"short_names\":[\"flag-se\"],\"category\":\"Flags\",\"sort_order\":214,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ch\":{\"name\":\"Regional Indicator Symbol Letters CH\",\"unified\":\"1F1E8-1F1ED\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1ed.png\",\"sheet_x\":33,\"sheet_y\":35,\"short_name\":\"flag-ch\",\"short_names\":[\"flag-ch\"],\"category\":\"Flags\",\"sort_order\":215,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"large_blue_diamond\":{\"name\":\"Large Blue Diamond\",\"unified\":\"1F537\",\"variations\":[],\"docomo\":null,\"au\":\"E547\",\"softbank\":\"E21B\",\"google\":\"FEB74\",\"image\":\"1f537.png\",\"sheet_x\":23,\"sheet_y\":39,\"short_name\":\"large_blue_diamond\",\"short_names\":[\"large_blue_diamond\"],\"category\":\"Symbols\",\"sort_order\":215,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-sy\":{\"name\":\"Regional Indicator Symbol Letters SY\",\"unified\":\"1F1F8-1F1FE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1fe.png\",\"sheet_x\":38,\"sheet_y\":4,\"short_name\":\"flag-sy\",\"short_names\":[\"flag-sy\"],\"category\":\"Flags\",\"sort_order\":216,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"small_red_triangle\":{\"name\":\"Up-Pointing Red Triangle\",\"unified\":\"1F53A\",\"variations\":[],\"docomo\":null,\"au\":\"E55A\",\"softbank\":null,\"google\":\"FEB78\",\"image\":\"1f53a.png\",\"sheet_x\":24,\"sheet_y\":1,\"short_name\":\"small_red_triangle\",\"short_names\":[\"small_red_triangle\"],\"category\":\"Symbols\",\"sort_order\":216,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-tw\":{\"name\":\"Regional Indicator Symbol Letters TW\",\"unified\":\"1F1F9-1F1FC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f9-1f1fc.png\",\"sheet_x\":38,\"sheet_y\":21,\"short_name\":\"flag-tw\",\"short_names\":[\"flag-tw\"],\"category\":\"Flags\",\"sort_order\":217,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"black_small_square\":{\"name\":\"Black Small Square\",\"unified\":\"25AA\",\"variations\":[\"25AA-FE0F\"],\"docomo\":null,\"au\":\"E532\",\"softbank\":\"E21A\",\"google\":\"FEB6E\",\"image\":\"25aa.png\",\"sheet_x\":0,\"sheet_y\":33,\"short_name\":\"black_small_square\",\"short_names\":[\"black_small_square\"],\"category\":\"Symbols\",\"sort_order\":217,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"white_small_square\":{\"name\":\"White Small Square\",\"unified\":\"25AB\",\"variations\":[\"25AB-FE0F\"],\"docomo\":null,\"au\":\"E531\",\"softbank\":\"E21B\",\"google\":\"FEB6D\",\"image\":\"25ab.png\",\"sheet_x\":0,\"sheet_y\":34,\"short_name\":\"white_small_square\",\"short_names\":[\"white_small_square\"],\"category\":\"Symbols\",\"sort_order\":218,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-tj\":{\"name\":\"Regional Indicator Symbol Letters TJ\",\"unified\":\"1F1F9-1F1EF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f9-1f1ef.png\",\"sheet_x\":38,\"sheet_y\":12,\"short_name\":\"flag-tj\",\"short_names\":[\"flag-tj\"],\"category\":\"Flags\",\"sort_order\":218,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"black_large_square\":{\"name\":\"Black Large Square\",\"unified\":\"2B1B\",\"variations\":[\"2B1B-FE0F\"],\"docomo\":null,\"au\":\"E549\",\"softbank\":\"E21A\",\"google\":\"FEB6C\",\"image\":\"2b1b.png\",\"sheet_x\":4,\"sheet_y\":22,\"short_name\":\"black_large_square\",\"short_names\":[\"black_large_square\"],\"category\":\"Symbols\",\"sort_order\":219,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-tz\":{\"name\":\"Regional Indicator Symbol Letters TZ\",\"unified\":\"1F1F9-1F1FF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f9-1f1ff.png\",\"sheet_x\":38,\"sheet_y\":22,\"short_name\":\"flag-tz\",\"short_names\":[\"flag-tz\"],\"category\":\"Flags\",\"sort_order\":219,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"white_large_square\":{\"name\":\"White Large Square\",\"unified\":\"2B1C\",\"variations\":[\"2B1C-FE0F\"],\"docomo\":null,\"au\":\"E548\",\"softbank\":\"E21B\",\"google\":\"FEB6B\",\"image\":\"2b1c.png\",\"sheet_x\":4,\"sheet_y\":23,\"short_name\":\"white_large_square\",\"short_names\":[\"white_large_square\"],\"category\":\"Symbols\",\"sort_order\":220,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-th\":{\"name\":\"Regional Indicator Symbol Letters TH\",\"unified\":\"1F1F9-1F1ED\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f9-1f1ed.png\",\"sheet_x\":38,\"sheet_y\":11,\"short_name\":\"flag-th\",\"short_names\":[\"flag-th\"],\"category\":\"Flags\",\"sort_order\":220,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-tl\":{\"name\":\"Regional Indicator Symbol Letters TL\",\"unified\":\"1F1F9-1F1F1\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f9-1f1f1.png\",\"sheet_x\":38,\"sheet_y\":14,\"short_name\":\"flag-tl\",\"short_names\":[\"flag-tl\"],\"category\":\"Flags\",\"sort_order\":221,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"small_red_triangle_down\":{\"name\":\"Down-Pointing Red Triangle\",\"unified\":\"1F53B\",\"variations\":[],\"docomo\":null,\"au\":\"E55B\",\"softbank\":null,\"google\":\"FEB79\",\"image\":\"1f53b.png\",\"sheet_x\":24,\"sheet_y\":2,\"short_name\":\"small_red_triangle_down\",\"short_names\":[\"small_red_triangle_down\"],\"category\":\"Symbols\",\"sort_order\":221,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-tg\":{\"name\":\"Regional Indicator Symbol Letters TG\",\"unified\":\"1F1F9-1F1EC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f9-1f1ec.png\",\"sheet_x\":38,\"sheet_y\":10,\"short_name\":\"flag-tg\",\"short_names\":[\"flag-tg\"],\"category\":\"Flags\",\"sort_order\":222,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"black_medium_square\":{\"name\":\"Black Medium Square\",\"unified\":\"25FC\",\"variations\":[\"25FC-FE0F\"],\"docomo\":null,\"au\":\"E539\",\"softbank\":\"E21A\",\"google\":\"FEB72\",\"image\":\"25fc.png\",\"sheet_x\":0,\"sheet_y\":38,\"short_name\":\"black_medium_square\",\"short_names\":[\"black_medium_square\"],\"category\":\"Symbols\",\"sort_order\":222,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-tk\":{\"name\":\"Regional Indicator Symbol Letters TK\",\"unified\":\"1F1F9-1F1F0\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f9-1f1f0.png\",\"sheet_x\":38,\"sheet_y\":13,\"short_name\":\"flag-tk\",\"short_names\":[\"flag-tk\"],\"category\":\"Flags\",\"sort_order\":223,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"white_medium_square\":{\"name\":\"White Medium Square\",\"unified\":\"25FB\",\"variations\":[\"25FB-FE0F\"],\"docomo\":null,\"au\":\"E538\",\"softbank\":\"E21B\",\"google\":\"FEB71\",\"image\":\"25fb.png\",\"sheet_x\":0,\"sheet_y\":37,\"short_name\":\"white_medium_square\",\"short_names\":[\"white_medium_square\"],\"category\":\"Symbols\",\"sort_order\":223,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-to\":{\"name\":\"Regional Indicator Symbol Letters TO\",\"unified\":\"1F1F9-1F1F4\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f9-1f1f4.png\",\"sheet_x\":38,\"sheet_y\":17,\"short_name\":\"flag-to\",\"short_names\":[\"flag-to\"],\"category\":\"Flags\",\"sort_order\":224,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"black_medium_small_square\":{\"name\":\"Black Medium Small Square\",\"unified\":\"25FE\",\"variations\":[\"25FE-FE0F\"],\"docomo\":null,\"au\":\"E535\",\"softbank\":\"E21A\",\"google\":\"FEB70\",\"image\":\"25fe.png\",\"sheet_x\":0,\"sheet_y\":40,\"short_name\":\"black_medium_small_square\",\"short_names\":[\"black_medium_small_square\"],\"category\":\"Symbols\",\"sort_order\":224,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"white_medium_small_square\":{\"name\":\"White Medium Small Square\",\"unified\":\"25FD\",\"variations\":[\"25FD-FE0F\"],\"docomo\":null,\"au\":\"E534\",\"softbank\":\"E21B\",\"google\":\"FEB6F\",\"image\":\"25fd.png\",\"sheet_x\":0,\"sheet_y\":39,\"short_name\":\"white_medium_small_square\",\"short_names\":[\"white_medium_small_square\"],\"category\":\"Symbols\",\"sort_order\":225,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-tt\":{\"name\":\"Regional Indicator Symbol Letters TT\",\"unified\":\"1F1F9-1F1F9\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f9-1f1f9.png\",\"sheet_x\":38,\"sheet_y\":19,\"short_name\":\"flag-tt\",\"short_names\":[\"flag-tt\"],\"category\":\"Flags\",\"sort_order\":225,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"black_square_button\":{\"name\":\"Black Square Button\",\"unified\":\"1F532\",\"variations\":[],\"docomo\":\"E69C\",\"au\":\"E54B\",\"softbank\":\"E21A\",\"google\":\"FEB64\",\"image\":\"1f532.png\",\"sheet_x\":23,\"sheet_y\":34,\"short_name\":\"black_square_button\",\"short_names\":[\"black_square_button\"],\"category\":\"Symbols\",\"sort_order\":226,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-tn\":{\"name\":\"Regional Indicator Symbol Letters TN\",\"unified\":\"1F1F9-1F1F3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f9-1f1f3.png\",\"sheet_x\":38,\"sheet_y\":16,\"short_name\":\"flag-tn\",\"short_names\":[\"flag-tn\"],\"category\":\"Flags\",\"sort_order\":226,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-tr\":{\"name\":\"Regional Indicator Symbol Letters TR\",\"unified\":\"1F1F9-1F1F7\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f9-1f1f7.png\",\"sheet_x\":38,\"sheet_y\":18,\"short_name\":\"flag-tr\",\"short_names\":[\"flag-tr\"],\"category\":\"Flags\",\"sort_order\":227,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"white_square_button\":{\"name\":\"White Square Button\",\"unified\":\"1F533\",\"variations\":[],\"docomo\":\"E69C\",\"au\":\"E54B\",\"softbank\":\"E21B\",\"google\":\"FEB67\",\"image\":\"1f533.png\",\"sheet_x\":23,\"sheet_y\":35,\"short_name\":\"white_square_button\",\"short_names\":[\"white_square_button\"],\"category\":\"Symbols\",\"sort_order\":227,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-tm\":{\"name\":\"Regional Indicator Symbol Letters TM\",\"unified\":\"1F1F9-1F1F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f9-1f1f2.png\",\"sheet_x\":38,\"sheet_y\":15,\"short_name\":\"flag-tm\",\"short_names\":[\"flag-tm\"],\"category\":\"Flags\",\"sort_order\":228,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"speaker\":{\"name\":\"Speaker\",\"unified\":\"1F508\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f508.png\",\"sheet_x\":22,\"sheet_y\":33,\"short_name\":\"speaker\",\"short_names\":[\"speaker\"],\"category\":\"Symbols\",\"sort_order\":228,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-tc\":{\"name\":\"Regional Indicator Symbol Letters TC\",\"unified\":\"1F1F9-1F1E8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f9-1f1e8.png\",\"sheet_x\":38,\"sheet_y\":7,\"short_name\":\"flag-tc\",\"short_names\":[\"flag-tc\"],\"category\":\"Flags\",\"sort_order\":229,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"sound\":{\"name\":\"Speaker with One Sound Wave\",\"unified\":\"1F509\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f509.png\",\"sheet_x\":22,\"sheet_y\":34,\"short_name\":\"sound\",\"short_names\":[\"sound\"],\"category\":\"Symbols\",\"sort_order\":229,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-tv\":{\"name\":\"Regional Indicator Symbol Letters TV\",\"unified\":\"1F1F9-1F1FB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f9-1f1fb.png\",\"sheet_x\":38,\"sheet_y\":20,\"short_name\":\"flag-tv\",\"short_names\":[\"flag-tv\"],\"category\":\"Flags\",\"sort_order\":230,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"loud_sound\":{\"name\":\"Speaker with Three Sound Waves\",\"unified\":\"1F50A\",\"variations\":[],\"docomo\":null,\"au\":\"E511\",\"softbank\":\"E141\",\"google\":\"FE821\",\"image\":\"1f50a.png\",\"sheet_x\":22,\"sheet_y\":35,\"short_name\":\"loud_sound\",\"short_names\":[\"loud_sound\"],\"category\":\"Symbols\",\"sort_order\":230,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"mute\":{\"name\":\"Speaker with Cancellation Stroke\",\"unified\":\"1F507\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f507.png\",\"sheet_x\":22,\"sheet_y\":32,\"short_name\":\"mute\",\"short_names\":[\"mute\"],\"category\":\"Symbols\",\"sort_order\":231,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ug\":{\"name\":\"Regional Indicator Symbol Letters UG\",\"unified\":\"1F1FA-1F1EC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1fa-1f1ec.png\",\"sheet_x\":38,\"sheet_y\":24,\"short_name\":\"flag-ug\",\"short_names\":[\"flag-ug\"],\"category\":\"Flags\",\"sort_order\":231,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ua\":{\"name\":\"Regional Indicator Symbol Letters UA\",\"unified\":\"1F1FA-1F1E6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1fa-1f1e6.png\",\"sheet_x\":38,\"sheet_y\":23,\"short_name\":\"flag-ua\",\"short_names\":[\"flag-ua\"],\"category\":\"Flags\",\"sort_order\":232,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"mega\":{\"name\":\"Cheering Megaphone\",\"unified\":\"1F4E3\",\"variations\":[],\"docomo\":null,\"au\":\"E511\",\"softbank\":\"E317\",\"google\":\"FE530\",\"image\":\"1f4e3.png\",\"sheet_x\":21,\"sheet_y\":38,\"short_name\":\"mega\",\"short_names\":[\"mega\"],\"category\":\"Symbols\",\"sort_order\":232,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ae\":{\"name\":\"Regional Indicator Symbol Letters AE\",\"unified\":\"1F1E6-1F1EA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e6-1f1ea.png\",\"sheet_x\":32,\"sheet_y\":35,\"short_name\":\"flag-ae\",\"short_names\":[\"flag-ae\"],\"category\":\"Flags\",\"sort_order\":233,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"loudspeaker\":{\"name\":\"Public Address Loudspeaker\",\"unified\":\"1F4E2\",\"variations\":[],\"docomo\":null,\"au\":\"E511\",\"softbank\":\"E142\",\"google\":\"FE52F\",\"image\":\"1f4e2.png\",\"sheet_x\":21,\"sheet_y\":37,\"short_name\":\"loudspeaker\",\"short_names\":[\"loudspeaker\"],\"category\":\"Symbols\",\"sort_order\":233,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"bell\":{\"name\":\"Bell\",\"unified\":\"1F514\",\"variations\":[],\"docomo\":\"E713\",\"au\":\"E512\",\"softbank\":\"E325\",\"google\":\"FE4F2\",\"image\":\"1f514.png\",\"sheet_x\":23,\"sheet_y\":4,\"short_name\":\"bell\",\"short_names\":[\"bell\"],\"category\":\"Symbols\",\"sort_order\":234,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-gb\":{\"name\":\"Regional Indicator Symbol Letters GB\",\"unified\":\"1F1EC-1F1E7\",\"variations\":[],\"docomo\":null,\"au\":\"EB10\",\"softbank\":\"E510\",\"google\":\"FE4EA\",\"image\":\"1f1ec-1f1e7.png\",\"sheet_x\":34,\"sheet_y\":32,\"short_name\":\"flag-gb\",\"short_names\":[\"flag-gb\",\"gb\",\"uk\"],\"category\":\"Flags\",\"sort_order\":234,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-us\":{\"name\":\"Regional Indicator Symbol Letters US\",\"unified\":\"1F1FA-1F1F8\",\"variations\":[],\"docomo\":null,\"au\":\"E573\",\"softbank\":\"E50C\",\"google\":\"FE4E6\",\"image\":\"1f1fa-1f1f8.png\",\"sheet_x\":38,\"sheet_y\":26,\"short_name\":\"flag-us\",\"short_names\":[\"flag-us\",\"us\"],\"category\":\"Flags\",\"sort_order\":235,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"no_bell\":{\"name\":\"Bell with Cancellation Stroke\",\"unified\":\"1F515\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f515.png\",\"sheet_x\":23,\"sheet_y\":5,\"short_name\":\"no_bell\",\"short_names\":[\"no_bell\"],\"category\":\"Symbols\",\"sort_order\":235,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-vi\":{\"name\":\"Regional Indicator Symbol Letters VI\",\"unified\":\"1F1FB-1F1EE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1fb-1f1ee.png\",\"sheet_x\":38,\"sheet_y\":33,\"short_name\":\"flag-vi\",\"short_names\":[\"flag-vi\"],\"category\":\"Flags\",\"sort_order\":236,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"black_joker\":{\"name\":\"Playing Card Black Joker\",\"unified\":\"1F0CF\",\"variations\":[],\"docomo\":null,\"au\":\"EB6F\",\"softbank\":null,\"google\":\"FE812\",\"image\":\"1f0cf.png\",\"sheet_x\":4,\"sheet_y\":31,\"short_name\":\"black_joker\",\"short_names\":[\"black_joker\"],\"category\":\"Symbols\",\"sort_order\":236,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"mahjong\":{\"name\":\"Mahjong Tile Red Dragon\",\"unified\":\"1F004\",\"variations\":[\"1F004-FE0F\"],\"docomo\":null,\"au\":\"E5D1\",\"softbank\":\"E12D\",\"google\":\"FE80B\",\"image\":\"1f004.png\",\"sheet_x\":4,\"sheet_y\":30,\"short_name\":\"mahjong\",\"short_names\":[\"mahjong\"],\"category\":\"Symbols\",\"sort_order\":237,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-uy\":{\"name\":\"Regional Indicator Symbol Letters UY\",\"unified\":\"1F1FA-1F1FE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1fa-1f1fe.png\",\"sheet_x\":38,\"sheet_y\":27,\"short_name\":\"flag-uy\",\"short_names\":[\"flag-uy\"],\"category\":\"Flags\",\"sort_order\":237,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"spades\":{\"name\":\"Black Spade Suit\",\"unified\":\"2660\",\"variations\":[\"2660-FE0F\"],\"docomo\":\"E68E\",\"au\":\"E5A1\",\"softbank\":\"E20E\",\"google\":\"FEB1B\",\"image\":\"2660.png\",\"sheet_x\":1,\"sheet_y\":38,\"short_name\":\"spades\",\"short_names\":[\"spades\"],\"category\":\"Symbols\",\"sort_order\":238,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-uz\":{\"name\":\"Regional Indicator Symbol Letters UZ\",\"unified\":\"1F1FA-1F1FF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1fa-1f1ff.png\",\"sheet_x\":38,\"sheet_y\":28,\"short_name\":\"flag-uz\",\"short_names\":[\"flag-uz\"],\"category\":\"Flags\",\"sort_order\":238,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"clubs\":{\"name\":\"Black Club Suit\",\"unified\":\"2663\",\"variations\":[\"2663-FE0F\"],\"docomo\":\"E690\",\"au\":\"E5A3\",\"softbank\":\"E20F\",\"google\":\"FEB1D\",\"image\":\"2663.png\",\"sheet_x\":1,\"sheet_y\":39,\"short_name\":\"clubs\",\"short_names\":[\"clubs\"],\"category\":\"Symbols\",\"sort_order\":239,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-vu\":{\"name\":\"Regional Indicator Symbol Letters VU\",\"unified\":\"1F1FB-1F1FA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1fb-1f1fa.png\",\"sheet_x\":38,\"sheet_y\":35,\"short_name\":\"flag-vu\",\"short_names\":[\"flag-vu\"],\"category\":\"Flags\",\"sort_order\":239,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"hearts\":{\"name\":\"Black Heart Suit\",\"unified\":\"2665\",\"variations\":[\"2665-FE0F\"],\"docomo\":\"E68D\",\"au\":\"EAA5\",\"softbank\":\"E20C\",\"google\":\"FEB1A\",\"image\":\"2665.png\",\"sheet_x\":1,\"sheet_y\":40,\"short_name\":\"hearts\",\"short_names\":[\"hearts\"],\"category\":\"Symbols\",\"sort_order\":240,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-va\":{\"name\":\"Regional Indicator Symbol Letters VA\",\"unified\":\"1F1FB-1F1E6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1fb-1f1e6.png\",\"sheet_x\":38,\"sheet_y\":29,\"short_name\":\"flag-va\",\"short_names\":[\"flag-va\"],\"category\":\"Flags\",\"sort_order\":240,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"diamonds\":{\"name\":\"Black Diamond Suit\",\"unified\":\"2666\",\"variations\":[\"2666-FE0F\"],\"docomo\":\"E68F\",\"au\":\"E5A2\",\"softbank\":\"E20D\",\"google\":\"FEB1C\",\"image\":\"2666.png\",\"sheet_x\":2,\"sheet_y\":0,\"short_name\":\"diamonds\",\"short_names\":[\"diamonds\"],\"category\":\"Symbols\",\"sort_order\":241,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ve\":{\"name\":\"Regional Indicator Symbol Letters VE\",\"unified\":\"1F1FB-1F1EA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1fb-1f1ea.png\",\"sheet_x\":38,\"sheet_y\":31,\"short_name\":\"flag-ve\",\"short_names\":[\"flag-ve\"],\"category\":\"Flags\",\"sort_order\":241,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-vn\":{\"name\":\"Regional Indicator Symbol Letters VN\",\"unified\":\"1F1FB-1F1F3\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1fb-1f1f3.png\",\"sheet_x\":38,\"sheet_y\":34,\"short_name\":\"flag-vn\",\"short_names\":[\"flag-vn\"],\"category\":\"Flags\",\"sort_order\":242,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flower_playing_cards\":{\"name\":\"Flower Playing Cards\",\"unified\":\"1F3B4\",\"variations\":[],\"docomo\":null,\"au\":\"EB6E\",\"softbank\":null,\"google\":\"FE811\",\"image\":\"1f3b4.png\",\"sheet_x\":9,\"sheet_y\":35,\"short_name\":\"flower_playing_cards\",\"short_names\":[\"flower_playing_cards\"],\"category\":\"Symbols\",\"sort_order\":242,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"thought_balloon\":{\"name\":\"Thought Balloon\",\"unified\":\"1F4AD\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f4ad.png\",\"sheet_x\":20,\"sheet_y\":25,\"short_name\":\"thought_balloon\",\"short_names\":[\"thought_balloon\"],\"category\":\"Symbols\",\"sort_order\":243,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-wf\":{\"name\":\"Regional Indicator Symbol Letters WF\",\"unified\":\"1F1FC-1F1EB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1fc-1f1eb.png\",\"sheet_x\":38,\"sheet_y\":36,\"short_name\":\"flag-wf\",\"short_names\":[\"flag-wf\"],\"category\":\"Flags\",\"sort_order\":243,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-eh\":{\"name\":\"Regional Indicator Symbol Letters EH\",\"unified\":\"1F1EA-1F1ED\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ea-1f1ed.png\",\"sheet_x\":34,\"sheet_y\":20,\"short_name\":\"flag-eh\",\"short_names\":[\"flag-eh\"],\"category\":\"Flags\",\"sort_order\":244,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"right_anger_bubble\":{\"name\":\"Right Anger Bubble\",\"unified\":\"1F5EF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5ef.png\",\"sheet_x\":26,\"sheet_y\":7,\"short_name\":\"right_anger_bubble\",\"short_names\":[\"right_anger_bubble\"],\"category\":\"Symbols\",\"sort_order\":244,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"speech_balloon\":{\"name\":\"Speech Balloon\",\"unified\":\"1F4AC\",\"variations\":[],\"docomo\":null,\"au\":\"E4FD\",\"softbank\":null,\"google\":\"FE532\",\"image\":\"1f4ac.png\",\"sheet_x\":20,\"sheet_y\":24,\"short_name\":\"speech_balloon\",\"short_names\":[\"speech_balloon\"],\"category\":\"Symbols\",\"sort_order\":245,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ye\":{\"name\":\"Regional Indicator Symbol Letters YE\",\"unified\":\"1F1FE-1F1EA\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1fe-1f1ea.png\",\"sheet_x\":38,\"sheet_y\":39,\"short_name\":\"flag-ye\",\"short_names\":[\"flag-ye\"],\"category\":\"Flags\",\"sort_order\":245,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"left_speech_bubble\":{\"name\":\"Left Speech Bubble\",\"unified\":\"1F5E8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f5e8.png\",\"sheet_x\":26,\"sheet_y\":6,\"short_name\":\"left_speech_bubble\",\"short_names\":[\"left_speech_bubble\"],\"category\":\"Symbols\",\"sort_order\":246,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":false,\"emoticons\":[]},\"flag-zm\":{\"name\":\"Regional Indicator Symbol Letters ZM\",\"unified\":\"1F1FF-1F1F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ff-1f1f2.png\",\"sheet_x\":39,\"sheet_y\":1,\"short_name\":\"flag-zm\",\"short_names\":[\"flag-zm\"],\"category\":\"Flags\",\"sort_order\":246,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"clock1\":{\"name\":\"Clock Face One Oclock\",\"unified\":\"1F550\",\"variations\":[],\"docomo\":\"E6BA\",\"au\":\"E594\",\"softbank\":\"E024\",\"google\":\"FE01E\",\"image\":\"1f550.png\",\"sheet_x\":24,\"sheet_y\":11,\"short_name\":\"clock1\",\"short_names\":[\"clock1\"],\"category\":\"Symbols\",\"sort_order\":247,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-zw\":{\"name\":\"Regional Indicator Symbol Letters ZW\",\"unified\":\"1F1FF-1F1FC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ff-1f1fc.png\",\"sheet_x\":39,\"sheet_y\":2,\"short_name\":\"flag-zw\",\"short_names\":[\"flag-zw\"],\"category\":\"Flags\",\"sort_order\":247,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ac\":{\"name\":\"Regional Indicator Symbol Letters AC\",\"unified\":\"1F1E6-1F1E8\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e6-1f1e8.png\",\"sheet_x\":32,\"sheet_y\":33,\"short_name\":\"flag-ac\",\"short_names\":[\"flag-ac\"],\"category\":\"Flags\",\"sort_order\":248,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"clock2\":{\"name\":\"Clock Face Two Oclock\",\"unified\":\"1F551\",\"variations\":[],\"docomo\":\"E6BA\",\"au\":\"E594\",\"softbank\":\"E025\",\"google\":\"FE01F\",\"image\":\"1f551.png\",\"sheet_x\":24,\"sheet_y\":12,\"short_name\":\"clock2\",\"short_names\":[\"clock2\"],\"category\":\"Symbols\",\"sort_order\":248,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-bv\":{\"name\":\"Regional Indicator Symbol Letters BV\",\"unified\":\"1F1E7-1F1FB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e7-1f1fb.png\",\"sheet_x\":33,\"sheet_y\":26,\"short_name\":\"flag-bv\",\"short_names\":[\"flag-bv\"],\"category\":\"Flags\",\"sort_order\":249,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"clock3\":{\"name\":\"Clock Face Three Oclock\",\"unified\":\"1F552\",\"variations\":[],\"docomo\":\"E6BA\",\"au\":\"E594\",\"softbank\":\"E026\",\"google\":\"FE020\",\"image\":\"1f552.png\",\"sheet_x\":24,\"sheet_y\":13,\"short_name\":\"clock3\",\"short_names\":[\"clock3\"],\"category\":\"Symbols\",\"sort_order\":249,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-cp\":{\"name\":\"Regional Indicator Symbol Letters CP\",\"unified\":\"1F1E8-1F1F5\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e8-1f1f5.png\",\"sheet_x\":34,\"sheet_y\":1,\"short_name\":\"flag-cp\",\"short_names\":[\"flag-cp\"],\"category\":\"Flags\",\"sort_order\":250,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"clock4\":{\"name\":\"Clock Face Four Oclock\",\"unified\":\"1F553\",\"variations\":[],\"docomo\":\"E6BA\",\"au\":\"E594\",\"softbank\":\"E027\",\"google\":\"FE021\",\"image\":\"1f553.png\",\"sheet_x\":24,\"sheet_y\":14,\"short_name\":\"clock4\",\"short_names\":[\"clock4\"],\"category\":\"Symbols\",\"sort_order\":250,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"clock5\":{\"name\":\"Clock Face Five Oclock\",\"unified\":\"1F554\",\"variations\":[],\"docomo\":\"E6BA\",\"au\":\"E594\",\"softbank\":\"E028\",\"google\":\"FE022\",\"image\":\"1f554.png\",\"sheet_x\":24,\"sheet_y\":15,\"short_name\":\"clock5\",\"short_names\":[\"clock5\"],\"category\":\"Symbols\",\"sort_order\":251,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-dg\":{\"name\":\"Regional Indicator Symbol Letters DG\",\"unified\":\"1F1E9-1F1EC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1e9-1f1ec.png\",\"sheet_x\":34,\"sheet_y\":10,\"short_name\":\"flag-dg\",\"short_names\":[\"flag-dg\"],\"category\":\"Flags\",\"sort_order\":251,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"clock6\":{\"name\":\"Clock Face Six Oclock\",\"unified\":\"1F555\",\"variations\":[],\"docomo\":\"E6BA\",\"au\":\"E594\",\"softbank\":\"E029\",\"google\":\"FE023\",\"image\":\"1f555.png\",\"sheet_x\":24,\"sheet_y\":16,\"short_name\":\"clock6\",\"short_names\":[\"clock6\"],\"category\":\"Symbols\",\"sort_order\":252,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ea\":{\"name\":\"Regional Indicator Symbol Letters EA\",\"unified\":\"1F1EA-1F1E6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ea-1f1e6.png\",\"sheet_x\":34,\"sheet_y\":16,\"short_name\":\"flag-ea\",\"short_names\":[\"flag-ea\"],\"category\":\"Flags\",\"sort_order\":252,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-hm\":{\"name\":\"Regional Indicator Symbol Letters HM\",\"unified\":\"1F1ED-1F1F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1ed-1f1f2.png\",\"sheet_x\":35,\"sheet_y\":10,\"short_name\":\"flag-hm\",\"short_names\":[\"flag-hm\"],\"category\":\"Flags\",\"sort_order\":253,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"clock7\":{\"name\":\"Clock Face Seven Oclock\",\"unified\":\"1F556\",\"variations\":[],\"docomo\":\"E6BA\",\"au\":\"E594\",\"softbank\":\"E02A\",\"google\":\"FE024\",\"image\":\"1f556.png\",\"sheet_x\":24,\"sheet_y\":17,\"short_name\":\"clock7\",\"short_names\":[\"clock7\"],\"category\":\"Symbols\",\"sort_order\":253,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-mf\":{\"name\":\"Regional Indicator Symbol Letters MF\",\"unified\":\"1F1F2-1F1EB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f2-1f1eb.png\",\"sheet_x\":36,\"sheet_y\":15,\"short_name\":\"flag-mf\",\"short_names\":[\"flag-mf\"],\"category\":\"Flags\",\"sort_order\":254,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"clock8\":{\"name\":\"Clock Face Eight Oclock\",\"unified\":\"1F557\",\"variations\":[],\"docomo\":\"E6BA\",\"au\":\"E594\",\"softbank\":\"E02B\",\"google\":\"FE025\",\"image\":\"1f557.png\",\"sheet_x\":24,\"sheet_y\":18,\"short_name\":\"clock8\",\"short_names\":[\"clock8\"],\"category\":\"Symbols\",\"sort_order\":254,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"clock9\":{\"name\":\"Clock Face Nine Oclock\",\"unified\":\"1F558\",\"variations\":[],\"docomo\":\"E6BA\",\"au\":\"E594\",\"softbank\":\"E02C\",\"google\":\"FE026\",\"image\":\"1f558.png\",\"sheet_x\":24,\"sheet_y\":19,\"short_name\":\"clock9\",\"short_names\":[\"clock9\"],\"category\":\"Symbols\",\"sort_order\":255,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-sj\":{\"name\":\"Regional Indicator Symbol Letters SJ\",\"unified\":\"1F1F8-1F1EF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f8-1f1ef.png\",\"sheet_x\":37,\"sheet_y\":34,\"short_name\":\"flag-sj\",\"short_names\":[\"flag-sj\"],\"category\":\"Flags\",\"sort_order\":255,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-ta\":{\"name\":\"Regional Indicator Symbol Letters TA\",\"unified\":\"1F1F9-1F1E6\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1f9-1f1e6.png\",\"sheet_x\":38,\"sheet_y\":6,\"short_name\":\"flag-ta\",\"short_names\":[\"flag-ta\"],\"category\":\"Flags\",\"sort_order\":256,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"clock10\":{\"name\":\"Clock Face Ten Oclock\",\"unified\":\"1F559\",\"variations\":[],\"docomo\":\"E6BA\",\"au\":\"E594\",\"softbank\":\"E02D\",\"google\":\"FE027\",\"image\":\"1f559.png\",\"sheet_x\":24,\"sheet_y\":20,\"short_name\":\"clock10\",\"short_names\":[\"clock10\"],\"category\":\"Symbols\",\"sort_order\":256,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"flag-um\":{\"name\":\"Regional Indicator Symbol Letters UM\",\"unified\":\"1F1FA-1F1F2\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f1fa-1f1f2.png\",\"sheet_x\":38,\"sheet_y\":25,\"short_name\":\"flag-um\",\"short_names\":[\"flag-um\"],\"category\":\"Flags\",\"sort_order\":257,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"clock11\":{\"name\":\"Clock Face Eleven Oclock\",\"unified\":\"1F55A\",\"variations\":[],\"docomo\":\"E6BA\",\"au\":\"E594\",\"softbank\":\"E02E\",\"google\":\"FE028\",\"image\":\"1f55a.png\",\"sheet_x\":24,\"sheet_y\":21,\"short_name\":\"clock11\",\"short_names\":[\"clock11\"],\"category\":\"Symbols\",\"sort_order\":257,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"clock12\":{\"name\":\"Clock Face Twelve Oclock\",\"unified\":\"1F55B\",\"variations\":[],\"docomo\":\"E6BA\",\"au\":\"E594\",\"softbank\":\"E02F\",\"google\":\"FE029\",\"image\":\"1f55b.png\",\"sheet_x\":24,\"sheet_y\":22,\"short_name\":\"clock12\",\"short_names\":[\"clock12\"],\"category\":\"Symbols\",\"sort_order\":258,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"clock130\":{\"name\":\"Clock Face One-Thirty\",\"unified\":\"1F55C\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f55c.png\",\"sheet_x\":24,\"sheet_y\":23,\"short_name\":\"clock130\",\"short_names\":[\"clock130\"],\"category\":\"Symbols\",\"sort_order\":259,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"clock230\":{\"name\":\"Clock Face Two-Thirty\",\"unified\":\"1F55D\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f55d.png\",\"sheet_x\":24,\"sheet_y\":24,\"short_name\":\"clock230\",\"short_names\":[\"clock230\"],\"category\":\"Symbols\",\"sort_order\":260,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"clock330\":{\"name\":\"Clock Face Three-Thirty\",\"unified\":\"1F55E\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f55e.png\",\"sheet_x\":24,\"sheet_y\":25,\"short_name\":\"clock330\",\"short_names\":[\"clock330\"],\"category\":\"Symbols\",\"sort_order\":261,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"clock430\":{\"name\":\"Clock Face Four-Thirty\",\"unified\":\"1F55F\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f55f.png\",\"sheet_x\":24,\"sheet_y\":26,\"short_name\":\"clock430\",\"short_names\":[\"clock430\"],\"category\":\"Symbols\",\"sort_order\":262,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"clock530\":{\"name\":\"Clock Face Five-Thirty\",\"unified\":\"1F560\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f560.png\",\"sheet_x\":24,\"sheet_y\":27,\"short_name\":\"clock530\",\"short_names\":[\"clock530\"],\"category\":\"Symbols\",\"sort_order\":263,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"clock630\":{\"name\":\"Clock Face Six-Thirty\",\"unified\":\"1F561\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f561.png\",\"sheet_x\":24,\"sheet_y\":28,\"short_name\":\"clock630\",\"short_names\":[\"clock630\"],\"category\":\"Symbols\",\"sort_order\":264,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"clock730\":{\"name\":\"Clock Face Seven-Thirty\",\"unified\":\"1F562\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f562.png\",\"sheet_x\":24,\"sheet_y\":29,\"short_name\":\"clock730\",\"short_names\":[\"clock730\"],\"category\":\"Symbols\",\"sort_order\":265,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"clock830\":{\"name\":\"Clock Face Eight-Thirty\",\"unified\":\"1F563\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f563.png\",\"sheet_x\":24,\"sheet_y\":30,\"short_name\":\"clock830\",\"short_names\":[\"clock830\"],\"category\":\"Symbols\",\"sort_order\":266,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"clock930\":{\"name\":\"Clock Face Nine-Thirty\",\"unified\":\"1F564\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f564.png\",\"sheet_x\":24,\"sheet_y\":31,\"short_name\":\"clock930\",\"short_names\":[\"clock930\"],\"category\":\"Symbols\",\"sort_order\":267,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"clock1030\":{\"name\":\"Clock Face Ten-Thirty\",\"unified\":\"1F565\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f565.png\",\"sheet_x\":24,\"sheet_y\":32,\"short_name\":\"clock1030\",\"short_names\":[\"clock1030\"],\"category\":\"Symbols\",\"sort_order\":268,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"clock1130\":{\"name\":\"Clock Face Eleven-Thirty\",\"unified\":\"1F566\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f566.png\",\"sheet_x\":24,\"sheet_y\":33,\"short_name\":\"clock1130\",\"short_names\":[\"clock1130\"],\"category\":\"Symbols\",\"sort_order\":269,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"clock1230\":{\"name\":\"Clock Face Twelve-Thirty\",\"unified\":\"1F567\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f567.png\",\"sheet_x\":24,\"sheet_y\":34,\"short_name\":\"clock1230\",\"short_names\":[\"clock1230\"],\"category\":\"Symbols\",\"sort_order\":270,\"has_img_apple\":true,\"has_img_google\":true,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]}},\"skins\":{\"skin-tone-2\":{\"name\":\"Emoji Modifier Fitzpatrick Type-1-2\",\"unified\":\"1F3FB\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3fb.png\",\"sheet_x\":12,\"sheet_y\":0,\"short_name\":\"skin-tone-2\",\"short_names\":[\"skin-tone-2\"],\"category\":\"Skin Tones\",\"sort_order\":1,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"skin-tone-3\":{\"name\":\"Emoji Modifier Fitzpatrick Type-3\",\"unified\":\"1F3FC\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3fc.png\",\"sheet_x\":12,\"sheet_y\":1,\"short_name\":\"skin-tone-3\",\"short_names\":[\"skin-tone-3\"],\"category\":\"Skin Tones\",\"sort_order\":2,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"skin-tone-4\":{\"name\":\"Emoji Modifier Fitzpatrick Type-4\",\"unified\":\"1F3FD\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3fd.png\",\"sheet_x\":12,\"sheet_y\":2,\"short_name\":\"skin-tone-4\",\"short_names\":[\"skin-tone-4\"],\"category\":\"Skin Tones\",\"sort_order\":3,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"skin-tone-5\":{\"name\":\"Emoji Modifier Fitzpatrick Type-5\",\"unified\":\"1F3FE\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3fe.png\",\"sheet_x\":12,\"sheet_y\":3,\"short_name\":\"skin-tone-5\",\"short_names\":[\"skin-tone-5\"],\"category\":\"Skin Tones\",\"sort_order\":4,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]},\"skin-tone-6\":{\"name\":\"Emoji Modifier Fitzpatrick Type-6\",\"unified\":\"1F3FF\",\"variations\":[],\"docomo\":null,\"au\":null,\"softbank\":null,\"google\":null,\"image\":\"1f3ff.png\",\"sheet_x\":12,\"sheet_y\":4,\"short_name\":\"skin-tone-6\",\"short_names\":[\"skin-tone-6\"],\"category\":\"Skin Tones\",\"sort_order\":5,\"has_img_apple\":true,\"has_img_google\":false,\"has_img_twitter\":true,\"has_img_emojione\":true,\"emoticons\":[]}}}\n\n\n/** WEBPACK FOOTER **\n ** ./data/index.js\n **/","import {store} from '.'\n\nlet frequently = store.get('frequently') || {}\n\nfunction add(emoji) {\n var { id } = emoji\n\n frequently[id] || (frequently[id] = 0)\n frequently[id] += 1\n\n store.set('last', id)\n store.set('frequently', frequently)\n}\n\nfunction get(quantity) {\n var sorted = Object.keys(frequently).sort((a, b) => frequently[a] - frequently[b]).reverse(),\n sliced = sorted.slice(0, quantity),\n last = store.get('last')\n\n if (last && sliced.indexOf(last) == -1) {\n sliced.pop()\n sliced.push(last)\n }\n\n return sliced\n}\n\nexport default { add, get }\n\n\n\n/** WEBPACK FOOTER **\n ** ./src/utils/frequently.js\n **/","import React from 'react'\nimport data from '../../data'\n\nconst SHEET_COLUMNS = 41\nconst SKINS = [\n '1F3FA', '1F3FB', '1F3FC',\n '1F3FD', '1F3FE', '1F3FF',\n]\n\nexport default class Emoji extends React.Component {\n constructor(props) {\n super(props)\n\n var emojiData = this.getEmojiData()\n this.hasSkinVariations = !!emojiData.skin_variations\n }\n\n shouldComponentUpdate(nextProps) {\n return (\n this.hasSkinVariations && nextProps.skin != this.props.skin ||\n nextProps.size != this.props.size ||\n nextProps.sheetURL != this.props.sheetURL\n )\n }\n\n getEmojiData() {\n var { emoji, skin, sheetURL } = this.props,\n emojiData = emoji\n\n if (typeof emoji == 'string') {\n emojiData = data.emojis[emoji]\n }\n\n if (this.hasSkinVariations && skin > 1) {\n emojiData = JSON.parse(JSON.stringify(data.emojis[emoji]))\n\n var skinKey = SKINS[skin - 1],\n variationKey = `${emojiData.unified}-${skinKey}`,\n variationData = emojiData.skin_variations[variationKey],\n kitMatches = sheetURL.match(/(apple|google|twitter|emojione)/),\n kit = kitMatches[0]\n\n if (variationData[`has_img_${kit}`]) {\n emojiData.skin_tone = skin\n\n for (let k in variationData) {\n let v = variationData[k]\n emojiData[k] = v\n }\n }\n }\n\n return emojiData\n }\n\n getPosition(emojiData) {\n var { sheet_x, sheet_y } = emojiData,\n multiply = 100 / (SHEET_COLUMNS - 1)\n\n return `${multiply * sheet_x}% ${multiply * sheet_y}%`\n }\n\n getNative(emojiData) {\n var { unified } = emojiData,\n unicodes = unified.split('-'),\n codePoints = unicodes.map((u) => `0x${u}`)\n\n return String.fromCodePoint(...codePoints)\n }\n\n handleClick(emojiData) {\n var { onClick } = this.props,\n { name, short_names, skin_tone, emoticons, unified } = emojiData,\n id = short_names[0],\n colons = `:${id}:`\n\n if (skin_tone) {\n colons += `:skin-tone-${skin_tone}:`\n }\n\n onClick({\n id,\n name,\n colons,\n emoticons,\n skin: skin_tone || 1,\n native: this.getNative(emojiData),\n })\n }\n\n render() {\n var { sheetURL, size, onOver, onLeave } = this.props,\n emojiData = this.getEmojiData()\n\n return \n
\n {Array(6).fill().map((_, i) => {\n var skinTone = i + 1,\n selected = skinTone == skin\n\n return \n this.handleClick(skinTone)}\n className={`emoji-picker-skin emoji-picker-skin-tone-${skinTone}`}>\n \n \n })}\n
\n
\n }\n}\n\nSkins.propTypes = {\n onChange: React.PropTypes.func,\n skin: React.PropTypes.number.isRequired,\n}\n\nSkins.defaultProps = {\n onChange: (() => {}),\n}\n\n\n\n/** WEBPACK FOOTER **\n ** ./src/components/skins.js\n **/"],"sourceRoot":""}
\ No newline at end of file
diff --git a/dist/emoji-picker.min.js b/dist/emoji-picker.min.js
index 79d551e..11ec605 100644
--- a/dist/emoji-picker.min.js
+++ b/dist/emoji-picker.min.js
@@ -64,5 +64,4 @@ short_names:["information_desk_person"],category:"People",sort_order:147,has_img
name:"Waving Black Flag",unified:"1F3F4",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f3f4.png",sheet_x:11,sheet_y:35,short_name:"waving_black_flag",short_names:["waving_black_flag"],category:"Objects",sort_order:165,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},arrow_right:{name:"Black Rightwards Arrow",unified:"27A1",variations:["27A1-FE0F"],docomo:null,au:"E552",softbank:"E234",google:"FEAFA",image:"27a1.png",sheet_x:4,sheet_y:14,short_name:"arrow_right",short_names:["arrow_right"],category:"Symbols",sort_order:165,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-no":{name:"Regional Indicator Symbol Letters NO",unified:"1F1F3-1F1F4",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f3-1f1f4.png",sheet_x:37,sheet_y:0,short_name:"flag-no",short_names:["flag-no"],category:"Flags",sort_order:166,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"woman-woman-boy":{name:"Woman Woman Boy",unified:"1F469-200D-1F469-200D-1F466",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f469-200d-1f469-200d-1f466.png",sheet_x:39,sheet_y:14,short_name:"woman-woman-boy",short_names:["woman-woman-boy"],category:"People",sort_order:166,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},arrow_left:{name:"Leftwards Black Arrow",unified:"2B05",variations:["2B05-FE0F"],docomo:null,au:"E553",softbank:"E235",google:"FEAFB",image:"2b05.png",sheet_x:4,sheet_y:19,short_name:"arrow_left",short_names:["arrow_left"],category:"Symbols",sort_order:166,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},closed_lock_with_key:{name:"Closed Lock with Key",unified:"1F510",variations:[],docomo:"E6D9",au:"EAFC",softbank:"E144",google:"FEB8A",image:"1f510.png",sheet_x:23,sheet_y:0,short_name:"closed_lock_with_key",short_names:["closed_lock_with_key"],category:"Objects",sort_order:166,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-om":{name:"Regional Indicator Symbol Letters OM",unified:"1F1F4-1F1F2",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f4-1f1f2.png",sheet_x:37,sheet_y:5,short_name:"flag-om",short_names:["flag-om"],category:"Flags",sort_order:167,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},lock:{name:"Lock",unified:"1F512",variations:[],docomo:"E6D9",au:"E51C",softbank:"E144",google:"FEB86",image:"1f512.png",sheet_x:23,sheet_y:2,short_name:"lock",short_names:["lock"],category:"Objects",sort_order:167,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},arrow_up:{name:"Upwards Black Arrow",unified:"2B06",variations:["2B06-FE0F"],docomo:null,au:"E53F",softbank:"E232",google:"FEAF8",image:"2b06.png",sheet_x:4,sheet_y:20,short_name:"arrow_up",short_names:["arrow_up"],category:"Symbols",sort_order:167,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"woman-woman-girl":{name:"Woman Woman Girl",unified:"1F469-200D-1F469-200D-1F467",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f469-200d-1f469-200d-1f467.png",sheet_x:39,sheet_y:16,short_name:"woman-woman-girl",short_names:["woman-woman-girl"],category:"People",sort_order:167,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},arrow_down:{name:"Downwards Black Arrow",unified:"2B07",variations:["2B07-FE0F"],docomo:null,au:"E540",softbank:"E233",google:"FEAF9",image:"2b07.png",sheet_x:4,sheet_y:21,short_name:"arrow_down",short_names:["arrow_down"],category:"Symbols",sort_order:168,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-pk":{name:"Regional Indicator Symbol Letters PK",unified:"1F1F5-1F1F0",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f5-1f1f0.png",sheet_x:37,sheet_y:11,short_name:"flag-pk",short_names:["flag-pk"],category:"Flags",sort_order:168,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"woman-woman-girl-boy":{name:"Woman Woman Girl Boy",unified:"1F469-200D-1F469-200D-1F467-200D-1F466",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f469-200d-1f469-200d-1f467-200d-1f466.png",sheet_x:39,sheet_y:17,short_name:"woman-woman-girl-boy",short_names:["woman-woman-girl-boy"],category:"People",sort_order:168,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},unlock:{name:"Open Lock",unified:"1F513",variations:[],docomo:"E6D9",au:"E51C",softbank:"E145",google:"FEB87",image:"1f513.png",sheet_x:23,sheet_y:3,short_name:"unlock",short_names:["unlock"],category:"Objects",sort_order:168,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"woman-woman-boy-boy":{name:"Woman Woman Boy Boy",unified:"1F469-200D-1F469-200D-1F466-200D-1F466",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f469-200d-1f469-200d-1f466-200d-1f466.png",sheet_x:39,sheet_y:15,short_name:"woman-woman-boy-boy",short_names:["woman-woman-boy-boy"],category:"People",sort_order:169,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},lock_with_ink_pen:{name:"Lock with Ink Pen",unified:"1F50F",variations:[],docomo:"E6D9",au:"EB0C",softbank:"E144",google:"FEB90",image:"1f50f.png",sheet_x:22,sheet_y:40,short_name:"lock_with_ink_pen",short_names:["lock_with_ink_pen"],category:"Objects",sort_order:169,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-pw":{name:"Regional Indicator Symbol Letters PW",unified:"1F1F5-1F1FC",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f5-1f1fc.png",sheet_x:37,sheet_y:18,short_name:"flag-pw",short_names:["flag-pw"],category:"Flags",sort_order:169,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},arrow_upper_right:{name:"North East Arrow",unified:"2197",variations:["2197-FE0F"],docomo:"E678",au:"E555",softbank:"E236",google:"FEAF0",image:"2197.png",sheet_x:0,sheet_y:9,short_name:"arrow_upper_right",short_names:["arrow_upper_right"],category:"Symbols",sort_order:169,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"woman-woman-girl-girl":{name:"Woman Woman Girl Girl",unified:"1F469-200D-1F469-200D-1F467-200D-1F467",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f469-200d-1f469-200d-1f467-200d-1f467.png",sheet_x:39,sheet_y:18,short_name:"woman-woman-girl-girl",short_names:["woman-woman-girl-girl"],category:"People",sort_order:170,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},arrow_lower_right:{name:"South East Arrow",unified:"2198",variations:["2198-FE0F"],docomo:"E696",au:"E54D",softbank:"E238",google:"FEAF1",image:"2198.png",sheet_x:0,sheet_y:10,short_name:"arrow_lower_right",short_names:["arrow_lower_right"],category:"Symbols",sort_order:170,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},lower_left_ballpoint_pen:{name:"Lower Left Ballpoint Pen",unified:"1F58A",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f58a.png",sheet_x:25,sheet_y:9,short_name:"lower_left_ballpoint_pen",short_names:["lower_left_ballpoint_pen"],category:"Objects",sort_order:170,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-ps":{name:"Regional Indicator Symbol Letters PS",unified:"1F1F5-1F1F8",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f5-1f1f8.png",sheet_x:37,sheet_y:16,short_name:"flag-ps",short_names:["flag-ps"],category:"Flags",sort_order:170,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-pa":{name:"Regional Indicator Symbol Letters PA",unified:"1F1F5-1F1E6",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f5-1f1e6.png",sheet_x:37,sheet_y:6,short_name:"flag-pa",short_names:["flag-pa"],category:"Flags",sort_order:171,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},lower_left_fountain_pen:{name:"Lower Left Fountain Pen",unified:"1F58B",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f58b.png",sheet_x:25,sheet_y:10,short_name:"lower_left_fountain_pen",short_names:["lower_left_fountain_pen"],category:"Objects",sort_order:171,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},arrow_lower_left:{name:"South West Arrow",unified:"2199",variations:["2199-FE0F"],docomo:"E6A5",au:"E556",softbank:"E239",google:"FEAF3",image:"2199.png",sheet_x:0,sheet_y:11,short_name:"arrow_lower_left",short_names:["arrow_lower_left"],category:"Symbols",sort_order:171,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"man-man-boy":{name:"Man Man Boy",unified:"1F468-200D-1F468-200D-1F466",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f468-200d-1f468-200d-1f466.png",sheet_x:39,sheet_y:3,short_name:"man-man-boy",short_names:["man-man-boy"],category:"People",sort_order:171,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},black_nib:{name:"Black Nib",unified:"2712",variations:["2712-FE0F"],docomo:"E6AE",au:"EB03",softbank:null,google:"FE536",image:"2712.png",sheet_x:3,sheet_y:34,short_name:"black_nib",short_names:["black_nib"],category:"Objects",sort_order:172,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-pg":{name:"Regional Indicator Symbol Letters PG",unified:"1F1F5-1F1EC",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f5-1f1ec.png",sheet_x:37,sheet_y:9,short_name:"flag-pg",short_names:["flag-pg"],category:"Flags",sort_order:172,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},arrow_upper_left:{name:"North West Arrow",unified:"2196",variations:["2196-FE0F"],docomo:"E697",au:"E54C",softbank:"E237",google:"FEAF2",image:"2196.png",sheet_x:0,sheet_y:8,short_name:"arrow_upper_left",short_names:["arrow_upper_left"],category:"Symbols",sort_order:172,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"man-man-girl":{name:"Man Man Girl",unified:"1F468-200D-1F468-200D-1F467",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f468-200d-1f468-200d-1f467.png",sheet_x:39,sheet_y:5,short_name:"man-man-girl",short_names:["man-man-girl"],category:"People",sort_order:172,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"man-man-girl-boy":{name:"Man Man Girl Boy",unified:"1F468-200D-1F468-200D-1F467-200D-1F466",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f468-200d-1f468-200d-1f467-200d-1f466.png",sheet_x:39,sheet_y:6,short_name:"man-man-girl-boy",short_names:["man-man-girl-boy"],category:"People",sort_order:173,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},arrow_up_down:{name:"Up Down Arrow",unified:"2195",variations:["2195-FE0F"],docomo:"E73D",au:"EB7B",softbank:null,google:"FEAF7",image:"2195.png",sheet_x:0,sheet_y:7,short_name:"arrow_up_down",short_names:["arrow_up_down"],category:"Symbols",sort_order:173,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},memo:{name:"Memo",unified:"1F4DD",variations:[],docomo:"E689",au:"EA92",softbank:"E301",google:"FE527",image:"1f4dd.png",sheet_x:21,sheet_y:32,short_name:"memo",short_names:["memo","pencil"],category:"Objects",sort_order:173,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-py":{name:"Regional Indicator Symbol Letters PY",unified:"1F1F5-1F1FE",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f5-1f1fe.png",sheet_x:37,sheet_y:19,short_name:"flag-py",short_names:["flag-py"],category:"Flags",sort_order:173,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-pe":{name:"Regional Indicator Symbol Letters PE",unified:"1F1F5-1F1EA",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f5-1f1ea.png",sheet_x:37,sheet_y:7,short_name:"flag-pe",short_names:["flag-pe"],category:"Flags",sort_order:174,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},pencil2:{name:"Pencil",unified:"270F",variations:["270F-FE0F"],docomo:"E719",au:"E4A1",softbank:"E301",google:"FE539",image:"270f.png",sheet_x:3,sheet_y:33,short_name:"pencil2",short_names:["pencil2"],category:"Objects",sort_order:174,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"man-man-boy-boy":{name:"Man Man Boy Boy",unified:"1F468-200D-1F468-200D-1F466-200D-1F466",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f468-200d-1f468-200d-1f466-200d-1f466.png",sheet_x:39,sheet_y:4,short_name:"man-man-boy-boy",short_names:["man-man-boy-boy"],category:"People",sort_order:174,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},left_right_arrow:{name:"Left Right Arrow",unified:"2194",variations:["2194-FE0F"],docomo:"E73C",au:"EB7A",softbank:null,google:"FEAF6",image:"2194.png",sheet_x:0,sheet_y:6,short_name:"left_right_arrow",short_names:["left_right_arrow"],category:"Symbols",sort_order:174,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"man-man-girl-girl":{name:"Man Man Girl Girl",unified:"1F468-200D-1F468-200D-1F467-200D-1F467",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f468-200d-1f468-200d-1f467-200d-1f467.png",sheet_x:39,sheet_y:7,short_name:"man-man-girl-girl",short_names:["man-man-girl-girl"],category:"People",sort_order:175,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},arrows_counterclockwise:{name:"Anticlockwise Downwards and Upwards Open Circle Arrows",unified:"1F504",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f504.png",sheet_x:22,sheet_y:29,short_name:"arrows_counterclockwise",short_names:["arrows_counterclockwise"],category:"Symbols",sort_order:175,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-ph":{name:"Regional Indicator Symbol Letters PH",unified:"1F1F5-1F1ED",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f5-1f1ed.png",sheet_x:37,sheet_y:10,short_name:"flag-ph",short_names:["flag-ph"],category:"Flags",sort_order:175,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},lower_left_crayon:{name:"Lower Left Crayon",unified:"1F58D",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f58d.png",sheet_x:25,sheet_y:12,short_name:"lower_left_crayon",short_names:["lower_left_crayon"],category:"Objects",sort_order:175,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},womans_clothes:{name:"Womans Clothes",unified:"1F45A",variations:[],docomo:"E70E",au:"E50D",softbank:"E006",google:"FE4DB",image:"1f45a.png",sheet_x:15,sheet_y:37,short_name:"womans_clothes",short_names:["womans_clothes"],category:"People",sort_order:176,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},lower_left_paintbrush:{name:"Lower Left Paintbrush",unified:"1F58C",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f58c.png",sheet_x:25,sheet_y:11,short_name:"lower_left_paintbrush",short_names:["lower_left_paintbrush"],category:"Objects",sort_order:176,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-pn":{name:"Regional Indicator Symbol Letters PN",unified:"1F1F5-1F1F3",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f5-1f1f3.png",sheet_x:37,sheet_y:14,short_name:"flag-pn",short_names:["flag-pn"],category:"Flags",sort_order:176,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},arrow_right_hook:{name:"Rightwards Arrow with Hook",unified:"21AA",variations:["21AA-FE0F"],docomo:null,au:"E55C",softbank:null,google:"FEB88",image:"21aa.png",sheet_x:0,sheet_y:13,short_name:"arrow_right_hook",short_names:["arrow_right_hook"],category:"Symbols",sort_order:176,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},leftwards_arrow_with_hook:{name:"Leftwards Arrow with Hook",unified:"21A9",variations:["21A9-FE0F"],docomo:"E6DA",au:"E55D",softbank:null,google:"FEB83",image:"21a9.png",sheet_x:0,sheet_y:12,short_name:"leftwards_arrow_with_hook",short_names:["leftwards_arrow_with_hook"],category:"Symbols",sort_order:177,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},mag:{name:"Left-Pointing Magnifying Glass",unified:"1F50D",variations:[],docomo:"E6DC",au:"E518",softbank:"E114",google:"FEB85",image:"1f50d.png",sheet_x:22,sheet_y:38,short_name:"mag",short_names:["mag"],category:"Objects",sort_order:177,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-pl":{name:"Regional Indicator Symbol Letters PL",unified:"1F1F5-1F1F1",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f5-1f1f1.png",sheet_x:37,sheet_y:12,short_name:"flag-pl",short_names:["flag-pl"],category:"Flags",sort_order:177,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},shirt:{name:"T-Shirt",unified:"1F455",variations:[],docomo:"E70E",au:"E5B6",softbank:"E006",google:"FE4CF",image:"1f455.png",sheet_x:15,sheet_y:32,short_name:"shirt",short_names:["shirt","tshirt"],category:"People",sort_order:177,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-pt":{name:"Regional Indicator Symbol Letters PT",unified:"1F1F5-1F1F9",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f5-1f1f9.png",sheet_x:37,sheet_y:17,short_name:"flag-pt",short_names:["flag-pt"],category:"Flags",sort_order:178,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},jeans:{name:"Jeans",unified:"1F456",variations:[],docomo:"E711",au:"EB77",softbank:null,google:"FE4D0",image:"1f456.png",sheet_x:15,sheet_y:33,short_name:"jeans",short_names:["jeans"],category:"People",sort_order:178,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},mag_right:{name:"Right-Pointing Magnifying Glass",unified:"1F50E",variations:[],docomo:"E6DC",au:"EB05",softbank:"E114",google:"FEB8D",image:"1f50e.png",sheet_x:22,sheet_y:39,short_name:"mag_right",short_names:["mag_right"],category:"Objects",sort_order:178,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},arrow_heading_up:{name:"Arrow Pointing Rightwards Then Curving Upwards",unified:"2934",variations:["2934-FE0F"],docomo:"E6F5",au:"EB2D",softbank:"E236",google:"FEAF4",image:"2934.png",sheet_x:4,sheet_y:17,short_name:"arrow_heading_up",short_names:["arrow_heading_up"],category:"Symbols",sort_order:178,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},necktie:{name:"Necktie",unified:"1F454",variations:[],docomo:null,au:"EA93",softbank:"E302",google:"FE4D3",image:"1f454.png",sheet_x:15,sheet_y:31,short_name:"necktie",short_names:["necktie"],category:"People",sort_order:179,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-pr":{name:"Regional Indicator Symbol Letters PR",unified:"1F1F5-1F1F7",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f5-1f1f7.png",sheet_x:37,sheet_y:15,short_name:"flag-pr",short_names:["flag-pr"],category:"Flags",sort_order:179,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},arrow_heading_down:{name:"Arrow Pointing Rightwards Then Curving Downwards",unified:"2935",variations:["2935-FE0F"],docomo:"E700",au:"EB2E",softbank:"E238",google:"FEAF5",image:"2935.png",sheet_x:4,sheet_y:18,short_name:"arrow_heading_down",short_names:["arrow_heading_down"],category:"Symbols",sort_order:179,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},dress:{name:"Dress",unified:"1F457",variations:[],docomo:null,au:"EB6B",softbank:"E319",google:"FE4D5",image:"1f457.png",sheet_x:15,sheet_y:34,short_name:"dress",short_names:["dress"],category:"People",sort_order:180,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-qa":{name:"Regional Indicator Symbol Letters QA",unified:"1F1F6-1F1E6",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f6-1f1e6.png",sheet_x:37,sheet_y:20,short_name:"flag-qa",short_names:["flag-qa"],category:"Flags",sort_order:180,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},hash:{name:"Hash Key",unified:"0023-20E3",variations:["0023-FE0F-20E3"],docomo:"E6E0",au:"EB84",softbank:"E210",google:"FE82C",image:"0023-20e3.png",sheet_x:32,sheet_y:21,short_name:"hash",short_names:["hash"],category:"Symbols",sort_order:180,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-re":{name:"Regional Indicator Symbol Letters RE",unified:"1F1F7-1F1EA",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f7-1f1ea.png",sheet_x:37,sheet_y:21,short_name:"flag-re",short_names:["flag-re"],category:"Flags",sort_order:181,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},bikini:{name:"Bikini",unified:"1F459",variations:[],docomo:null,au:"EAA4",softbank:"E322",google:"FE4DA",image:"1f459.png",sheet_x:15,sheet_y:36,short_name:"bikini",short_names:["bikini"],category:"People",sort_order:181,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},information_source:{name:"Information Source",unified:"2139",variations:["2139-FE0F"],docomo:null,au:"E533",softbank:null,google:"FEB47",image:"2139.png",sheet_x:0,sheet_y:5,short_name:"information_source",short_names:["information_source"],category:"Symbols",sort_order:181,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},kimono:{name:"Kimono",unified:"1F458",variations:[],docomo:null,au:"EAA3",softbank:"E321",google:"FE4D9",image:"1f458.png",sheet_x:15,sheet_y:35,short_name:"kimono",short_names:["kimono"],category:"People",sort_order:182,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},abc:{name:"Input Symbol for Latin Letters",unified:"1F524",variations:[],docomo:null,au:"EB55",softbank:null,google:"FEB80",image:"1f524.png",sheet_x:23,sheet_y:20,short_name:"abc",short_names:["abc"],category:"Symbols",sort_order:182,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-ro":{name:"Regional Indicator Symbol Letters RO",unified:"1F1F7-1F1F4",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f7-1f1f4.png",sheet_x:37,sheet_y:22,short_name:"flag-ro",short_names:["flag-ro"],category:"Flags",sort_order:182,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},lipstick:{name:"Lipstick",unified:"1F484",variations:[],docomo:"E710",au:"E509",softbank:"E31C",google:"FE195",image:"1f484.png",sheet_x:19,sheet_y:5,short_name:"lipstick",short_names:["lipstick"],category:"People",sort_order:183,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-ru":{name:"Regional Indicator Symbol Letters RU",unified:"1F1F7-1F1FA",variations:[],docomo:null,au:"E5D6",softbank:"E512",google:"FE4EC",image:"1f1f7-1f1fa.png",sheet_x:37,sheet_y:24,short_name:"flag-ru",short_names:["flag-ru","ru"],category:"Flags",sort_order:183,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},abcd:{name:"Input Symbol for Latin Small Letters",unified:"1F521",variations:[],docomo:null,au:"EAFE",softbank:null,google:"FEB7D",image:"1f521.png",sheet_x:23,sheet_y:17,short_name:"abcd",short_names:["abcd"],category:"Symbols",sort_order:183,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},kiss:{name:"Kiss Mark",unified:"1F48B",variations:[],docomo:"E6F9",au:"E4EB",softbank:"E003",google:"FE823",image:"1f48b.png",sheet_x:19,sheet_y:27,short_name:"kiss",short_names:["kiss"],category:"People",sort_order:184,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[":*",":-*"]},capital_abcd:{name:"Input Symbol for Latin Capital Letters",unified:"1F520",variations:[],docomo:null,au:"EAFD",softbank:null,google:"FEB7C",image:"1f520.png",sheet_x:23,sheet_y:16,short_name:"capital_abcd",short_names:["capital_abcd"],category:"Symbols",sort_order:184,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-rw":{name:"Regional Indicator Symbol Letters RW",unified:"1F1F7-1F1FC",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f7-1f1fc.png",sheet_x:37,sheet_y:25,short_name:"flag-rw",short_names:["flag-rw"],category:"Flags",sort_order:184,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},footprints:{name:"Footprints",unified:"1F463",variations:[],docomo:"E698",au:"EB2A",softbank:"E536",google:"FE553",image:"1f463.png",sheet_x:16,sheet_y:5,short_name:"footprints",short_names:["footprints"],category:"People",sort_order:185,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-bl":{name:"Regional Indicator Symbol Letters BL",unified:"1F1E7-1F1F1",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e7-1f1f1.png",sheet_x:33,sheet_y:18,short_name:"flag-bl",short_names:["flag-bl"],category:"Flags",sort_order:185,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},symbols:{name:"Input Symbol for Symbols",unified:"1F523",variations:[],docomo:null,au:"EB00",softbank:null,google:"FEB7F",image:"1f523.png",sheet_x:23,sheet_y:19,short_name:"symbols",short_names:["symbols"],category:"Symbols",sort_order:185,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},high_heel:{name:"High-Heeled Shoe",unified:"1F460",variations:[],docomo:"E674",au:"E51A",softbank:"E13E",google:"FE4D6",image:"1f460.png",sheet_x:16,sheet_y:2,short_name:"high_heel",short_names:["high_heel"],category:"People",sort_order:186,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},musical_note:{name:"Musical Note",unified:"1F3B5",variations:[],docomo:"E6F6",au:"E5BE",softbank:"E03E",google:"FE813",image:"1f3b5.png",sheet_x:9,sheet_y:36,short_name:"musical_note",short_names:["musical_note"],category:"Symbols",sort_order:186,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-sh":{name:"Regional Indicator Symbol Letters SH",unified:"1F1F8-1F1ED",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f8-1f1ed.png",sheet_x:37,sheet_y:32,short_name:"flag-sh",short_names:["flag-sh"],category:"Flags",sort_order:186,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-kn":{name:"Regional Indicator Symbol Letters KN",unified:"1F1F0-1F1F3",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f0-1f1f3.png",sheet_x:35,sheet_y:35,short_name:"flag-kn",short_names:["flag-kn"],category:"Flags",sort_order:187,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},notes:{name:"Multiple Musical Notes",unified:"1F3B6",variations:[],docomo:"E6FF",au:"E505",softbank:"E326",google:"FE814",image:"1f3b6.png",sheet_x:9,sheet_y:37,short_name:"notes",short_names:["notes"],category:"Symbols",sort_order:187,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},sandal:{name:"Womans Sandal",unified:"1F461",variations:[],docomo:"E674",au:"E51A",softbank:"E31A",google:"FE4D7",image:"1f461.png",sheet_x:16,sheet_y:3,short_name:"sandal",short_names:["sandal"],category:"People",sort_order:187,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},boot:{name:"Womans Boots",unified:"1F462",variations:[],docomo:null,au:"EA9F",softbank:"E31B",google:"FE4D8",image:"1f462.png",sheet_x:16,sheet_y:4,short_name:"boot",short_names:["boot"],category:"People",sort_order:188,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},wavy_dash:{name:"Wavy Dash",unified:"3030",variations:["3030-FE0F"],docomo:"E709",au:null,softbank:null,google:"FEB07",image:"3030.png",sheet_x:4,sheet_y:26,short_name:"wavy_dash",short_names:["wavy_dash"],category:"Symbols",sort_order:188,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-lc":{name:"Regional Indicator Symbol Letters LC",unified:"1F1F1-1F1E8",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f1-1f1e8.png",sheet_x:36,sheet_y:2,short_name:"flag-lc",short_names:["flag-lc"],category:"Flags",sort_order:188,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-pm":{name:"Regional Indicator Symbol Letters PM",unified:"1F1F5-1F1F2",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f5-1f1f2.png",sheet_x:37,sheet_y:13,short_name:"flag-pm",short_names:["flag-pm"],category:"Flags",sort_order:189,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},mans_shoe:{name:"Mans Shoe",unified:"1F45E",variations:[],docomo:"E699",au:"E5B7",softbank:"E007",google:"FE4CC",image:"1f45e.png",sheet_x:16,sheet_y:0,short_name:"mans_shoe",short_names:["mans_shoe","shoe"],category:"People",sort_order:189,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},curly_loop:{name:"Curly Loop",unified:"27B0",variations:[],docomo:"E70A",au:"EB31",softbank:null,google:"FEB08",image:"27b0.png",sheet_x:4,sheet_y:15,short_name:"curly_loop",short_names:["curly_loop"],category:"Symbols",sort_order:189,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-vc":{name:"Regional Indicator Symbol Letters VC",unified:"1F1FB-1F1E8",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1fb-1f1e8.png",sheet_x:38,sheet_y:30,short_name:"flag-vc",short_names:["flag-vc"],category:"Flags",sort_order:190,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},heavy_check_mark:{name:"Heavy Check Mark",unified:"2714",variations:["2714-FE0F"],docomo:null,au:"E557",softbank:null,google:"FEB49",image:"2714.png",sheet_x:3,sheet_y:35,short_name:"heavy_check_mark",short_names:["heavy_check_mark"],category:"Symbols",sort_order:190,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},athletic_shoe:{name:"Athletic Shoe",unified:"1F45F",variations:[],docomo:"E699",au:"EB2B",softbank:"E007",google:"FE4CD",image:"1f45f.png",sheet_x:16,sheet_y:1,short_name:"athletic_shoe",short_names:["athletic_shoe"],category:"People",sort_order:190,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},womans_hat:{name:"Womans Hat",unified:"1F452",variations:[],docomo:null,au:"EA9E",softbank:"E318",google:"FE4D4",image:"1f452.png",sheet_x:15,sheet_y:29,short_name:"womans_hat",short_names:["womans_hat"],category:"People",sort_order:191,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-ws":{name:"Regional Indicator Symbol Letters WS",unified:"1F1FC-1F1F8",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1fc-1f1f8.png",sheet_x:38,sheet_y:37,short_name:"flag-ws",short_names:["flag-ws"],category:"Flags",
sort_order:191,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},arrows_clockwise:{name:"Clockwise Downwards and Upwards Open Circle Arrows",unified:"1F503",variations:[],docomo:"E735",au:"EB0D",softbank:null,google:"FEB91",image:"1f503.png",sheet_x:22,sheet_y:28,short_name:"arrows_clockwise",short_names:["arrows_clockwise"],category:"Symbols",sort_order:191,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},heavy_plus_sign:{name:"Heavy Plus Sign",unified:"2795",variations:[],docomo:null,au:"E53C",softbank:null,google:"FEB51",image:"2795.png",sheet_x:4,sheet_y:11,short_name:"heavy_plus_sign",short_names:["heavy_plus_sign"],category:"Symbols",sort_order:192,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},tophat:{name:"Top Hat",unified:"1F3A9",variations:[],docomo:"E67C",au:"EAF5",softbank:"E503",google:"FE805",image:"1f3a9.png",sheet_x:9,sheet_y:24,short_name:"tophat",short_names:["tophat"],category:"People",sort_order:192,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-sm":{name:"Regional Indicator Symbol Letters SM",unified:"1F1F8-1F1F2",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f8-1f1f2.png",sheet_x:37,sheet_y:37,short_name:"flag-sm",short_names:["flag-sm"],category:"Flags",sort_order:192,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},helmet_with_white_cross:{name:"Helmet with White Cross",unified:"26D1",variations:[],docomo:null,au:null,softbank:null,google:null,image:"26d1.png",sheet_x:2,sheet_y:25,short_name:"helmet_with_white_cross",short_names:["helmet_with_white_cross"],category:"People",sort_order:193,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},heavy_minus_sign:{name:"Heavy Minus Sign",unified:"2796",variations:[],docomo:null,au:"E53D",softbank:null,google:"FEB52",image:"2796.png",sheet_x:4,sheet_y:12,short_name:"heavy_minus_sign",short_names:["heavy_minus_sign"],category:"Symbols",sort_order:193,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-st":{name:"Regional Indicator Symbol Letters ST",unified:"1F1F8-1F1F9",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f8-1f1f9.png",sheet_x:38,sheet_y:1,short_name:"flag-st",short_names:["flag-st"],category:"Flags",sort_order:193,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-sa":{name:"Regional Indicator Symbol Letters SA",unified:"1F1F8-1F1E6",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f8-1f1e6.png",sheet_x:37,sheet_y:26,short_name:"flag-sa",short_names:["flag-sa"],category:"Flags",sort_order:194,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},heavy_division_sign:{name:"Heavy Division Sign",unified:"2797",variations:[],docomo:null,au:"E554",softbank:null,google:"FEB54",image:"2797.png",sheet_x:4,sheet_y:13,short_name:"heavy_division_sign",short_names:["heavy_division_sign"],category:"Symbols",sort_order:194,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},mortar_board:{name:"Graduation Cap",unified:"1F393",variations:[],docomo:null,au:"EAE5",softbank:"E439",google:"FE51A",image:"1f393.png",sheet_x:9,sheet_y:7,short_name:"mortar_board",short_names:["mortar_board"],category:"People",sort_order:194,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-sn":{name:"Regional Indicator Symbol Letters SN",unified:"1F1F8-1F1F3",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f8-1f1f3.png",sheet_x:37,sheet_y:38,short_name:"flag-sn",short_names:["flag-sn"],category:"Flags",sort_order:195,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},heavy_multiplication_x:{name:"Heavy Multiplication X",unified:"2716",variations:["2716-FE0F"],docomo:null,au:"E54F",softbank:"E333",google:"FEB53",image:"2716.png",sheet_x:3,sheet_y:36,short_name:"heavy_multiplication_x",short_names:["heavy_multiplication_x"],category:"Symbols",sort_order:195,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},crown:{name:"Crown",unified:"1F451",variations:[],docomo:"E71A",au:"E5C9",softbank:"E10E",google:"FE4D1",image:"1f451.png",sheet_x:15,sheet_y:28,short_name:"crown",short_names:["crown"],category:"People",sort_order:195,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},school_satchel:{name:"School Satchel",unified:"1F392",variations:[],docomo:null,au:"EAE6",softbank:"E43A",google:"FE51B",image:"1f392.png",sheet_x:9,sheet_y:6,short_name:"school_satchel",short_names:["school_satchel"],category:"People",sort_order:196,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-rs":{name:"Regional Indicator Symbol Letters RS",unified:"1F1F7-1F1F8",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f7-1f1f8.png",sheet_x:37,sheet_y:23,short_name:"flag-rs",short_names:["flag-rs"],category:"Flags",sort_order:196,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},heavy_dollar_sign:{name:"Heavy Dollar Sign",unified:"1F4B2",variations:[],docomo:"E715",au:"E579",softbank:"E12F",google:"FE4E0",image:"1f4b2.png",sheet_x:20,sheet_y:30,short_name:"heavy_dollar_sign",short_names:["heavy_dollar_sign"],category:"Symbols",sort_order:196,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-sc":{name:"Regional Indicator Symbol Letters SC",unified:"1F1F8-1F1E8",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f8-1f1e8.png",sheet_x:37,sheet_y:28,short_name:"flag-sc",short_names:["flag-sc"],category:"Flags",sort_order:197,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},currency_exchange:{name:"Currency Exchange",unified:"1F4B1",variations:[],docomo:null,au:null,softbank:"E149",google:"FE4DE",image:"1f4b1.png",sheet_x:20,sheet_y:29,short_name:"currency_exchange",short_names:["currency_exchange"],category:"Symbols",sort_order:197,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},pouch:{name:"Pouch",unified:"1F45D",variations:[],docomo:"E6AD",au:null,softbank:null,google:"FE4F1",image:"1f45d.png",sheet_x:15,sheet_y:40,short_name:"pouch",short_names:["pouch"],category:"People",sort_order:197,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},purse:{name:"Purse",unified:"1F45B",variations:[],docomo:"E70F",au:"E504",softbank:null,google:"FE4DC",image:"1f45b.png",sheet_x:15,sheet_y:38,short_name:"purse",short_names:["purse"],category:"People",sort_order:198,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-sl":{name:"Regional Indicator Symbol Letters SL",unified:"1F1F8-1F1F1",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f8-1f1f1.png",sheet_x:37,sheet_y:36,short_name:"flag-sl",short_names:["flag-sl"],category:"Flags",sort_order:198,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},copyright:{name:"Copyright Sign",unified:"00A9",variations:["00A9-FE0F"],docomo:"E731",au:"E558",softbank:"E24E",google:"FEB29",image:"00a9.png",sheet_x:0,sheet_y:0,short_name:"copyright",short_names:["copyright"],category:"Symbols",sort_order:198,has_img_apple:!0,has_img_google:!0,has_img_twitter:!1,has_img_emojione:!0,emoticons:[]},handbag:{name:"Handbag",unified:"1F45C",variations:[],docomo:"E682",au:"E49C",softbank:"E323",google:"FE4F0",image:"1f45c.png",sheet_x:15,sheet_y:39,short_name:"handbag",short_names:["handbag"],category:"People",sort_order:199,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-sg":{name:"Regional Indicator Symbol Letters SG",unified:"1F1F8-1F1EC",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f8-1f1ec.png",sheet_x:37,sheet_y:31,short_name:"flag-sg",short_names:["flag-sg"],category:"Flags",sort_order:199,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},registered:{name:"Registered Sign",unified:"00AE",variations:["00AE-FE0F"],docomo:"E736",au:"E559",softbank:"E24F",google:"FEB2D",image:"00ae.png",sheet_x:0,sheet_y:1,short_name:"registered",short_names:["registered"],category:"Symbols",sort_order:199,has_img_apple:!0,has_img_google:!0,has_img_twitter:!1,has_img_emojione:!0,emoticons:[]},briefcase:{name:"Briefcase",unified:"1F4BC",variations:[],docomo:"E682",au:"E5CE",softbank:"E11E",google:"FE53B",image:"1f4bc.png",sheet_x:20,sheet_y:40,short_name:"briefcase",short_names:["briefcase"],category:"People",sort_order:200,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-sx":{name:"Regional Indicator Symbol Letters SX",unified:"1F1F8-1F1FD",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f8-1f1fd.png",sheet_x:38,sheet_y:3,short_name:"flag-sx",short_names:["flag-sx"],category:"Flags",sort_order:200,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},tm:{name:"Trade Mark Sign",unified:"2122",variations:["2122-FE0F"],docomo:"E732",au:"E54E",softbank:"E537",google:"FEB2A",image:"2122.png",sheet_x:0,sheet_y:4,short_name:"tm",short_names:["tm"],category:"Symbols",sort_order:200,has_img_apple:!0,has_img_google:!0,has_img_twitter:!1,has_img_emojione:!0,emoticons:[]},"flag-sk":{name:"Regional Indicator Symbol Letters SK",unified:"1F1F8-1F1F0",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f8-1f1f0.png",sheet_x:37,sheet_y:35,short_name:"flag-sk",short_names:["flag-sk"],category:"Flags",sort_order:201,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},eyeglasses:{name:"Eyeglasses",unified:"1F453",variations:[],docomo:"E69A",au:"E4FE",softbank:null,google:"FE4CE",image:"1f453.png",sheet_x:15,sheet_y:30,short_name:"eyeglasses",short_names:["eyeglasses"],category:"People",sort_order:201,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},end:{name:"End with Leftwards Arrow Above",unified:"1F51A",variations:[],docomo:"E6B9",au:null,softbank:null,google:"FE01A",image:"1f51a.png",sheet_x:23,sheet_y:10,short_name:"end",short_names:["end"],category:"Symbols",sort_order:201,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},dark_sunglasses:{name:"Dark Sunglasses",unified:"1F576",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f576.png",sheet_x:25,sheet_y:4,short_name:"dark_sunglasses",short_names:["dark_sunglasses"],category:"People",sort_order:202,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-si":{name:"Regional Indicator Symbol Letters SI",unified:"1F1F8-1F1EE",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f8-1f1ee.png",sheet_x:37,sheet_y:33,short_name:"flag-si",short_names:["flag-si"],category:"Flags",sort_order:202,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},back:{name:"Back with Leftwards Arrow Above",unified:"1F519",variations:[],docomo:null,au:"EB06",softbank:"E235",google:"FEB8E",image:"1f519.png",sheet_x:23,sheet_y:9,short_name:"back",short_names:["back"],category:"Symbols",sort_order:202,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},ring:{name:"Ring",unified:"1F48D",variations:[],docomo:"E71B",au:"E514",softbank:"E034",google:"FE825",image:"1f48d.png",sheet_x:19,sheet_y:29,short_name:"ring",short_names:["ring"],category:"People",sort_order:203,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-sb":{name:"Regional Indicator Symbol Letters SB",unified:"1F1F8-1F1E7",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f8-1f1e7.png",sheet_x:37,sheet_y:27,short_name:"flag-sb",short_names:["flag-sb"],category:"Flags",sort_order:203,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},on:{name:"On with Exclamation Mark with Left Right Arrow Above",unified:"1F51B",variations:[],docomo:"E6B8",au:null,softbank:null,google:"FE019",image:"1f51b.png",sheet_x:23,sheet_y:11,short_name:"on",short_names:["on"],category:"Symbols",sort_order:203,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},top:{name:"Top with Upwards Arrow Above",unified:"1F51D",variations:[],docomo:null,au:null,softbank:"E24C",google:"FEB42",image:"1f51d.png",sheet_x:23,sheet_y:13,short_name:"top",short_names:["top"],category:"Symbols",sort_order:204,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-so":{name:"Regional Indicator Symbol Letters SO",unified:"1F1F8-1F1F4",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f8-1f1f4.png",sheet_x:37,sheet_y:39,short_name:"flag-so",short_names:["flag-so"],category:"Flags",sort_order:204,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},closed_umbrella:{name:"Closed Umbrella",unified:"1F302",variations:[],docomo:"E645",au:"EAE8",softbank:"E43C",google:"FE007",image:"1f302.png",sheet_x:5,sheet_y:23,short_name:"closed_umbrella",short_names:["closed_umbrella"],category:"People",sort_order:204,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-za":{name:"Regional Indicator Symbol Letters ZA",unified:"1F1FF-1F1E6",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1ff-1f1e6.png",sheet_x:39,sheet_y:0,short_name:"flag-za",short_names:["flag-za"],category:"Flags",sort_order:205,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},soon:{name:"Soon with Rightwards Arrow Above",unified:"1F51C",variations:[],docomo:"E6B7",au:null,softbank:null,google:"FE018",image:"1f51c.png",sheet_x:23,sheet_y:12,short_name:"soon",short_names:["soon"],category:"Symbols",sort_order:205,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-gs":{name:"Regional Indicator Symbol Letters GS",unified:"1F1EC-1F1F8",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1ec-1f1f8.png",sheet_x:35,sheet_y:4,short_name:"flag-gs",short_names:["flag-gs"],category:"Flags",sort_order:206,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},ballot_box_with_check:{name:"Ballot Box with Check",unified:"2611",variations:["2611-FE0F"],docomo:null,au:"EB02",softbank:null,google:"FEB8B",image:"2611.png",sheet_x:1,sheet_y:6,short_name:"ballot_box_with_check",short_names:["ballot_box_with_check"],category:"Symbols",sort_order:206,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},radio_button:{name:"Radio Button",unified:"1F518",variations:[],docomo:null,au:"EB04",softbank:null,google:"FEB8C",image:"1f518.png",sheet_x:23,sheet_y:8,short_name:"radio_button",short_names:["radio_button"],category:"Symbols",sort_order:207,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-kr":{name:"Regional Indicator Symbol Letters KR",unified:"1F1F0-1F1F7",variations:[],docomo:null,au:"EB12",softbank:"E514",google:"FE4EE",image:"1f1f0-1f1f7.png",sheet_x:35,sheet_y:37,short_name:"flag-kr",short_names:["flag-kr","kr"],category:"Flags",sort_order:207,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-ss":{name:"Regional Indicator Symbol Letters SS",unified:"1F1F8-1F1F8",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f8-1f1f8.png",sheet_x:38,sheet_y:0,short_name:"flag-ss",short_names:["flag-ss"],category:"Flags",sort_order:208,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},white_circle:{name:"Medium White Circle",unified:"26AA",variations:["26AA-FE0F"],docomo:"E69C",au:"E53A",softbank:"E219",google:"FEB65",image:"26aa.png",sheet_x:2,sheet_y:14,short_name:"white_circle",short_names:["white_circle"],category:"Symbols",sort_order:208,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-es":{name:"Regional Indicator Symbol Letters ES",unified:"1F1EA-1F1F8",variations:[],docomo:null,au:"E5D5",softbank:"E511",google:"FE4EB",image:"1f1ea-1f1f8.png",sheet_x:34,sheet_y:22,short_name:"flag-es",short_names:["flag-es","es"],category:"Flags",sort_order:209,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},black_circle:{name:"Medium Black Circle",unified:"26AB",variations:["26AB-FE0F"],docomo:"E69C",au:"E53B",softbank:"E219",google:"FEB66",image:"26ab.png",sheet_x:2,sheet_y:15,short_name:"black_circle",short_names:["black_circle"],category:"Symbols",sort_order:209,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-lk":{name:"Regional Indicator Symbol Letters LK",unified:"1F1F1-1F1F0",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f1-1f1f0.png",sheet_x:36,sheet_y:4,short_name:"flag-lk",short_names:["flag-lk"],category:"Flags",sort_order:210,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},red_circle:{name:"Large Red Circle",unified:"1F534",variations:[],docomo:"E69C",au:"E54A",softbank:"E219",google:"FEB63",image:"1f534.png",sheet_x:23,sheet_y:36,short_name:"red_circle",short_names:["red_circle"],category:"Symbols",sort_order:210,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-sd":{name:"Regional Indicator Symbol Letters SD",unified:"1F1F8-1F1E9",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f8-1f1e9.png",sheet_x:37,sheet_y:29,short_name:"flag-sd",short_names:["flag-sd"],category:"Flags",sort_order:211,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},large_blue_circle:{name:"Large Blue Circle",unified:"1F535",variations:[],docomo:"E69C",au:"E54B",softbank:"E21A",google:"FEB64",image:"1f535.png",sheet_x:23,sheet_y:37,short_name:"large_blue_circle",short_names:["large_blue_circle"],category:"Symbols",sort_order:211,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},small_orange_diamond:{name:"Small Orange Diamond",unified:"1F538",variations:[],docomo:null,au:"E536",softbank:"E21B",google:"FEB75",image:"1f538.png",sheet_x:23,sheet_y:40,short_name:"small_orange_diamond",short_names:["small_orange_diamond"],category:"Symbols",sort_order:212,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-sr":{name:"Regional Indicator Symbol Letters SR",unified:"1F1F8-1F1F7",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f8-1f1f7.png",sheet_x:37,sheet_y:40,short_name:"flag-sr",short_names:["flag-sr"],category:"Flags",sort_order:212,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},small_blue_diamond:{name:"Small Blue Diamond",unified:"1F539",variations:[],docomo:null,au:"E537",softbank:"E21B",google:"FEB76",image:"1f539.png",sheet_x:24,sheet_y:0,short_name:"small_blue_diamond",short_names:["small_blue_diamond"],category:"Symbols",sort_order:213,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-sz":{name:"Regional Indicator Symbol Letters SZ",unified:"1F1F8-1F1FF",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f8-1f1ff.png",sheet_x:38,sheet_y:5,short_name:"flag-sz",short_names:["flag-sz"],category:"Flags",sort_order:213,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},large_orange_diamond:{name:"Large Orange Diamond",unified:"1F536",variations:[],docomo:null,au:"E546",softbank:"E21B",google:"FEB73",image:"1f536.png",sheet_x:23,sheet_y:38,short_name:"large_orange_diamond",short_names:["large_orange_diamond"],category:"Symbols",sort_order:214,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-se":{name:"Regional Indicator Symbol Letters SE",unified:"1F1F8-1F1EA",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f8-1f1ea.png",sheet_x:37,sheet_y:30,short_name:"flag-se",short_names:["flag-se"],category:"Flags",sort_order:214,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-ch":{name:"Regional Indicator Symbol Letters CH",unified:"1F1E8-1F1ED",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e8-1f1ed.png",sheet_x:33,sheet_y:35,short_name:"flag-ch",short_names:["flag-ch"],category:"Flags",sort_order:215,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},large_blue_diamond:{name:"Large Blue Diamond",unified:"1F537",variations:[],docomo:null,au:"E547",softbank:"E21B",google:"FEB74",image:"1f537.png",sheet_x:23,sheet_y:39,short_name:"large_blue_diamond",short_names:["large_blue_diamond"],category:"Symbols",sort_order:215,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-sy":{name:"Regional Indicator Symbol Letters SY",unified:"1F1F8-1F1FE",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f8-1f1fe.png",sheet_x:38,sheet_y:4,short_name:"flag-sy",short_names:["flag-sy"],category:"Flags",sort_order:216,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},small_red_triangle:{name:"Up-Pointing Red Triangle",unified:"1F53A",variations:[],docomo:null,au:"E55A",softbank:null,google:"FEB78",image:"1f53a.png",sheet_x:24,sheet_y:1,short_name:"small_red_triangle",short_names:["small_red_triangle"],category:"Symbols",sort_order:216,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-tw":{name:"Regional Indicator Symbol Letters TW",unified:"1F1F9-1F1FC",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f9-1f1fc.png",sheet_x:38,sheet_y:21,short_name:"flag-tw",short_names:["flag-tw"],category:"Flags",sort_order:217,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},black_small_square:{name:"Black Small Square",unified:"25AA",variations:["25AA-FE0F"],docomo:null,au:"E532",softbank:"E21A",google:"FEB6E",image:"25aa.png",sheet_x:0,sheet_y:33,short_name:"black_small_square",short_names:["black_small_square"],category:"Symbols",sort_order:217,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},white_small_square:{name:"White Small Square",unified:"25AB",variations:["25AB-FE0F"],docomo:null,au:"E531",softbank:"E21B",google:"FEB6D",image:"25ab.png",sheet_x:0,sheet_y:34,short_name:"white_small_square",short_names:["white_small_square"],category:"Symbols",sort_order:218,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-tj":{name:"Regional Indicator Symbol Letters TJ",unified:"1F1F9-1F1EF",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f9-1f1ef.png",sheet_x:38,sheet_y:12,short_name:"flag-tj",short_names:["flag-tj"],category:"Flags",sort_order:218,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},black_large_square:{name:"Black Large Square",unified:"2B1B",variations:["2B1B-FE0F"],docomo:null,au:"E549",softbank:"E21A",google:"FEB6C",image:"2b1b.png",sheet_x:4,sheet_y:22,short_name:"black_large_square",short_names:["black_large_square"],category:"Symbols",sort_order:219,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-tz":{name:"Regional Indicator Symbol Letters TZ",unified:"1F1F9-1F1FF",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f9-1f1ff.png",sheet_x:38,sheet_y:22,short_name:"flag-tz",short_names:["flag-tz"],category:"Flags",sort_order:219,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},white_large_square:{name:"White Large Square",unified:"2B1C",variations:["2B1C-FE0F"],docomo:null,au:"E548",softbank:"E21B",google:"FEB6B",image:"2b1c.png",sheet_x:4,sheet_y:23,short_name:"white_large_square",short_names:["white_large_square"],category:"Symbols",sort_order:220,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-th":{name:"Regional Indicator Symbol Letters TH",unified:"1F1F9-1F1ED",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f9-1f1ed.png",sheet_x:38,sheet_y:11,short_name:"flag-th",short_names:["flag-th"],category:"Flags",sort_order:220,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-tl":{name:"Regional Indicator Symbol Letters TL",unified:"1F1F9-1F1F1",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f9-1f1f1.png",sheet_x:38,sheet_y:14,short_name:"flag-tl",short_names:["flag-tl"],category:"Flags",sort_order:221,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},small_red_triangle_down:{name:"Down-Pointing Red Triangle",unified:"1F53B",variations:[],docomo:null,au:"E55B",softbank:null,google:"FEB79",image:"1f53b.png",sheet_x:24,sheet_y:2,short_name:"small_red_triangle_down",short_names:["small_red_triangle_down"],category:"Symbols",sort_order:221,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-tg":{name:"Regional Indicator Symbol Letters TG",unified:"1F1F9-1F1EC",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f9-1f1ec.png",sheet_x:38,sheet_y:10,short_name:"flag-tg",short_names:["flag-tg"],category:"Flags",sort_order:222,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},black_medium_square:{name:"Black Medium Square",unified:"25FC",variations:["25FC-FE0F"],docomo:null,au:"E539",softbank:"E21A",google:"FEB72",image:"25fc.png",sheet_x:0,sheet_y:38,short_name:"black_medium_square",short_names:["black_medium_square"],category:"Symbols",sort_order:222,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-tk":{name:"Regional Indicator Symbol Letters TK",unified:"1F1F9-1F1F0",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f9-1f1f0.png",sheet_x:38,sheet_y:13,short_name:"flag-tk",short_names:["flag-tk"],category:"Flags",sort_order:223,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},white_medium_square:{name:"White Medium Square",unified:"25FB",variations:["25FB-FE0F"],docomo:null,au:"E538",softbank:"E21B",google:"FEB71",image:"25fb.png",sheet_x:0,sheet_y:37,short_name:"white_medium_square",short_names:["white_medium_square"],category:"Symbols",sort_order:223,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-to":{name:"Regional Indicator Symbol Letters TO",unified:"1F1F9-1F1F4",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f9-1f1f4.png",sheet_x:38,sheet_y:17,short_name:"flag-to",short_names:["flag-to"],category:"Flags",sort_order:224,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},black_medium_small_square:{name:"Black Medium Small Square",unified:"25FE",variations:["25FE-FE0F"],docomo:null,au:"E535",softbank:"E21A",google:"FEB70",image:"25fe.png",sheet_x:0,sheet_y:40,short_name:"black_medium_small_square",short_names:["black_medium_small_square"],category:"Symbols",sort_order:224,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},white_medium_small_square:{name:"White Medium Small Square",unified:"25FD",variations:["25FD-FE0F"],docomo:null,au:"E534",softbank:"E21B",google:"FEB6F",image:"25fd.png",sheet_x:0,sheet_y:39,short_name:"white_medium_small_square",short_names:["white_medium_small_square"],category:"Symbols",sort_order:225,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-tt":{name:"Regional Indicator Symbol Letters TT",unified:"1F1F9-1F1F9",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f9-1f1f9.png",sheet_x:38,sheet_y:19,short_name:"flag-tt",short_names:["flag-tt"],category:"Flags",sort_order:225,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},black_square_button:{name:"Black Square Button",unified:"1F532",variations:[],docomo:"E69C",au:"E54B",softbank:"E21A",google:"FEB64",image:"1f532.png",sheet_x:23,sheet_y:34,short_name:"black_square_button",short_names:["black_square_button"],category:"Symbols",sort_order:226,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-tn":{name:"Regional Indicator Symbol Letters TN",unified:"1F1F9-1F1F3",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f9-1f1f3.png",sheet_x:38,sheet_y:16,short_name:"flag-tn",short_names:["flag-tn"],category:"Flags",sort_order:226,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-tr":{name:"Regional Indicator Symbol Letters TR",unified:"1F1F9-1F1F7",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f9-1f1f7.png",sheet_x:38,sheet_y:18,short_name:"flag-tr",short_names:["flag-tr"],category:"Flags",sort_order:227,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},white_square_button:{name:"White Square Button",unified:"1F533",variations:[],docomo:"E69C",au:"E54B",softbank:"E21B",google:"FEB67",image:"1f533.png",sheet_x:23,sheet_y:35,short_name:"white_square_button",short_names:["white_square_button"],category:"Symbols",sort_order:227,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-tm":{name:"Regional Indicator Symbol Letters TM",unified:"1F1F9-1F1F2",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f9-1f1f2.png",sheet_x:38,sheet_y:15,short_name:"flag-tm",short_names:["flag-tm"],category:"Flags",sort_order:228,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},speaker:{name:"Speaker",unified:"1F508",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f508.png",sheet_x:22,sheet_y:33,short_name:"speaker",short_names:["speaker"],category:"Symbols",sort_order:228,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-tc":{name:"Regional Indicator Symbol Letters TC",unified:"1F1F9-1F1E8",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f9-1f1e8.png",sheet_x:38,sheet_y:7,short_name:"flag-tc",short_names:["flag-tc"],category:"Flags",sort_order:229,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},sound:{name:"Speaker with One Sound Wave",unified:"1F509",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f509.png",sheet_x:22,sheet_y:34,short_name:"sound",short_names:["sound"],category:"Symbols",sort_order:229,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-tv":{name:"Regional Indicator Symbol Letters TV",unified:"1F1F9-1F1FB",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f9-1f1fb.png",sheet_x:38,sheet_y:20,short_name:"flag-tv",short_names:["flag-tv"],category:"Flags",sort_order:230,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},loud_sound:{name:"Speaker with Three Sound Waves",unified:"1F50A",variations:[],docomo:null,au:"E511",softbank:"E141",google:"FE821",image:"1f50a.png",sheet_x:22,sheet_y:35,short_name:"loud_sound",short_names:["loud_sound"],category:"Symbols",sort_order:230,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,
emoticons:[]},mute:{name:"Speaker with Cancellation Stroke",unified:"1F507",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f507.png",sheet_x:22,sheet_y:32,short_name:"mute",short_names:["mute"],category:"Symbols",sort_order:231,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-ug":{name:"Regional Indicator Symbol Letters UG",unified:"1F1FA-1F1EC",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1fa-1f1ec.png",sheet_x:38,sheet_y:24,short_name:"flag-ug",short_names:["flag-ug"],category:"Flags",sort_order:231,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-ua":{name:"Regional Indicator Symbol Letters UA",unified:"1F1FA-1F1E6",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1fa-1f1e6.png",sheet_x:38,sheet_y:23,short_name:"flag-ua",short_names:["flag-ua"],category:"Flags",sort_order:232,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},mega:{name:"Cheering Megaphone",unified:"1F4E3",variations:[],docomo:null,au:"E511",softbank:"E317",google:"FE530",image:"1f4e3.png",sheet_x:21,sheet_y:38,short_name:"mega",short_names:["mega"],category:"Symbols",sort_order:232,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-ae":{name:"Regional Indicator Symbol Letters AE",unified:"1F1E6-1F1EA",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e6-1f1ea.png",sheet_x:32,sheet_y:35,short_name:"flag-ae",short_names:["flag-ae"],category:"Flags",sort_order:233,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},loudspeaker:{name:"Public Address Loudspeaker",unified:"1F4E2",variations:[],docomo:null,au:"E511",softbank:"E142",google:"FE52F",image:"1f4e2.png",sheet_x:21,sheet_y:37,short_name:"loudspeaker",short_names:["loudspeaker"],category:"Symbols",sort_order:233,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},bell:{name:"Bell",unified:"1F514",variations:[],docomo:"E713",au:"E512",softbank:"E325",google:"FE4F2",image:"1f514.png",sheet_x:23,sheet_y:4,short_name:"bell",short_names:["bell"],category:"Symbols",sort_order:234,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-gb":{name:"Regional Indicator Symbol Letters GB",unified:"1F1EC-1F1E7",variations:[],docomo:null,au:"EB10",softbank:"E510",google:"FE4EA",image:"1f1ec-1f1e7.png",sheet_x:34,sheet_y:32,short_name:"flag-gb",short_names:["flag-gb","gb","uk"],category:"Flags",sort_order:234,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-us":{name:"Regional Indicator Symbol Letters US",unified:"1F1FA-1F1F8",variations:[],docomo:null,au:"E573",softbank:"E50C",google:"FE4E6",image:"1f1fa-1f1f8.png",sheet_x:38,sheet_y:26,short_name:"flag-us",short_names:["flag-us","us"],category:"Flags",sort_order:235,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},no_bell:{name:"Bell with Cancellation Stroke",unified:"1F515",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f515.png",sheet_x:23,sheet_y:5,short_name:"no_bell",short_names:["no_bell"],category:"Symbols",sort_order:235,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-vi":{name:"Regional Indicator Symbol Letters VI",unified:"1F1FB-1F1EE",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1fb-1f1ee.png",sheet_x:38,sheet_y:33,short_name:"flag-vi",short_names:["flag-vi"],category:"Flags",sort_order:236,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},black_joker:{name:"Playing Card Black Joker",unified:"1F0CF",variations:[],docomo:null,au:"EB6F",softbank:null,google:"FE812",image:"1f0cf.png",sheet_x:4,sheet_y:31,short_name:"black_joker",short_names:["black_joker"],category:"Symbols",sort_order:236,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},mahjong:{name:"Mahjong Tile Red Dragon",unified:"1F004",variations:["1F004-FE0F"],docomo:null,au:"E5D1",softbank:"E12D",google:"FE80B",image:"1f004.png",sheet_x:4,sheet_y:30,short_name:"mahjong",short_names:["mahjong"],category:"Symbols",sort_order:237,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-uy":{name:"Regional Indicator Symbol Letters UY",unified:"1F1FA-1F1FE",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1fa-1f1fe.png",sheet_x:38,sheet_y:27,short_name:"flag-uy",short_names:["flag-uy"],category:"Flags",sort_order:237,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},spades:{name:"Black Spade Suit",unified:"2660",variations:["2660-FE0F"],docomo:"E68E",au:"E5A1",softbank:"E20E",google:"FEB1B",image:"2660.png",sheet_x:1,sheet_y:38,short_name:"spades",short_names:["spades"],category:"Symbols",sort_order:238,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-uz":{name:"Regional Indicator Symbol Letters UZ",unified:"1F1FA-1F1FF",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1fa-1f1ff.png",sheet_x:38,sheet_y:28,short_name:"flag-uz",short_names:["flag-uz"],category:"Flags",sort_order:238,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},clubs:{name:"Black Club Suit",unified:"2663",variations:["2663-FE0F"],docomo:"E690",au:"E5A3",softbank:"E20F",google:"FEB1D",image:"2663.png",sheet_x:1,sheet_y:39,short_name:"clubs",short_names:["clubs"],category:"Symbols",sort_order:239,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-vu":{name:"Regional Indicator Symbol Letters VU",unified:"1F1FB-1F1FA",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1fb-1f1fa.png",sheet_x:38,sheet_y:35,short_name:"flag-vu",short_names:["flag-vu"],category:"Flags",sort_order:239,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},hearts:{name:"Black Heart Suit",unified:"2665",variations:["2665-FE0F"],docomo:"E68D",au:"EAA5",softbank:"E20C",google:"FEB1A",image:"2665.png",sheet_x:1,sheet_y:40,short_name:"hearts",short_names:["hearts"],category:"Symbols",sort_order:240,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-va":{name:"Regional Indicator Symbol Letters VA",unified:"1F1FB-1F1E6",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1fb-1f1e6.png",sheet_x:38,sheet_y:29,short_name:"flag-va",short_names:["flag-va"],category:"Flags",sort_order:240,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},diamonds:{name:"Black Diamond Suit",unified:"2666",variations:["2666-FE0F"],docomo:"E68F",au:"E5A2",softbank:"E20D",google:"FEB1C",image:"2666.png",sheet_x:2,sheet_y:0,short_name:"diamonds",short_names:["diamonds"],category:"Symbols",sort_order:241,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-ve":{name:"Regional Indicator Symbol Letters VE",unified:"1F1FB-1F1EA",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1fb-1f1ea.png",sheet_x:38,sheet_y:31,short_name:"flag-ve",short_names:["flag-ve"],category:"Flags",sort_order:241,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-vn":{name:"Regional Indicator Symbol Letters VN",unified:"1F1FB-1F1F3",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1fb-1f1f3.png",sheet_x:38,sheet_y:34,short_name:"flag-vn",short_names:["flag-vn"],category:"Flags",sort_order:242,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},flower_playing_cards:{name:"Flower Playing Cards",unified:"1F3B4",variations:[],docomo:null,au:"EB6E",softbank:null,google:"FE811",image:"1f3b4.png",sheet_x:9,sheet_y:35,short_name:"flower_playing_cards",short_names:["flower_playing_cards"],category:"Symbols",sort_order:242,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},thought_balloon:{name:"Thought Balloon",unified:"1F4AD",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f4ad.png",sheet_x:20,sheet_y:25,short_name:"thought_balloon",short_names:["thought_balloon"],category:"Symbols",sort_order:243,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-wf":{name:"Regional Indicator Symbol Letters WF",unified:"1F1FC-1F1EB",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1fc-1f1eb.png",sheet_x:38,sheet_y:36,short_name:"flag-wf",short_names:["flag-wf"],category:"Flags",sort_order:243,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-eh":{name:"Regional Indicator Symbol Letters EH",unified:"1F1EA-1F1ED",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1ea-1f1ed.png",sheet_x:34,sheet_y:20,short_name:"flag-eh",short_names:["flag-eh"],category:"Flags",sort_order:244,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},right_anger_bubble:{name:"Right Anger Bubble",unified:"1F5EF",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f5ef.png",sheet_x:26,sheet_y:7,short_name:"right_anger_bubble",short_names:["right_anger_bubble"],category:"Symbols",sort_order:244,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},speech_balloon:{name:"Speech Balloon",unified:"1F4AC",variations:[],docomo:null,au:"E4FD",softbank:null,google:"FE532",image:"1f4ac.png",sheet_x:20,sheet_y:24,short_name:"speech_balloon",short_names:["speech_balloon"],category:"Symbols",sort_order:245,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-ye":{name:"Regional Indicator Symbol Letters YE",unified:"1F1FE-1F1EA",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1fe-1f1ea.png",sheet_x:38,sheet_y:39,short_name:"flag-ye",short_names:["flag-ye"],category:"Flags",sort_order:245,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},left_speech_bubble:{name:"Left Speech Bubble",unified:"1F5E8",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f5e8.png",sheet_x:26,sheet_y:6,short_name:"left_speech_bubble",short_names:["left_speech_bubble"],category:"Symbols",sort_order:246,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!1,emoticons:[]},"flag-zm":{name:"Regional Indicator Symbol Letters ZM",unified:"1F1FF-1F1F2",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1ff-1f1f2.png",sheet_x:39,sheet_y:1,short_name:"flag-zm",short_names:["flag-zm"],category:"Flags",sort_order:246,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},clock1:{name:"Clock Face One Oclock",unified:"1F550",variations:[],docomo:"E6BA",au:"E594",softbank:"E024",google:"FE01E",image:"1f550.png",sheet_x:24,sheet_y:11,short_name:"clock1",short_names:["clock1"],category:"Symbols",sort_order:247,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-zw":{name:"Regional Indicator Symbol Letters ZW",unified:"1F1FF-1F1FC",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1ff-1f1fc.png",sheet_x:39,sheet_y:2,short_name:"flag-zw",short_names:["flag-zw"],category:"Flags",sort_order:247,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-ac":{name:"Regional Indicator Symbol Letters AC",unified:"1F1E6-1F1E8",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e6-1f1e8.png",sheet_x:32,sheet_y:33,short_name:"flag-ac",short_names:["flag-ac"],category:"Flags",sort_order:248,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},clock2:{name:"Clock Face Two Oclock",unified:"1F551",variations:[],docomo:"E6BA",au:"E594",softbank:"E025",google:"FE01F",image:"1f551.png",sheet_x:24,sheet_y:12,short_name:"clock2",short_names:["clock2"],category:"Symbols",sort_order:248,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-bv":{name:"Regional Indicator Symbol Letters BV",unified:"1F1E7-1F1FB",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e7-1f1fb.png",sheet_x:33,sheet_y:26,short_name:"flag-bv",short_names:["flag-bv"],category:"Flags",sort_order:249,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},clock3:{name:"Clock Face Three Oclock",unified:"1F552",variations:[],docomo:"E6BA",au:"E594",softbank:"E026",google:"FE020",image:"1f552.png",sheet_x:24,sheet_y:13,short_name:"clock3",short_names:["clock3"],category:"Symbols",sort_order:249,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-cp":{name:"Regional Indicator Symbol Letters CP",unified:"1F1E8-1F1F5",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e8-1f1f5.png",sheet_x:34,sheet_y:1,short_name:"flag-cp",short_names:["flag-cp"],category:"Flags",sort_order:250,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},clock4:{name:"Clock Face Four Oclock",unified:"1F553",variations:[],docomo:"E6BA",au:"E594",softbank:"E027",google:"FE021",image:"1f553.png",sheet_x:24,sheet_y:14,short_name:"clock4",short_names:["clock4"],category:"Symbols",sort_order:250,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},clock5:{name:"Clock Face Five Oclock",unified:"1F554",variations:[],docomo:"E6BA",au:"E594",softbank:"E028",google:"FE022",image:"1f554.png",sheet_x:24,sheet_y:15,short_name:"clock5",short_names:["clock5"],category:"Symbols",sort_order:251,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-dg":{name:"Regional Indicator Symbol Letters DG",unified:"1F1E9-1F1EC",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1e9-1f1ec.png",sheet_x:34,sheet_y:10,short_name:"flag-dg",short_names:["flag-dg"],category:"Flags",sort_order:251,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},clock6:{name:"Clock Face Six Oclock",unified:"1F555",variations:[],docomo:"E6BA",au:"E594",softbank:"E029",google:"FE023",image:"1f555.png",sheet_x:24,sheet_y:16,short_name:"clock6",short_names:["clock6"],category:"Symbols",sort_order:252,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-ea":{name:"Regional Indicator Symbol Letters EA",unified:"1F1EA-1F1E6",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1ea-1f1e6.png",sheet_x:34,sheet_y:16,short_name:"flag-ea",short_names:["flag-ea"],category:"Flags",sort_order:252,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-hm":{name:"Regional Indicator Symbol Letters HM",unified:"1F1ED-1F1F2",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1ed-1f1f2.png",sheet_x:35,sheet_y:10,short_name:"flag-hm",short_names:["flag-hm"],category:"Flags",sort_order:253,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},clock7:{name:"Clock Face Seven Oclock",unified:"1F556",variations:[],docomo:"E6BA",au:"E594",softbank:"E02A",google:"FE024",image:"1f556.png",sheet_x:24,sheet_y:17,short_name:"clock7",short_names:["clock7"],category:"Symbols",sort_order:253,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-mf":{name:"Regional Indicator Symbol Letters MF",unified:"1F1F2-1F1EB",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f2-1f1eb.png",sheet_x:36,sheet_y:15,short_name:"flag-mf",short_names:["flag-mf"],category:"Flags",sort_order:254,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},clock8:{name:"Clock Face Eight Oclock",unified:"1F557",variations:[],docomo:"E6BA",au:"E594",softbank:"E02B",google:"FE025",image:"1f557.png",sheet_x:24,sheet_y:18,short_name:"clock8",short_names:["clock8"],category:"Symbols",sort_order:254,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},clock9:{name:"Clock Face Nine Oclock",unified:"1F558",variations:[],docomo:"E6BA",au:"E594",softbank:"E02C",google:"FE026",image:"1f558.png",sheet_x:24,sheet_y:19,short_name:"clock9",short_names:["clock9"],category:"Symbols",sort_order:255,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-sj":{name:"Regional Indicator Symbol Letters SJ",unified:"1F1F8-1F1EF",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f8-1f1ef.png",sheet_x:37,sheet_y:34,short_name:"flag-sj",short_names:["flag-sj"],category:"Flags",sort_order:255,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-ta":{name:"Regional Indicator Symbol Letters TA",unified:"1F1F9-1F1E6",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1f9-1f1e6.png",sheet_x:38,sheet_y:6,short_name:"flag-ta",short_names:["flag-ta"],category:"Flags",sort_order:256,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},clock10:{name:"Clock Face Ten Oclock",unified:"1F559",variations:[],docomo:"E6BA",au:"E594",softbank:"E02D",google:"FE027",image:"1f559.png",sheet_x:24,sheet_y:20,short_name:"clock10",short_names:["clock10"],category:"Symbols",sort_order:256,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"flag-um":{name:"Regional Indicator Symbol Letters UM",unified:"1F1FA-1F1F2",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f1fa-1f1f2.png",sheet_x:38,sheet_y:25,short_name:"flag-um",short_names:["flag-um"],category:"Flags",sort_order:257,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},clock11:{name:"Clock Face Eleven Oclock",unified:"1F55A",variations:[],docomo:"E6BA",au:"E594",softbank:"E02E",google:"FE028",image:"1f55a.png",sheet_x:24,sheet_y:21,short_name:"clock11",short_names:["clock11"],category:"Symbols",sort_order:257,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},clock12:{name:"Clock Face Twelve Oclock",unified:"1F55B",variations:[],docomo:"E6BA",au:"E594",softbank:"E02F",google:"FE029",image:"1f55b.png",sheet_x:24,sheet_y:22,short_name:"clock12",short_names:["clock12"],category:"Symbols",sort_order:258,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},clock130:{name:"Clock Face One-Thirty",unified:"1F55C",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f55c.png",sheet_x:24,sheet_y:23,short_name:"clock130",short_names:["clock130"],category:"Symbols",sort_order:259,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},clock230:{name:"Clock Face Two-Thirty",unified:"1F55D",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f55d.png",sheet_x:24,sheet_y:24,short_name:"clock230",short_names:["clock230"],category:"Symbols",sort_order:260,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},clock330:{name:"Clock Face Three-Thirty",unified:"1F55E",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f55e.png",sheet_x:24,sheet_y:25,short_name:"clock330",short_names:["clock330"],category:"Symbols",sort_order:261,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},clock430:{name:"Clock Face Four-Thirty",unified:"1F55F",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f55f.png",sheet_x:24,sheet_y:26,short_name:"clock430",short_names:["clock430"],category:"Symbols",sort_order:262,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},clock530:{name:"Clock Face Five-Thirty",unified:"1F560",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f560.png",sheet_x:24,sheet_y:27,short_name:"clock530",short_names:["clock530"],category:"Symbols",sort_order:263,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},clock630:{name:"Clock Face Six-Thirty",unified:"1F561",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f561.png",sheet_x:24,sheet_y:28,short_name:"clock630",short_names:["clock630"],category:"Symbols",sort_order:264,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},clock730:{name:"Clock Face Seven-Thirty",unified:"1F562",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f562.png",sheet_x:24,sheet_y:29,short_name:"clock730",short_names:["clock730"],category:"Symbols",sort_order:265,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},clock830:{name:"Clock Face Eight-Thirty",unified:"1F563",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f563.png",sheet_x:24,sheet_y:30,short_name:"clock830",short_names:["clock830"],category:"Symbols",sort_order:266,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},clock930:{name:"Clock Face Nine-Thirty",unified:"1F564",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f564.png",sheet_x:24,sheet_y:31,short_name:"clock930",short_names:["clock930"],category:"Symbols",sort_order:267,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},clock1030:{name:"Clock Face Ten-Thirty",unified:"1F565",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f565.png",sheet_x:24,sheet_y:32,short_name:"clock1030",short_names:["clock1030"],category:"Symbols",sort_order:268,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},clock1130:{name:"Clock Face Eleven-Thirty",unified:"1F566",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f566.png",sheet_x:24,sheet_y:33,short_name:"clock1130",short_names:["clock1130"],category:"Symbols",sort_order:269,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},clock1230:{name:"Clock Face Twelve-Thirty",unified:"1F567",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f567.png",sheet_x:24,sheet_y:34,short_name:"clock1230",short_names:["clock1230"],category:"Symbols",sort_order:270,has_img_apple:!0,has_img_google:!0,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]}},skins:{"skin-tone-2":{name:"Emoji Modifier Fitzpatrick Type-1-2",unified:"1F3FB",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f3fb.png",sheet_x:12,sheet_y:0,short_name:"skin-tone-2",short_names:["skin-tone-2"],category:"Skin Tones",sort_order:1,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"skin-tone-3":{name:"Emoji Modifier Fitzpatrick Type-3",unified:"1F3FC",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f3fc.png",sheet_x:12,sheet_y:1,short_name:"skin-tone-3",short_names:["skin-tone-3"],category:"Skin Tones",sort_order:2,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"skin-tone-4":{name:"Emoji Modifier Fitzpatrick Type-4",unified:"1F3FD",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f3fd.png",sheet_x:12,sheet_y:2,short_name:"skin-tone-4",short_names:["skin-tone-4"],category:"Skin Tones",sort_order:3,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"skin-tone-5":{name:"Emoji Modifier Fitzpatrick Type-5",unified:"1F3FE",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f3fe.png",sheet_x:12,sheet_y:3,short_name:"skin-tone-5",short_names:["skin-tone-5"],category:"Skin Tones",sort_order:4,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]},"skin-tone-6":{name:"Emoji Modifier Fitzpatrick Type-6",unified:"1F3FF",variations:[],docomo:null,au:null,softbank:null,google:null,image:"1f3ff.png",sheet_x:12,sheet_y:4,short_name:"skin-tone-6",short_names:["skin-tone-6"],category:"Skin Tones",sort_order:5,has_img_apple:!0,has_img_google:!1,has_img_twitter:!0,has_img_emojione:!0,emoticons:[]}}}},function(e,o,a){"use strict";function i(e){var o=e.id;_[o]||(_[o]=0),_[o]+=1,s.store.set("last",o),s.store.set("frequently",_)}function t(e){var o=Object.keys(_).sort(function(e,o){return _[e]-_[o]}).reverse(),a=o.slice(0,e),i=s.store.get("last");return i&&-1==a.indexOf(i)&&(a.pop(),a.push(i)),a}Object.defineProperty(o,"__esModule",{value:!0});var s=a(16),_=s.store.get("frequently")||{};o["default"]={add:i,get:t}},function(e,o,a){"use strict";function i(e){return e&&e.__esModule?e:{"default":e}}function t(e){if(Array.isArray(e)){for(var o=0,a=Array(e.length);o