diff --git a/babel.config.json b/babel.config.json new file mode 100644 index 0000000..ff3059c --- /dev/null +++ b/babel.config.json @@ -0,0 +1,3 @@ +{ + "presets": ["@babel/preset-env"] +} \ No newline at end of file diff --git a/package.json b/package.json index adbf508..e1077da 100644 --- a/package.json +++ b/package.json @@ -1,10 +1,11 @@ { "name": "react-native-emoji-input", - "version": "1.1.9", + "version": "1.2.0", "description": "A React Native emoji keyboard component", "main": "index.js", "scripts": { - "test": "echo \"Error: no test specified\" && exit 1" + "test": "echo \"Error: no test specified\" && exit 1", + "compile": "npx babel-node scripts/compile.js" }, "repository": { "type": "git", @@ -31,8 +32,8 @@ }, "homepage": "https://github.com/sskhandek/react-native-emoji-input#readme", "dependencies": { - "emoji-datasource": "^4.0.4", - "emoji-datasource-apple": "^4.0.4", + "emoji-datasource": "^15.0.1", + "emoji-datasource-apple": "^15.0.1", "eslint-plugin-react": "^7.8.2", "fuse.js": "^3.4.4", "lodash": "^4.17.5", @@ -44,5 +45,10 @@ }, "jest": { "preset": "react-native" + }, + "devDependencies": { + "@babel/core": "^7.22.9", + "@babel/node": "^7.22.6", + "@babel/preset-env": "^7.22.9" } -} \ No newline at end of file +} diff --git a/src/Emoji.js b/src/Emoji.js index d3c4bd4..a4710c1 100644 --- a/src/Emoji.js +++ b/src/Emoji.js @@ -1,139 +1,139 @@ -import React from 'react'; -import PropTypes from 'prop-types'; -import { View, Text, TouchableOpacity, StyleSheet, Image, Platform } from 'react-native'; -import _ from 'lodash'; +import React from "react"; +import PropTypes from "prop-types"; +import { + View, + Text, + TouchableOpacity, + StyleSheet, + Image, + Platform, +} from "react-native"; +import _ from "lodash"; -const EMOJI_DATASOURCE_VERSION = '4.0.4'; +const EMOJI_DATASOURCE_VERSION = "15.0.1"; class Emoji extends React.PureComponent { - static propTypes = { - data: PropTypes.shape({ - char: PropTypes.char, - unified: PropTypes.char - }), - onPress: PropTypes.func, - onLongPress: PropTypes.func, - native: PropTypes.bool, - size: PropTypes.number, - style: PropTypes.object, - labelStyle: PropTypes.object, - selected: PropTypes.bool, - selectedBorderWidth: PropTypes.number, - }; + static propTypes = { + data: PropTypes.shape({ + char: PropTypes.char, + unified: PropTypes.char, + }), + onPress: PropTypes.func, + onLongPress: PropTypes.func, + native: PropTypes.bool, + size: PropTypes.number, + style: PropTypes.object, + labelStyle: PropTypes.object, + selected: PropTypes.bool, + selectedBorderWidth: PropTypes.number, + }; - static defaultProps = { - native: true - }; + static defaultProps = { + native: true, + }; - _getImage = data => { - let localImage = _.get(data, 'localImage'); - if (localImage) return localImage; + _getImage = (data) => { + let localImage = _.get(data, "localImage"); + if (localImage) return localImage; - let image = _.get(data, 'lib.image'); - let imageSource = localImage || { - uri: `https://unpkg.com/emoji-datasource-apple@${EMOJI_DATASOURCE_VERSION}/img/apple/64/${image}` - }; - return imageSource; + let image = _.get(data, "lib.image"); + let imageSource = localImage || { + uri: `https://unpkg.com/emoji-datasource-apple@${EMOJI_DATASOURCE_VERSION}/img/apple/64/${image}`, }; + return imageSource; + }; - render() { - let imageComponent = null; - - const { - native, - style, - labelStyle, - data, - onPress, - onLongPress, - selected - } = this.props; + render() { + let imageComponent = null; - if (!native) { - const emojiImageFile = this._getImage(data); + const { native, style, labelStyle, data, onPress, onLongPress, selected } = + this.props; - const imageStyle = { - width: this.props.size, - height: this.props.size - }; + if (!native) { + const emojiImageFile = this._getImage(data); - imageComponent = ( - - ); - } else { - if (!data.char) { - data.char = data.unified.replace(/(^|-)([a-z0-9]+)/gi, (s, b, cp) => - String.fromCodePoint(parseInt(cp, 16)) - ); - } - } + const imageStyle = { + width: this.props.size, + height: this.props.size, + }; - const emojiComponent = ( - - {native ? ( - - {data.char} - - ) : ( - imageComponent - )} - + imageComponent = ; + } else { + if (!data.char) { + data.char = data.unified.replace(/(^|-)([a-z0-9]+)/gi, (s, b, cp) => + String.fromCodePoint(parseInt(cp, 16)) ); - const selectedBorderWidth = this.props.selectedBorderWidth - ? 0.75 * this.props.selectedBorderWidth - : this.props.size; - return onPress || onLongPress ? ( - { - onPress && onPress(data, evt); - }} - onLongPress={evt => { - onLongPress && onLongPress(data, evt); - }} - > - {selected ? ( - - {emojiComponent} - - ) : ( - emojiComponent - )} - - ) : ( - emojiComponent - ); + } } + + const emojiComponent = ( + + {native ? ( + + {data.char} + + ) : ( + imageComponent + )} + + ); + const selectedBorderWidth = this.props.selectedBorderWidth + ? 0.75 * this.props.selectedBorderWidth + : this.props.size; + return onPress || onLongPress ? ( + { + onPress && onPress(data, evt); + }} + onLongPress={(evt) => { + onLongPress && onLongPress(data, evt); + }} + > + {selected ? ( + + {emojiComponent} + + ) : ( + emojiComponent + )} + + ) : ( + emojiComponent + ); + } } const styles = StyleSheet.create({ - emojiWrapper: { - justifyContent: 'space-around', - alignItems: 'center', - flex: 1 - }, - labelStyle: { - color: 'black', - fontWeight: 'bold' - } + emojiWrapper: { + justifyContent: "space-around", + alignItems: "center", + flex: 1, + }, + labelStyle: { + color: "black", + fontWeight: "bold", + textAlign: "center", + }, }); export default Emoji; diff --git a/src/EmojiInput.js b/src/EmojiInput.js index c4ca6e2..454c7d3 100644 --- a/src/EmojiInput.js +++ b/src/EmojiInput.js @@ -1,786 +1,758 @@ -import React from 'react'; -import PropTypes from 'prop-types'; +import React from "react"; +import PropTypes from "prop-types"; import { - View, - Text, - TextInput, - Dimensions, - TouchableOpacity, - TouchableWithoutFeedback, - AsyncStorage, - Image -} from 'react-native'; + View, + Text, + TextInput, + Dimensions, + TouchableOpacity, + TouchableWithoutFeedback, + AsyncStorage, + Image, +} from "react-native"; import { - RecyclerListView, - DataProvider, - LayoutProvider -} from 'recyclerlistview'; -import Triangle from 'react-native-triangle'; -import _ from 'lodash'; -import { - responsiveFontSize -} from 'react-native-responsive-dimensions'; -import * as Animatable from 'react-native-animatable'; + RecyclerListView, + DataProvider, + LayoutProvider, +} from "recyclerlistview"; +import Triangle from "react-native-triangle"; +import _ from "lodash"; +import { responsiveFontSize } from "react-native-responsive-dimensions"; +import * as Animatable from "react-native-animatable"; import EmojiSearchSpace from "./EmojiSearch"; -import Emoji from './Emoji'; +import Emoji from "./Emoji"; const { - category, - categoryIndexMap, - emojiLib, -} = require('./emoji-data/compiled'); + category, + categoryIndexMap, + emojiLib, +} = require("./emoji-data/compiled"); const CONTAINER_HORIZONTAL_PADDING = 5; const categoryIcon = { - fue: props => ( - - ), - people: props => ( - - ), - animals_and_nature: props => ( - - ), - food_and_drink: props => ( - - ), - activity: props => ( - - ), - travel_and_places: props => ( - - ), - objects: props => ( - - ), - symbols: props => ( - - ), - flags: props => ( - - ), + fue: (props) => ( + + ), + people: (props) => ( + + ), + animals_and_nature: (props) => ( + + ), + food_and_drink: (props) => ( + + ), + activity: (props) => ( + + ), + travel_and_places: (props) => ( + + ), + objects: (props) => ( + + ), + symbols: (props) => ( + + ), + flags: (props) => ( + + ), }; -const { width: WINDOW_WIDTH } = Dimensions.get('window'); +const { width: WINDOW_WIDTH } = Dimensions.get("window"); const ViewTypes = { - EMOJI: 0, - CATEGORY: 1 + EMOJI: 0, + CATEGORY: 1, }; // fromCodePoint polyfill if (!String.fromCodePoint) { - (function() { - var defineProperty = (function() { - // IE 8 only supports `Object.defineProperty` on DOM elements - try { - var object = {}; - var $defineProperty = Object.defineProperty; - var result = - $defineProperty(object, object, object) && $defineProperty; - } catch (error) {} - return result; - })(); - var stringFromCharCode = String.fromCharCode; - var floor = Math.floor; - var fromCodePoint = function() { - var MAX_SIZE = 0x4000; - var codeUnits = []; - var highSurrogate; - var lowSurrogate; - var index = -1; - var length = arguments.length; - if (!length) { - return ''; - } - var result = ''; - while (++index < length) { - var codePoint = Number(arguments[index]); - if ( - !isFinite(codePoint) || // `NaN`, `+Infinity`, or `-Infinity` - codePoint < 0 || // not a valid Unicode code point - codePoint > 0x10ffff || // not a valid Unicode code point - floor(codePoint) != codePoint // not an integer - ) { - throw RangeError('Invalid code point: ' + codePoint); - } - if (codePoint <= 0xffff) { - // BMP code point - codeUnits.push(codePoint); - } else { - // Astral code point; split in surrogate halves - // http://mathiasbynens.be/notes/javascript-encoding#surrogate-formulae - codePoint -= 0x10000; - highSurrogate = (codePoint >> 10) + 0xd800; - lowSurrogate = (codePoint % 0x400) + 0xdc00; - codeUnits.push(highSurrogate, lowSurrogate); - } - if (index + 1 == length || codeUnits.length > MAX_SIZE) { - result += stringFromCharCode.apply(null, codeUnits); - codeUnits.length = 0; - } - } - return result; - }; - if (defineProperty) { - defineProperty(String, 'fromCodePoint', { - value: fromCodePoint, - configurable: true, - writable: true - }); - } else { - String.fromCodePoint = fromCodePoint; - } + (function () { + var defineProperty = (function () { + // IE 8 only supports `Object.defineProperty` on DOM elements + try { + var object = {}; + var $defineProperty = Object.defineProperty; + var result = $defineProperty(object, object, object) && $defineProperty; + } catch (error) {} + return result; })(); -} - -class EmojiInput extends React.PureComponent { - constructor(props) { - super(props); - - if (this.props.enableFrequentlyUsedEmoji) this.getFrequentlyUsedEmoji(); - - this.emojiSize = _.floor(props.width / this.props.numColumns); - - this.emoji = []; - - this.loggingFunction = this.props.loggingFunction - ? this.props.loggingFunction - : null; - - this.verboseLoggingFunction = this.props.verboseLoggingFunction - ? this.props.verboseLoggingFunction - : false; - - let dataProvider = new DataProvider((e1, e2) => { - return e1.char !== e2.char; - }); - - this._layoutProvider = new LayoutProvider( - index => - _.has(this.emoji[index], 'categoryMarker') - ? ViewTypes.CATEGORY - : ViewTypes.EMOJI, - (type, dim) => { - switch (type) { - case ViewTypes.CATEGORY: - dim.height = this.props.categoryLabelHeight; - dim.width = props.width; - break; - case ViewTypes.EMOJI: - dim.height = dim.width = - this.emojiSize - - (CONTAINER_HORIZONTAL_PADDING * 2) / this.props.numColumns; - break; - } - } - ); - - this._rowRenderer = this._rowRenderer.bind(this); - this._isMounted = false; - - this.state = { - dataProvider: dataProvider.cloneWithRows(this.emoji), - currentCategoryKey: this.props.enableFrequentlyUsedEmoji - ? category[0].key - : category[1].key, - searchQuery: '', - emptySearchResult: false, - frequentlyUsedEmoji: {}, - previousLongestQuery: '', - selectedEmoji: null, - offsetY: 0 - }; - } - - componentDidMount() { - this._isMounted = true; - this.search(); - } - - componentDidUpdate(prevProps, prevStates) { - if (this.props.resetSearch) { - this.textInput.clear(); - this.setState({ - searchQuery: '' - }); - } + var stringFromCharCode = String.fromCharCode; + var floor = Math.floor; + var fromCodePoint = function () { + var MAX_SIZE = 0x4000; + var codeUnits = []; + var highSurrogate; + var lowSurrogate; + var index = -1; + var length = arguments.length; + if (!length) { + return ""; + } + var result = ""; + while (++index < length) { + var codePoint = Number(arguments[index]); if ( - prevStates.searchQuery !== this.state.searchQuery || - prevStates.frequentlyUsedEmoji !== this.state.frequentlyUsedEmoji + !isFinite(codePoint) || // `NaN`, `+Infinity`, or `-Infinity` + codePoint < 0 || // not a valid Unicode code point + codePoint > 0x10ffff || // not a valid Unicode code point + floor(codePoint) != codePoint // not an integer ) { - this.search(); + throw RangeError("Invalid code point: " + codePoint); } - } - - componentWillUnmount() { - this._isMounted = false; - } - - getFrequentlyUsedEmoji = () => { - AsyncStorage.getItem('@EmojiInput:frequentlyUsedEmoji').then( - frequentlyUsedEmoji => { - if (frequentlyUsedEmoji !== null) { - frequentlyUsedEmoji = JSON.parse(frequentlyUsedEmoji); - this.setState({ frequentlyUsedEmoji }); - } - } - ); - }; - - addFrequentlyUsedEmoji = data => { - let emoji = data.key; - let { frequentlyUsedEmoji } = this.state; - if (_(frequentlyUsedEmoji).has(emoji)) { - frequentlyUsedEmoji[emoji]++; + if (codePoint <= 0xffff) { + // BMP code point + codeUnits.push(codePoint); } else { - frequentlyUsedEmoji[emoji] = 1; + // Astral code point; split in surrogate halves + // http://mathiasbynens.be/notes/javascript-encoding#surrogate-formulae + codePoint -= 0x10000; + highSurrogate = (codePoint >> 10) + 0xd800; + lowSurrogate = (codePoint % 0x400) + 0xdc00; + codeUnits.push(highSurrogate, lowSurrogate); } - this.setState({ frequentlyUsedEmoji }); - AsyncStorage.setItem( - '@EmojiInput:frequentlyUsedEmoji', - JSON.stringify(frequentlyUsedEmoji) - ); - }; - - clearFrequentlyUsedEmoji = () => { - AsyncStorage.removeItem('@EmojiInput:frequentlyUsedEmoji'); - }; - - search = () => { - let query = this.state.searchQuery; - this.setState({ emptySearchResult: false }); - - if (query) { - let result = _(EmojiSearchSpace.search(query).slice(0,50)) // Only show top 50 relevant results - .map(({ emoji_key }) => emojiLib[emoji_key]) // speeds up response time - .value(); - - if (!result.length) { - this.setState({ emptySearchResult: true }); - if (this.loggingFunction) { - if (this.verboseLoggingFunction) { - this.loggingFunction(query, 'emptySearchResult'); - } else { - this.loggingFunction(query); - } - } - } - this.emojiRenderer(result); - setTimeout(() => { - if (this._isMounted) { - this._recyclerListView._pendingScrollToOffset = null; - this._recyclerListView.scrollToTop(false); - } - }, 15); - } else { - let fue = _(this.state.frequentlyUsedEmoji) - .toPairs() - .sortBy([1]) - .reverse() - .map(([key]) => key) - .value(); - fue = _(this.props.defaultFrequentlyUsedEmoji) - .concat(fue) - .take(this.props.numFrequentlyUsedEmoji) - .value(); - let _emoji = _(emojiLib) - .pick(fue) - .mapKeys((v, k) => `FUE_${k}`) - .mapValues(v => ({ ...v, category: 'fue' })) - .extend(emojiLib) - .value(); - this.emojiRenderer(_emoji); + if (index + 1 == length || codeUnits.length > MAX_SIZE) { + result += stringFromCharCode.apply(null, codeUnits); + codeUnits.length = 0; } + } + return result; }; + if (defineProperty) { + defineProperty(String, "fromCodePoint", { + value: fromCodePoint, + configurable: true, + writable: true, + }); + } else { + String.fromCodePoint = fromCodePoint; + } + })(); +} - emojiRenderer = emojis => { - let dataProvider = new DataProvider((e1, e2) => { - return e1.char !== e2.char; - }); - - this.emoji = []; - let categoryIndexMap = _(category) - .map((v, idx) => ({ ...v, idx })) - .keyBy('key') - .value(); - - let tempEmoji = _ - .range(_.size(category)) - .map((v, k) => [ - { char: category[k].key, categoryMarker: true, ...category[k] } - ]); - _(emojis) - .values() - .filter(emoji => _.every(this.props.filterFunctions, fn => fn(emoji))) - .each(e => { - if (_.has(categoryIndexMap, e.category)) { - tempEmoji[categoryIndexMap[e.category].idx].push(e); - } - }); - let lastCount = 0; - let s = 0; - let rows = 0; - const size = this.emojiSize - (CONTAINER_HORIZONTAL_PADDING / this.props.numColumns); - _(tempEmoji).each(v => { - let idx = categoryIndexMap[v[0].key].idx; - let c = category[idx]; - c.idx = s; - s += lastCount; - rows += _.ceil(lastCount / this.props.numColumns); - const labelOffset = lastCount < 1 ? 0 : this.props.categoryLabelHeight; - c.y = rows * size + labelOffset; - lastCount = v.length - 1; // -1 because one of the items in the array is the category marker itself - }); - this.emoji = _(tempEmoji) - .filter(c => c.length > 1) - .flatten(tempEmoji) - .value(); - if ( - !this.props.showCategoryTitleInSearchResults && - this.state.searchQuery - ) { - this.emoji = _.filter(this.emoji, c => !c.categoryMarker); - } +class EmojiInput extends React.PureComponent { + constructor(props) { + super(props); - _.reduce( - this.emoji, - ({ x, y, i, previousDimension }, emoji) => { - const layoutType = this._layoutProvider.getLayoutTypeForIndex( - i - ); - const dimension = { width: 0, height: 0 }; - this._layoutProvider._setLayoutForType( - layoutType, - dimension, - i - ); + if (this.props.enableFrequentlyUsedEmoji) this.getFrequentlyUsedEmoji(); - x = x + dimension.width; - if (x > this.props.width) { - x = dimension.width; - y = y + previousDimension.height; - } + this.emojiSize = _.floor(props.width / this.props.numColumns); - emoji.y = y; - emoji.x = x - dimension.width; + this.emoji = []; - return { x, y, i: i + 1, previousDimension: dimension }; - }, - { x: 0, y: 0, i: 0, previousDimension: null } - ); - this.setState({ - dataProvider: dataProvider.cloneWithRows(this.emoji) - }); - }; + this.loggingFunction = this.props.loggingFunction + ? this.props.loggingFunction + : null; + + this.verboseLoggingFunction = this.props.verboseLoggingFunction + ? this.props.verboseLoggingFunction + : false; - _rowRenderer(type, data) { - const { selectedEmoji, emojiFontSize, categoryLabelTextStyle } = this.props; + let dataProvider = new DataProvider((e1, e2) => { + return e1.char !== e2.char; + }); + this._layoutProvider = new LayoutProvider( + (index) => + _.has(this.emoji[index], "categoryMarker") + ? ViewTypes.CATEGORY + : ViewTypes.EMOJI, + (type, dim) => { switch (type) { - case ViewTypes.CATEGORY: - return ( - - {data.title} - - ); - case ViewTypes.EMOJI: - return ( - - ); + case ViewTypes.CATEGORY: + dim.height = this.props.categoryLabelHeight; + dim.width = props.width; + break; + case ViewTypes.EMOJI: + dim.height = dim.width = + this.emojiSize - + (CONTAINER_HORIZONTAL_PADDING * 2) / this.props.numColumns; + break; } - } - - handleCategoryPress = key => { - this.props.onCategoryPress(key); - this._recyclerListView.scrollToOffset( - 0, - category[categoryIndexMap[key].idx].y + 1, - false - ); - }; - - handleScroll = (rawEvent, offsetX, offsetY) => { - let idx = _(category).findLastIndex(c => c.y < offsetY); - if (idx < 0) idx = 0; - this.setState({ - currentCategoryKey: category[idx].key, - selectedEmoji: null, - offsetY - }); + } + ); + + this._rowRenderer = this._rowRenderer.bind(this); + this._isMounted = false; + + this.state = { + dataProvider: dataProvider.cloneWithRows(this.emoji), + currentCategoryKey: this.props.enableFrequentlyUsedEmoji + ? category[0].key + : category[1].key, + searchQuery: "", + emptySearchResult: false, + frequentlyUsedEmoji: {}, + previousLongestQuery: "", + selectedEmoji: null, + offsetY: 0, }; + } + + componentDidMount() { + this._isMounted = true; + this.search(); + } + + componentDidUpdate(prevProps, prevStates) { + if (this.props.resetSearch) { + this.textInput.clear(); + this.setState({ + searchQuery: "", + }); + } + if ( + prevStates.searchQuery !== this.state.searchQuery || + prevStates.frequentlyUsedEmoji !== this.state.frequentlyUsedEmoji + ) { + this.search(); + } + } + + componentWillUnmount() { + this._isMounted = false; + } + + getFrequentlyUsedEmoji = () => { + AsyncStorage.getItem("@EmojiInput:frequentlyUsedEmoji").then( + (frequentlyUsedEmoji) => { + if (frequentlyUsedEmoji !== null) { + frequentlyUsedEmoji = JSON.parse(frequentlyUsedEmoji); + this.setState({ frequentlyUsedEmoji }); + } + } + ); + }; + + addFrequentlyUsedEmoji = (data) => { + let emoji = data.key; + let { frequentlyUsedEmoji } = this.state; + if (_(frequentlyUsedEmoji).has(emoji)) { + frequentlyUsedEmoji[emoji]++; + } else { + frequentlyUsedEmoji[emoji] = 1; + } + this.setState({ frequentlyUsedEmoji }); + AsyncStorage.setItem( + "@EmojiInput:frequentlyUsedEmoji", + JSON.stringify(frequentlyUsedEmoji) + ); + }; + + clearFrequentlyUsedEmoji = () => { + AsyncStorage.removeItem("@EmojiInput:frequentlyUsedEmoji"); + }; + + search = () => { + let query = this.state.searchQuery; + this.setState({ emptySearchResult: false }); + + if (query) { + let result = _(EmojiSearchSpace.search(query).slice(0, 50)) // Only show top 50 relevant results + .map(({ emoji_key }) => emojiLib[emoji_key]) // speeds up response time + .value(); + + if (!result.length) { + this.setState({ emptySearchResult: true }); + if (this.loggingFunction) { + if (this.verboseLoggingFunction) { + this.loggingFunction(query, "emptySearchResult"); + } else { + this.loggingFunction(query); + } + } + } + this.emojiRenderer(result); + setTimeout(() => { + if (this._isMounted) { + this._recyclerListView._pendingScrollToOffset = null; + this._recyclerListView.scrollToTop(false); + } + }, 15); + } else { + let fue = _(this.state.frequentlyUsedEmoji) + .toPairs() + .sortBy([1]) + .reverse() + .map(([key]) => key) + .value(); + // fue = _(this.props.defaultFrequentlyUsedEmoji) + // .concat(fue) + // .take(this.props.numFrequentlyUsedEmoji) + // .value(); + let _emoji = _(emojiLib) + .pick(fue) + .mapKeys((v, k) => `FUE_${k}`) + .mapValues((v) => ({ ...v, category: "fue" })) + .extend(emojiLib) + .value(); + this.emojiRenderer(_emoji); + } + }; + + emojiRenderer = (emojis) => { + let dataProvider = new DataProvider((e1, e2) => { + return e1.char !== e2.char; + }); + + this.emoji = []; + let categoryIndexMap = _(category) + .map((v, idx) => ({ ...v, idx })) + .keyBy("key") + .value(); + + let tempEmoji = _.range(_.size(category)).map((v, k) => [ + { char: category[k].key, categoryMarker: true, ...category[k] }, + ]); + _(emojis) + .values() + .filter((emoji) => _.every(this.props.filterFunctions, (fn) => fn(emoji))) + .each((e) => { + if (_.has(categoryIndexMap, e.category)) { + tempEmoji[categoryIndexMap[e.category].idx].push(e); + } + }); + let lastCount = 0; + let s = 0; + let rows = 0; + const size = + this.emojiSize - CONTAINER_HORIZONTAL_PADDING / this.props.numColumns; + _(tempEmoji).each((v) => { + let idx = categoryIndexMap[v[0].key].idx; + let c = category[idx]; + c.idx = s; + s += lastCount; + rows += _.ceil(lastCount / this.props.numColumns); + const labelOffset = lastCount < 1 ? 0 : this.props.categoryLabelHeight; + c.y = rows * size + labelOffset; + lastCount = v.length - 1; // -1 because one of the items in the array is the category marker itself + }); + this.emoji = _(tempEmoji) + .filter((c) => c.length > 1) + .flatten(tempEmoji) + .value(); + if ( + !this.props.showCategoryTitleInSearchResults && + this.state.searchQuery + ) { + this.emoji = _.filter(this.emoji, (c) => !c.categoryMarker); + } - handleEmojiPress = data => { - this.props.onEmojiSelected(data); - if (_.has(data, 'derivedFrom')) { - data = data.derivedFrom; + _.reduce( + this.emoji, + ({ x, y, i, previousDimension }, emoji) => { + const layoutType = this._layoutProvider.getLayoutTypeForIndex(i); + const dimension = { width: 0, height: 0 }; + this._layoutProvider._setLayoutForType(layoutType, dimension, i); + + x = x + dimension.width; + if (x > this.props.width) { + x = dimension.width; + y = y + previousDimension.height; } - if (this.props.enableFrequentlyUsedEmoji) - this.addFrequentlyUsedEmoji(data); - this.hideSkinSelector(); - }; - handleEmojiLongPress = data => { - // disable long press for now - // if (!_.has(data, ['lib', 'skin_variations'])) return; - // this.setState({ selectedEmoji: data }); - }; + emoji.y = y; + emoji.x = x - dimension.width; - hideSkinSelector = () => { - this.setState({ selectedEmoji: null }); - }; + return { x, y, i: i + 1, previousDimension: dimension }; + }, + { x: 0, y: 0, i: 0, previousDimension: null } + ); + this.setState({ + dataProvider: dataProvider.cloneWithRows(this.emoji), + }); + }; - render() { - const { selectedEmoji, offsetY } = this.state; - const { enableSearch, width, renderAheadOffset } = this.props; + _rowRenderer(type, data) { + const { selectedEmoji, emojiFontSize, categoryLabelTextStyle } = this.props; + + switch (type) { + case ViewTypes.CATEGORY: + return ( + + {data.title} + + ); + case ViewTypes.EMOJI: return ( + + ); + } + } + + handleCategoryPress = (key) => { + this.props.onCategoryPress(key); + this._recyclerListView.scrollToOffset( + 0, + category[categoryIndexMap[key].idx].y + 1, + false + ); + }; + + handleScroll = (rawEvent, offsetX, offsetY) => { + let idx = _(category).findLastIndex((c) => c.y < offsetY); + if (idx < 0) idx = 0; + this.setState({ + currentCategoryKey: category[idx].key, + selectedEmoji: null, + offsetY, + }); + }; + + handleEmojiPress = (data) => { + this.props.onEmojiSelected(data); + if (_.has(data, "derivedFrom")) { + data = data.derivedFrom; + } + if (this.props.enableFrequentlyUsedEmoji) this.addFrequentlyUsedEmoji(data); + this.hideSkinSelector(); + }; + + handleEmojiLongPress = (data) => { + // disable long press for now + // if (!_.has(data, ['lib', 'skin_variations'])) return; + // this.setState({ selectedEmoji: data }); + }; + + hideSkinSelector = () => { + this.setState({ selectedEmoji: null }); + }; + + render() { + const { selectedEmoji, offsetY } = this.state; + const { enableSearch, width, renderAheadOffset } = this.props; + return ( + + {enableSearch && ( + { + this.textInput = input; + }} + placeholderTextColor={"#A0A0A2"} + style={{ + backgroundColor: "#FFFFFF", + fontSize: responsiveFontSize(2), + padding: 10, + paddingLeft: 15, + borderRadius: 7.5, + margin: 10, + color: "#727171", // dark grey + }} + returnKeyType={"search"} + clearButtonMode={"always"} + placeholder={"Search emoji"} + autoCorrect={true} + onChangeText={(text) => { + this.setState({ + searchQuery: text, + }); + if (text.length) { + if (text.length > this.state.previousLongestQuery.length) { + this.setState({ + previousLongestQuery: text, + }); + } + } else { + if (this.loggingFunction) { + if (this.verboseLoggingFunction) { + this.loggingFunction( + this.state.previousLongestQuery, + "previousLongestQuery" + ); + } else { + this.loggingFunction(this.state.previousLongestQuery); + } + } + this.setState({ + previousLongestQuery: "", + }); + } + }} + /> + )} + {this.state.emptySearchResult && ( + + No search results. + + )} + + (this._recyclerListView = component)} + onScroll={this.handleScroll} + keyboardShouldPersistTaps={"always"} + /> + + {!this.state.searchQuery && this.props.showCategoryTab && ( + + + {_.drop( + category, + this.props.enableFrequentlyUsedEmoji ? 0 : 1 + ).map(({ key }) => { + const tabSelected = key === this.state.currentCategoryKey; + + return ( + this.handleCategoryPress(key)} + style={[ + styles.categoryIconContainer, + { height: this.props.categoryFontSize + 15 }, + ]} + > + + {categoryIcon[key]({ + size: this.props.categoryFontSize, + tabSelected, + })} + + {/* Active category indicator */} + {tabSelected && } + + ); + })} + + + )} + {selectedEmoji && ( + - {enableSearch && ( - { - this.textInput = input; - }} - placeholderTextColor={'#A0A0A2'} - style={{ - backgroundColor: "#FFFFFF", - fontSize: responsiveFontSize(2), - padding: 10, - paddingLeft: 15, - borderRadius: 7.5, - margin: 10, - color: "#727171" // dark grey - }} - returnKeyType={'search'} - clearButtonMode={'always'} - placeholder={'Search emoji'} - autoCorrect={true} - onChangeText={text => { - this.setState({ - searchQuery: text - }); - if (text.length) { - if ( - text.length > - this.state.previousLongestQuery.length - ) { - this.setState({ - previousLongestQuery: text - }); - } - } else { - if (this.loggingFunction) { - if (this.verboseLoggingFunction) { - this.loggingFunction( - this.state.previousLongestQuery, - 'previousLongestQuery' - ); - } else { - this.loggingFunction( - this.state.previousLongestQuery - ); - } - } - this.setState({ - previousLongestQuery: '' - }); - } + {_(_.get(selectedEmoji, ["lib", "skin_variations"])) + .map((data) => { + return ( + + - )} - {this.state.emptySearchResult && ( - - No search results. + size={this.props.emojiFontSize} + /> - )} - - (this._recyclerListView = component)} - onScroll={this.handleScroll} - keyboardShouldPersistTaps={"always"} - /> - - {!this.state.searchQuery && - this.props.showCategoryTab && ( - - - {_.drop(category, this.props.enableFrequentlyUsedEmoji ? 0 : 1).map( - ({ key }) => { - const tabSelected = key === this.state.currentCategoryKey; - - return ( - this.handleCategoryPress(key)} - style={[styles.categoryIconContainer, { height: this.props.categoryFontSize + 15 }]} - > - - {categoryIcon[key]({ - size: this.props.categoryFontSize, - tabSelected - })} - - {/* Active category indicator */} - {tabSelected && ( - - )} - - ); - } - )} - - - )} - {selectedEmoji && ( - - - {_(_.get(selectedEmoji, ['lib', 'skin_variations'])) - .map(data => { - return ( - - - - ); - }) - .value()} - - - - - - )} + ); + }) + .value()} - ); - } + + + + + )} + + ); + } } EmojiInput.defaultProps = { - keyboardBackgroundColor: '#E3E1EC', - width: WINDOW_WIDTH, - numColumns: 6, - - showCategoryTab: true, - showCategoryTitleInSearchResults: false, - categoryUnhighlightedColor: 'lightgray', - categoryHighlightColor: 'black', - enableSearch: true, - - enableFrequentlyUsedEmoji: true, - numFrequentlyUsedEmoji: 18, - defaultFrequentlyUsedEmoji: [], - - categoryLabelHeight: 20, - categoryLabelTextStyle: { - fontSize: 25, - }, - emojiFontSize: 38, - categoryFontSize: 20, - resetSearch: false, - filterFunctions: [], - renderAheadOffset: 1500 + keyboardBackgroundColor: "#E3E1EC", + width: WINDOW_WIDTH, + numColumns: 6, + + showCategoryTab: true, + showCategoryTitleInSearchResults: false, + categoryUnhighlightedColor: "lightgray", + categoryHighlightColor: "black", + enableSearch: true, + + enableFrequentlyUsedEmoji: true, + numFrequentlyUsedEmoji: 18, + defaultFrequentlyUsedEmoji: [], + + categoryLabelHeight: 20, + categoryLabelTextStyle: { + fontSize: 25, + }, + emojiFontSize: 38, + categoryFontSize: 20, + resetSearch: false, + filterFunctions: [], + renderAheadOffset: 1500, }; EmojiInput.propTypes = { - keyboardBackgroundColor: PropTypes.string, - width: PropTypes.number, - numColumns: PropTypes.number, - emojiFontSize: PropTypes.number, - - onEmojiSelected: PropTypes.func.isRequired, - onCategoryPress: PropTypes.func, - - showCategoryTab: PropTypes.bool, - showCategoryTitleInSearchResults: PropTypes.bool, - categoryFontSize: PropTypes.number, - categoryUnhighlightedColor: PropTypes.string, - categoryHighlightColor: PropTypes.string, - categorySize: PropTypes.number, - categoryLabelHeight: PropTypes.number, - enableSearch: PropTypes.bool, - categoryLabelTextStyle: PropTypes.object, - - enableFrequentlyUsedEmoji: PropTypes.bool, - numFrequentlyUsedEmoji: PropTypes.number, - defaultFrequentlyUsedEmoji: PropTypes.arrayOf(PropTypes.string), - resetSearch: PropTypes.bool, - filterFunctions: PropTypes.arrayOf(PropTypes.func), - renderAheadOffset: PropTypes.number, - selectedEmoji: PropTypes.string, + keyboardBackgroundColor: PropTypes.string, + width: PropTypes.number, + numColumns: PropTypes.number, + emojiFontSize: PropTypes.number, + + onEmojiSelected: PropTypes.func.isRequired, + onCategoryPress: PropTypes.func, + + showCategoryTab: PropTypes.bool, + showCategoryTitleInSearchResults: PropTypes.bool, + categoryFontSize: PropTypes.number, + categoryUnhighlightedColor: PropTypes.string, + categoryHighlightColor: PropTypes.string, + categorySize: PropTypes.number, + categoryLabelHeight: PropTypes.number, + enableSearch: PropTypes.bool, + categoryLabelTextStyle: PropTypes.object, + + enableFrequentlyUsedEmoji: PropTypes.bool, + numFrequentlyUsedEmoji: PropTypes.number, + defaultFrequentlyUsedEmoji: PropTypes.arrayOf(PropTypes.string), + resetSearch: PropTypes.bool, + filterFunctions: PropTypes.arrayOf(PropTypes.func), + renderAheadOffset: PropTypes.number, + selectedEmoji: PropTypes.string, }; const styles = { - cellContainer: { - justifyContent: 'space-around', - alignItems: 'center', - flex: 1 - }, - footerContainer: { - width: '100%', - backgroundColor: '#fff', - flexDirection: 'row' - }, - emptySearchResultContainer: { - flex: 1, - alignItems: 'center', - padding: 20 - }, - emojiText: { - color: 'black', - fontWeight: 'bold' - }, - categoryText: { - color: 'black', - fontWeight: 'bold', - paddingTop: 8, - paddingBottom: 2, - paddingLeft: 10 - }, - categoryIconContainer: { - flex: 1, - alignItems: 'center', - justifyContent: 'space-around', - paddingTop: 4, - paddingBottom: 8, - }, - skinSelectorContainer: { - width: '100%', - flex: 1, - flexDirection: 'column', - justifyContent: 'flex-start', - position: 'absolute' - }, - skinSelector: { - width: '100%', - justifyContent: 'space-around', - alignItems: 'center', - flexDirection: 'row', - backgroundColor: '#fff' - }, - skinSelectorTriangleContainer: { - height: 20 - }, - skinEmoji: { - flex: 1 - }, - categoryTabEmoji: { - color: "#000000", // Fixes fade emoji on Android - }, - tabIndicator:{ - width: 5, - height: 5, - borderRadius: 2.5, - bottom: 3.5, - position: "absolute", - backgroundColor: "#00AAE5", - }, - recyclerListView: { - paddingHorizontal: CONTAINER_HORIZONTAL_PADDING, - - // Fix RecyclerListView error - minWidth: 1, - minHeight: 1, - flex: 1 - } + cellContainer: { + justifyContent: "space-around", + alignItems: "center", + flex: 1, + }, + footerContainer: { + width: "100%", + backgroundColor: "#fff", + flexDirection: "row", + }, + emptySearchResultContainer: { + flex: 1, + alignItems: "center", + padding: 20, + }, + emojiText: { + color: "black", + fontWeight: "bold", + }, + categoryText: { + color: "black", + fontWeight: "bold", + paddingTop: 8, + paddingBottom: 2, + paddingLeft: 10, + }, + categoryIconContainer: { + flex: 1, + alignItems: "center", + justifyContent: "space-around", + paddingTop: 4, + paddingBottom: 8, + }, + skinSelectorContainer: { + width: "100%", + flex: 1, + flexDirection: "column", + justifyContent: "flex-start", + position: "absolute", + }, + skinSelector: { + width: "100%", + justifyContent: "space-around", + alignItems: "center", + flexDirection: "row", + backgroundColor: "#fff", + }, + skinSelectorTriangleContainer: { + height: 20, + }, + skinEmoji: { + flex: 1, + }, + categoryTabEmoji: { + color: "#000000", // Fixes fade emoji on Android + }, + tabIndicator: { + width: 5, + height: 5, + borderRadius: 2.5, + bottom: 3.5, + position: "absolute", + backgroundColor: "#00AAE5", + }, + recyclerListView: { + paddingHorizontal: CONTAINER_HORIZONTAL_PADDING, + + // Fix RecyclerListView error + minWidth: 1, + minHeight: 1, + flex: 1, + }, }; export default EmojiInput; diff --git a/src/EmojiSearch.js b/src/EmojiSearch.js index 86f7143..efd3263 100644 --- a/src/EmojiSearch.js +++ b/src/EmojiSearch.js @@ -2,15 +2,6 @@ import Fuse from "fuse.js"; const { emojiArray } = require("./emoji-data/compiled"); -const emojiSynonyms = require("./emoji-data/emojiSynonyms"); - -// Extend keywords using synonym JSON file -for (let i = 0; i < emojiArray.length; i++) { - emojiArray[i]["keywords"] = emojiArray[i]["keywords"].concat( - emojiSynonyms[i]["keywords"] - ); -} - const fuseOptions = { shouldSort: true, threshold: 0.0, // threshold of 0.0 is perfect match and 1.0 is any match diff --git a/src/emoji-data/compiled.js b/src/emoji-data/compiled.js index c9fcf19..fef0b70 100644 --- a/src/emoji-data/compiled.js +++ b/src/emoji-data/compiled.js @@ -1,65380 +1,91253 @@ module.exports = { - "category": [{ - "key": "fue", - "title": "Frequently Used" - }, { - "key": "people", - "title": "Smileys & People" - }, { - "key": "animals_and_nature", - "title": "Animals & Nature" - }, { - "key": "food_and_drink", - "title": "Food & Drink" - }, { - "key": "activity", - "title": "Activities" - }, { - "key": "travel_and_places", - "title": "Travel & Places" - }, { - "key": "objects", - "title": "Objects" - }, { - "key": "symbols", - "title": "Symbols" - }, { - "key": "flags", - "title": "Flags" - }], - "categoryIndexMap": { - "fue": { - "key": "fue", - "title": "Frequently Used", - "idx": 0 - }, - "people": { - "key": "people", - "title": "Smileys & People", - "idx": 1 - }, - "animals_and_nature": { - "key": "animals_and_nature", - "title": "Animals & Nature", - "idx": 2 - }, - "food_and_drink": { - "key": "food_and_drink", - "title": "Food & Drink", - "idx": 3 - }, - "activity": { - "key": "activity", - "title": "Activities", - "idx": 4 - }, - "travel_and_places": { - "key": "travel_and_places", - "title": "Travel & Places", - "idx": 5 - }, - "objects": { - "key": "objects", - "title": "Objects", - "idx": 6 - }, - "symbols": { - "key": "symbols", - "title": "Symbols", - "idx": 7 - }, - "flags": { - "key": "flags", - "title": "Flags", - "idx": 8 - } - }, - "emojiLib": { - "100": { - "char": "\ud83d\udcaf", - "key": "100", - "keywords": ["100", "HUNDRED POINTS SYMBOL"], - "category": "symbols", - "lib": { - "name": "HUNDRED POINTS SYMBOL", - "unified": "1F4AF", - "non_qualified": null, - "docomo": null, - "au": "E4F2", - "softbank": null, - "google": "FEB7B", - "image": "1f4af.png", - "sheet_x": 25, - "sheet_y": 50, - "short_name": "100", - "short_names": ["100"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 145, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "1234": { - "char": "\ud83d\udd22", - "key": "1234", - "keywords": ["1234", "INPUT SYMBOL FOR NUMBERS"], - "category": "symbols", - "lib": { - "name": "INPUT SYMBOL FOR NUMBERS", - "unified": "1F522", - "non_qualified": null, - "docomo": null, - "au": "EAFF", - "softbank": null, - "google": "FEB7E", - "image": "1f522.png", - "sheet_x": 28, - "sheet_y": 5, - "short_name": "1234", - "short_names": ["1234"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 148, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "earth_africa": { - "char": "\ud83c\udf0d", - "key": "earth_africa", - "keywords": ["earth_africa", "EARTH GLOBE EUROPE-AFRICA"], - "category": "travel_and_places", - "lib": { - "name": "EARTH GLOBE EUROPE-AFRICA", - "unified": "1F30D", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f30d.png", - "sheet_x": 5, - "sheet_y": 52, - "short_name": "earth_africa", - "short_names": ["earth_africa"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 1, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "grapes": { - "char": "\ud83c\udf47", - "key": "grapes", - "keywords": ["grapes", "GRAPES"], - "category": "food_and_drink", - "lib": { - "name": "GRAPES", - "unified": "1F347", - "non_qualified": null, - "docomo": null, - "au": "EB34", - "softbank": null, - "google": "FE059", - "image": "1f347.png", - "sheet_x": 7, - "sheet_y": 2, - "short_name": "grapes", - "short_names": ["grapes"], - "text": null, - "texts": null, - "category": "Food & Drink", - "sort_order": 1, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "jack_o_lantern": { - "char": "\ud83c\udf83", - "key": "jack_o_lantern", - "keywords": ["jack_o_lantern", "JACK-O-LANTERN"], - "category": "activity", - "lib": { - "name": "JACK-O-LANTERN", - "unified": "1F383", - "non_qualified": null, - "docomo": null, - "au": "EAEE", - "softbank": "E445", - "google": "FE51F", - "image": "1f383.png", - "sheet_x": 8, - "sheet_y": 9, - "short_name": "jack_o_lantern", - "short_names": ["jack_o_lantern"], - "text": null, - "texts": null, - "category": "Activities", - "sort_order": 1, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "checkered_flag": { - "char": "\ud83c\udfc1", - "key": "checkered_flag", - "keywords": ["checkered_flag", "CHEQUERED FLAG"], - "category": "flags", - "lib": { - "name": "CHEQUERED FLAG", - "unified": "1F3C1", - "non_qualified": null, - "docomo": "E659", - "au": "E4B9", - "softbank": "E132", - "google": "FE7D7", - "image": "1f3c1.png", - "sheet_x": 9, - "sheet_y": 18, - "short_name": "checkered_flag", - "short_names": ["checkered_flag"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 1, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "atm": { - "char": "\ud83c\udfe7", - "key": "atm", - "keywords": ["atm", "AUTOMATED TELLER MACHINE"], - "category": "symbols", - "lib": { - "name": "AUTOMATED TELLER MACHINE", - "unified": "1F3E7", - "non_qualified": null, - "docomo": "E668", - "au": "E4A3", - "softbank": "E154", - "google": "FE4B6", - "image": "1f3e7.png", - "sheet_x": 11, - "sheet_y": 45, - "short_name": "atm", - "short_names": ["atm"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 1, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "skin-tone-2": { - "char": "\ud83c\udffb", - "key": "skin-tone-2", - "keywords": ["skin-tone-2", "EMOJI MODIFIER FITZPATRICK TYPE-1-2"], - "lib": { - "name": "EMOJI MODIFIER FITZPATRICK TYPE-1-2", - "unified": "1F3FB", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f3fb.png", - "sheet_x": 12, - "sheet_y": 14, - "short_name": "skin-tone-2", - "short_names": ["skin-tone-2"], - "text": null, - "texts": null, - "category": "Skin Tones", - "sort_order": 1, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "monkey_face": { - "char": "\ud83d\udc35", - "key": "monkey_face", - "keywords": ["monkey_face", "MONKEY FACE"], - "category": "animals_and_nature", - "lib": { - "name": "MONKEY FACE", - "unified": "1F435", - "non_qualified": null, - "docomo": null, - "au": "E4D9", - "softbank": "E109", - "google": "FE1C4", - "image": "1f435.png", - "sheet_x": 13, - "sheet_y": 19, - "short_name": "monkey_face", - "short_names": ["monkey_face"], - "text": null, - "texts": [":o)"], - "category": "Animals & Nature", - "sort_order": 1, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "mute": { - "char": "\ud83d\udd07", - "key": "mute", - "keywords": ["mute", "SPEAKER WITH CANCELLATION STROKE"], - "category": "objects", - "lib": { - "name": "SPEAKER WITH CANCELLATION STROKE", - "unified": "1F507", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f507.png", - "sheet_x": 27, - "sheet_y": 31, - "short_name": "mute", - "short_names": ["mute"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 1, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "grinning": { - "char": "\ud83d\ude00", - "key": "grinning", - "keywords": ["grinning", "GRINNING FACE"], - "category": "people", - "lib": { - "name": "GRINNING FACE", - "unified": "1F600", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f600.png", - "sheet_x": 30, - "sheet_y": 43, - "short_name": "grinning", - "short_names": ["grinning"], - "text": ":D", - "texts": null, - "category": "Smileys & People", - "sort_order": 1, - "added_in": "6.1", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "earth_americas": { - "char": "\ud83c\udf0e", - "key": "earth_americas", - "keywords": ["earth_americas", "EARTH GLOBE AMERICAS"], - "category": "travel_and_places", - "lib": { - "name": "EARTH GLOBE AMERICAS", - "unified": "1F30E", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f30e.png", - "sheet_x": 6, - "sheet_y": 0, - "short_name": "earth_americas", - "short_names": ["earth_americas"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 2, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "melon": { - "char": "\ud83c\udf48", - "key": "melon", - "keywords": ["melon", "MELON"], - "category": "food_and_drink", - "lib": { - "name": "MELON", - "unified": "1F348", - "non_qualified": null, - "docomo": null, - "au": "EB32", - "softbank": null, - "google": "FE057", - "image": "1f348.png", - "sheet_x": 7, - "sheet_y": 3, - "short_name": "melon", - "short_names": ["melon"], - "text": null, - "texts": null, - "category": "Food & Drink", - "sort_order": 2, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "christmas_tree": { - "char": "\ud83c\udf84", - "key": "christmas_tree", - "keywords": ["christmas_tree", "CHRISTMAS TREE"], - "category": "activity", - "lib": { - "name": "CHRISTMAS TREE", - "unified": "1F384", - "non_qualified": null, - "docomo": "E6A4", - "au": "E4C9", - "softbank": "E033", - "google": "FE512", - "image": "1f384.png", - "sheet_x": 8, - "sheet_y": 10, - "short_name": "christmas_tree", - "short_names": ["christmas_tree"], - "text": null, - "texts": null, - "category": "Activities", - "sort_order": 2, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "skin-tone-3": { - "char": "\ud83c\udffc", - "key": "skin-tone-3", - "keywords": ["skin-tone-3", "EMOJI MODIFIER FITZPATRICK TYPE-3"], - "lib": { - "name": "EMOJI MODIFIER FITZPATRICK TYPE-3", - "unified": "1F3FC", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f3fc.png", - "sheet_x": 12, - "sheet_y": 15, - "short_name": "skin-tone-3", - "short_names": ["skin-tone-3"], - "text": null, - "texts": null, - "category": "Skin Tones", - "sort_order": 2, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "monkey": { - "char": "\ud83d\udc12", - "key": "monkey", - "keywords": ["monkey", "MONKEY"], - "category": "animals_and_nature", - "lib": { - "name": "MONKEY", - "unified": "1F412", - "non_qualified": null, - "docomo": null, - "au": "E4D9", - "softbank": "E528", - "google": "FE1CE", - "image": "1f412.png", - "sheet_x": 12, - "sheet_y": 37, - "short_name": "monkey", - "short_names": ["monkey"], - "text": null, - "texts": null, - "category": "Animals & Nature", - "sort_order": 2, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "speaker": { - "char": "\ud83d\udd08", - "key": "speaker", - "keywords": ["speaker", "SPEAKER"], - "category": "objects", - "lib": { - "name": "SPEAKER", - "unified": "1F508", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f508.png", - "sheet_x": 27, - "sheet_y": 32, - "short_name": "speaker", - "short_names": ["speaker"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 2, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "grin": { - "char": "\ud83d\ude01", - "key": "grin", - "keywords": ["grin", "GRINNING FACE WITH SMILING EYES"], - "category": "people", - "lib": { - "name": "GRINNING FACE WITH SMILING EYES", - "unified": "1F601", - "non_qualified": null, - "docomo": "E753", - "au": "EB80", - "softbank": "E404", - "google": "FE333", - "image": "1f601.png", - "sheet_x": 30, - "sheet_y": 44, - "short_name": "grin", - "short_names": ["grin"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 2, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "triangular_flag_on_post": { - "char": "\ud83d\udea9", - "key": "triangular_flag_on_post", - "keywords": ["triangular_flag_on_post", "TRIANGULAR FLAG ON POST"], - "category": "flags", - "lib": { - "name": "TRIANGULAR FLAG ON POST", - "unified": "1F6A9", - "non_qualified": null, - "docomo": "E6DE", - "au": "EB2C", - "softbank": null, - "google": "FEB22", - "image": "1f6a9.png", - "sheet_x": 35, - "sheet_y": 28, - "short_name": "triangular_flag_on_post", - "short_names": ["triangular_flag_on_post"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 2, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "put_litter_in_its_place": { - "char": "\ud83d\udeae", - "key": "put_litter_in_its_place", - "keywords": ["put_litter_in_its_place", "PUT LITTER IN ITS PLACE SYMBOL"], - "category": "symbols", - "lib": { - "name": "PUT LITTER IN ITS PLACE SYMBOL", - "unified": "1F6AE", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f6ae.png", - "sheet_x": 35, - "sheet_y": 33, - "short_name": "put_litter_in_its_place", - "short_names": ["put_litter_in_its_place"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 2, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "earth_asia": { - "char": "\ud83c\udf0f", - "key": "earth_asia", - "keywords": ["earth_asia", "EARTH GLOBE ASIA-AUSTRALIA"], - "category": "travel_and_places", - "lib": { - "name": "EARTH GLOBE ASIA-AUSTRALIA", - "unified": "1F30F", - "non_qualified": null, - "docomo": null, - "au": "E5B3", - "softbank": null, - "google": "FE039", - "image": "1f30f.png", - "sheet_x": 6, - "sheet_y": 1, - "short_name": "earth_asia", - "short_names": ["earth_asia"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 3, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "watermelon": { - "char": "\ud83c\udf49", - "key": "watermelon", - "keywords": ["watermelon", "WATERMELON"], - "category": "food_and_drink", - "lib": { - "name": "WATERMELON", - "unified": "1F349", - "non_qualified": null, - "docomo": null, - "au": "E4CD", - "softbank": "E348", - "google": "FE054", - "image": "1f349.png", - "sheet_x": 7, - "sheet_y": 4, - "short_name": "watermelon", - "short_names": ["watermelon"], - "text": null, - "texts": null, - "category": "Food & Drink", - "sort_order": 3, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "fireworks": { - "char": "\ud83c\udf86", - "key": "fireworks", - "keywords": ["fireworks", "FIREWORKS"], - "category": "activity", - "lib": { - "name": "FIREWORKS", - "unified": "1F386", - "non_qualified": null, - "docomo": null, - "au": "E5CC", - "softbank": "E117", - "google": "FE515", - "image": "1f386.png", - "sheet_x": 8, - "sheet_y": 17, - "short_name": "fireworks", - "short_names": ["fireworks"], - "text": null, - "texts": null, - "category": "Activities", - "sort_order": 3, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "crossed_flags": { - "char": "\ud83c\udf8c", - "key": "crossed_flags", - "keywords": ["crossed_flags", "CROSSED FLAGS"], - "category": "flags", - "lib": { - "name": "CROSSED FLAGS", - "unified": "1F38C", - "non_qualified": null, - "docomo": null, - "au": "E5D9", - "softbank": "E143", - "google": "FE514", - "image": "1f38c.png", - "sheet_x": 8, - "sheet_y": 23, - "short_name": "crossed_flags", - "short_names": ["crossed_flags"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 3, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "skin-tone-4": { - "char": "\ud83c\udffd", - "key": "skin-tone-4", - "keywords": ["skin-tone-4", "EMOJI MODIFIER FITZPATRICK TYPE-4"], - "lib": { - "name": "EMOJI MODIFIER FITZPATRICK TYPE-4", - "unified": "1F3FD", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f3fd.png", - "sheet_x": 12, - "sheet_y": 16, - "short_name": "skin-tone-4", - "short_names": ["skin-tone-4"], - "text": null, - "texts": null, - "category": "Skin Tones", - "sort_order": 3, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "sound": { - "char": "\ud83d\udd09", - "key": "sound", - "keywords": ["sound", "SPEAKER WITH ONE SOUND WAVE"], - "category": "objects", - "lib": { - "name": "SPEAKER WITH ONE SOUND WAVE", - "unified": "1F509", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f509.png", - "sheet_x": 27, - "sheet_y": 33, - "short_name": "sound", - "short_names": ["sound"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 3, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "joy": { - "char": "\ud83d\ude02", - "key": "joy", - "keywords": ["joy", "FACE WITH TEARS OF JOY"], - "category": "people", - "lib": { - "name": "FACE WITH TEARS OF JOY", - "unified": "1F602", - "non_qualified": null, - "docomo": "E72A", - "au": "EB64", - "softbank": "E412", - "google": "FE334", - "image": "1f602.png", - "sheet_x": 30, - "sheet_y": 45, - "short_name": "joy", - "short_names": ["joy"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 3, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "potable_water": { - "char": "\ud83d\udeb0", - "key": "potable_water", - "keywords": ["potable_water", "POTABLE WATER SYMBOL"], - "category": "symbols", - "lib": { - "name": "POTABLE WATER SYMBOL", - "unified": "1F6B0", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f6b0.png", - "sheet_x": 35, - "sheet_y": 35, - "short_name": "potable_water", - "short_names": ["potable_water"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 3, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "gorilla": { - "char": "\ud83e\udd8d", - "key": "gorilla", - "keywords": ["gorilla", "GORILLA"], - "category": "animals_and_nature", - "lib": { - "name": "GORILLA", - "unified": "1F98D", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f98d.png", - "sheet_x": 43, - "sheet_y": 9, - "short_name": "gorilla", - "short_names": ["gorilla"], - "text": null, - "texts": null, - "category": "Animals & Nature", - "sort_order": 3, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "globe_with_meridians": { - "char": "\ud83c\udf10", - "key": "globe_with_meridians", - "keywords": ["globe_with_meridians", "GLOBE WITH MERIDIANS"], - "category": "travel_and_places", - "lib": { - "name": "GLOBE WITH MERIDIANS", - "unified": "1F310", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f310.png", - "sheet_x": 6, - "sheet_y": 2, - "short_name": "globe_with_meridians", - "short_names": ["globe_with_meridians"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 4, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "tangerine": { - "char": "\ud83c\udf4a", - "key": "tangerine", - "keywords": ["tangerine", "TANGERINE"], - "category": "food_and_drink", - "lib": { - "name": "TANGERINE", - "unified": "1F34A", - "non_qualified": null, - "docomo": null, - "au": "EABA", - "softbank": "E346", - "google": "FE052", - "image": "1f34a.png", - "sheet_x": 7, - "sheet_y": 5, - "short_name": "tangerine", - "short_names": ["tangerine"], - "text": null, - "texts": null, - "category": "Food & Drink", - "sort_order": 4, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "sparkler": { - "char": "\ud83c\udf87", - "key": "sparkler", - "keywords": ["sparkler", "FIREWORK SPARKLER"], - "category": "activity", - "lib": { - "name": "FIREWORK SPARKLER", - "unified": "1F387", - "non_qualified": null, - "docomo": null, - "au": "EAEB", - "softbank": "E440", - "google": "FE51D", - "image": "1f387.png", - "sheet_x": 8, - "sheet_y": 18, - "short_name": "sparkler", - "short_names": ["sparkler"], - "text": null, - "texts": null, - "category": "Activities", - "sort_order": 4, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "waving_black_flag": { - "char": "\ud83c\udff4", - "key": "waving_black_flag", - "keywords": ["waving_black_flag", "WAVING BLACK FLAG"], - "category": "flags", - "lib": { - "name": "WAVING BLACK FLAG", - "unified": "1F3F4", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f3f4.png", - "sheet_x": 12, - "sheet_y": 8, - "short_name": "waving_black_flag", - "short_names": ["waving_black_flag"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 4, - "added_in": "7.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "skin-tone-5": { - "char": "\ud83c\udffe", - "key": "skin-tone-5", - "keywords": ["skin-tone-5", "EMOJI MODIFIER FITZPATRICK TYPE-5"], - "lib": { - "name": "EMOJI MODIFIER FITZPATRICK TYPE-5", - "unified": "1F3FE", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f3fe.png", - "sheet_x": 12, - "sheet_y": 17, - "short_name": "skin-tone-5", - "short_names": ["skin-tone-5"], - "text": null, - "texts": null, - "category": "Skin Tones", - "sort_order": 4, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "dog": { - "char": "\ud83d\udc36", - "key": "dog", - "keywords": ["dog", "DOG FACE"], - "category": "animals_and_nature", - "lib": { - "name": "DOG FACE", - "unified": "1F436", - "non_qualified": null, - "docomo": "E6A1", - "au": "E4E1", - "softbank": "E052", - "google": "FE1B7", - "image": "1f436.png", - "sheet_x": 13, - "sheet_y": 20, - "short_name": "dog", - "short_names": ["dog"], - "text": null, - "texts": null, - "category": "Animals & Nature", - "sort_order": 4, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "loud_sound": { - "char": "\ud83d\udd0a", - "key": "loud_sound", - "keywords": ["loud_sound", "SPEAKER WITH THREE SOUND WAVES"], - "category": "objects", - "lib": { - "name": "SPEAKER WITH THREE SOUND WAVES", - "unified": "1F50A", - "non_qualified": null, - "docomo": null, - "au": "E511", - "softbank": "E141", - "google": "FE821", - "image": "1f50a.png", - "sheet_x": 27, - "sheet_y": 34, - "short_name": "loud_sound", - "short_names": ["loud_sound"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 4, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "rolling_on_the_floor_laughing": { - "char": "\ud83e\udd23", - "key": "rolling_on_the_floor_laughing", - "keywords": ["rolling_on_the_floor_laughing", "ROLLING ON THE FLOOR LAUGHING"], - "category": "people", - "lib": { - "name": "ROLLING ON THE FLOOR LAUGHING", - "unified": "1F923", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f923.png", - "sheet_x": 38, - "sheet_y": 38, - "short_name": "rolling_on_the_floor_laughing", - "short_names": ["rolling_on_the_floor_laughing"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 4, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "wheelchair": { - "char": "\u267f", - "key": "wheelchair", - "keywords": ["wheelchair", "WHEELCHAIR SYMBOL"], - "category": "symbols", - "lib": { - "name": "WHEELCHAIR SYMBOL", - "unified": "267F", - "non_qualified": null, - "docomo": "E69B", - "au": "E47F", - "softbank": "E20A", - "google": "FEB20", - "image": "267f.png", - "sheet_x": 50, - "sheet_y": 1, - "short_name": "wheelchair", - "short_names": ["wheelchair"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 4, - "added_in": "4.1", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "lemon": { - "char": "\ud83c\udf4b", - "key": "lemon", - "keywords": ["lemon", "LEMON"], - "category": "food_and_drink", - "lib": { - "name": "LEMON", - "unified": "1F34B", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f34b.png", - "sheet_x": 7, - "sheet_y": 6, - "short_name": "lemon", - "short_names": ["lemon"], - "text": null, - "texts": null, - "category": "Food & Drink", - "sort_order": 5, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "waving_white_flag": { - "char": "\ud83c\udff3\ufe0f", - "key": "waving_white_flag", - "keywords": ["waving_white_flag", ""], - "category": "flags", - "lib": { - "name": null, - "unified": "1F3F3-FE0F", - "non_qualified": "1F3F3", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f3f3-fe0f.png", - "sheet_x": 12, - "sheet_y": 3, - "short_name": "waving_white_flag", - "short_names": ["waving_white_flag"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 5, - "added_in": "7.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "skin-tone-6": { - "char": "\ud83c\udfff", - "key": "skin-tone-6", - "keywords": ["skin-tone-6", "EMOJI MODIFIER FITZPATRICK TYPE-6"], - "lib": { - "name": "EMOJI MODIFIER FITZPATRICK TYPE-6", - "unified": "1F3FF", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f3ff.png", - "sheet_x": 12, - "sheet_y": 18, - "short_name": "skin-tone-6", - "short_names": ["skin-tone-6"], - "text": null, - "texts": null, - "category": "Skin Tones", - "sort_order": 5, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "dog2": { - "char": "\ud83d\udc15", - "key": "dog2", - "keywords": ["dog2", "DOG"], - "category": "animals_and_nature", - "lib": { - "name": "DOG", - "unified": "1F415", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f415.png", - "sheet_x": 12, - "sheet_y": 40, - "short_name": "dog2", - "short_names": ["dog2"], - "text": null, - "texts": null, - "category": "Animals & Nature", - "sort_order": 5, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "loudspeaker": { - "char": "\ud83d\udce2", - "key": "loudspeaker", - "keywords": ["loudspeaker", "PUBLIC ADDRESS LOUDSPEAKER"], - "category": "objects", - "lib": { - "name": "PUBLIC ADDRESS LOUDSPEAKER", - "unified": "1F4E2", - "non_qualified": null, - "docomo": null, - "au": "E511", - "softbank": "E142", - "google": "FE52F", - "image": "1f4e2.png", - "sheet_x": 26, - "sheet_y": 48, - "short_name": "loudspeaker", - "short_names": ["loudspeaker"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 5, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "world_map": { - "char": "\ud83d\uddfa\ufe0f", - "key": "world_map", - "keywords": ["world_map", ""], - "category": "travel_and_places", - "lib": { - "name": null, - "unified": "1F5FA-FE0F", - "non_qualified": "1F5FA", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f5fa-fe0f.png", - "sheet_x": 30, - "sheet_y": 37, - "short_name": "world_map", - "short_names": ["world_map"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 5, - "added_in": "7.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "smiley": { - "char": "\ud83d\ude03", - "key": "smiley", - "keywords": ["smiley", "SMILING FACE WITH OPEN MOUTH"], - "category": "people", - "lib": { - "name": "SMILING FACE WITH OPEN MOUTH", - "unified": "1F603", - "non_qualified": null, - "docomo": "E6F0", - "au": "E471", - "softbank": "E057", - "google": "FE330", - "image": "1f603.png", - "sheet_x": 30, - "sheet_y": 46, - "short_name": "smiley", - "short_names": ["smiley"], - "text": ":)", - "texts": ["=)", "=-)"], - "category": "Smileys & People", - "sort_order": 5, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "mens": { - "char": "\ud83d\udeb9", - "key": "mens", - "keywords": ["mens", "MENS SYMBOL"], - "category": "symbols", - "lib": { - "name": "MENS SYMBOL", - "unified": "1F6B9", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": "E138", - "google": "FEB33", - "image": "1f6b9.png", - "sheet_x": 36, - "sheet_y": 42, - "short_name": "mens", - "short_names": ["mens"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 5, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "firecracker": { - "char": "\ud83e\udde8", - "key": "firecracker", - "keywords": ["firecracker", "FIRECRACKER"], - "category": "activity", - "lib": { - "name": "FIRECRACKER", - "unified": "1F9E8", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f9e8.png", - "sheet_x": 47, - "sheet_y": 49, - "short_name": "firecracker", - "short_names": ["firecracker"], - "text": null, - "texts": null, - "category": "Activities", - "sort_order": 5, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - } - }, - "banana": { - "char": "\ud83c\udf4c", - "key": "banana", - "keywords": ["banana", "BANANA"], - "category": "food_and_drink", - "lib": { - "name": "BANANA", - "unified": "1F34C", - "non_qualified": null, - "docomo": "E744", - "au": "EB35", - "softbank": null, - "google": "FE050", - "image": "1f34c.png", - "sheet_x": 7, - "sheet_y": 7, - "short_name": "banana", - "short_names": ["banana"], - "text": null, - "texts": null, - "category": "Food & Drink", - "sort_order": 6, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "rainbow-flag": { - "char": "\ud83c\udff3\ufe0f\u200d\ud83c\udf08", - "key": "rainbow-flag", - "keywords": ["rainbow-flag", ""], - "category": "flags", - "lib": { - "name": null, - "unified": "1F3F3-FE0F-200D-1F308", - "non_qualified": "1F3F3-200D-1F308", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f3f3-fe0f-200d-1f308.png", - "sheet_x": 12, - "sheet_y": 2, - "short_name": "rainbow-flag", - "short_names": ["rainbow-flag"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 6, - "added_in": "7.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "poodle": { - "char": "\ud83d\udc29", - "key": "poodle", - "keywords": ["poodle", "POODLE"], - "category": "animals_and_nature", - "lib": { - "name": "POODLE", - "unified": "1F429", - "non_qualified": null, - "docomo": "E6A1", - "au": "E4DF", - "softbank": null, - "google": "FE1D8", - "image": "1f429.png", - "sheet_x": 13, - "sheet_y": 7, - "short_name": "poodle", - "short_names": ["poodle"], - "text": null, - "texts": null, - "category": "Animals & Nature", - "sort_order": 6, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "mega": { - "char": "\ud83d\udce3", - "key": "mega", - "keywords": ["mega", "CHEERING MEGAPHONE"], - "category": "objects", - "lib": { - "name": "CHEERING MEGAPHONE", - "unified": "1F4E3", - "non_qualified": null, - "docomo": null, - "au": "E511", - "softbank": "E317", - "google": "FE530", - "image": "1f4e3.png", - "sheet_x": 26, - "sheet_y": 49, - "short_name": "mega", - "short_names": ["mega"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 6, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "japan": { - "char": "\ud83d\uddfe", - "key": "japan", - "keywords": ["japan", "SILHOUETTE OF JAPAN"], - "category": "travel_and_places", - "lib": { - "name": "SILHOUETTE OF JAPAN", - "unified": "1F5FE", - "non_qualified": null, - "docomo": null, - "au": "E572", - "softbank": null, - "google": "FE4C7", - "image": "1f5fe.png", - "sheet_x": 30, - "sheet_y": 41, - "short_name": "japan", - "short_names": ["japan"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 6, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "smile": { - "char": "\ud83d\ude04", - "key": "smile", - "keywords": ["smile", "SMILING FACE WITH OPEN MOUTH AND SMILING EYES"], - "category": "people", - "lib": { - "name": "SMILING FACE WITH OPEN MOUTH AND SMILING EYES", - "unified": "1F604", - "non_qualified": null, - "docomo": "E6F0", - "au": "E471", - "softbank": "E415", - "google": "FE338", - "image": "1f604.png", - "sheet_x": 30, - "sheet_y": 47, - "short_name": "smile", - "short_names": ["smile"], - "text": ":)", - "texts": ["C:", "c:", ":D", ":-D"], - "category": "Smileys & People", - "sort_order": 6, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "womens": { - "char": "\ud83d\udeba", - "key": "womens", - "keywords": ["womens", "WOMENS SYMBOL"], - "category": "symbols", - "lib": { - "name": "WOMENS SYMBOL", - "unified": "1F6BA", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": "E139", - "google": "FEB34", - "image": "1f6ba.png", - "sheet_x": 36, - "sheet_y": 43, - "short_name": "womens", - "short_names": ["womens"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 6, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "sparkles": { - "char": "\u2728", - "key": "sparkles", - "keywords": ["sparkles", "SPARKLES"], - "category": "activity", - "lib": { - "name": "SPARKLES", - "unified": "2728", - "non_qualified": null, - "docomo": "E6FA", - "au": "EAAB", - "softbank": "E32E", - "google": "FEB60", - "image": "2728.png", - "sheet_x": 51, - "sheet_y": 38, - "short_name": "sparkles", - "short_names": ["sparkles"], - "text": null, - "texts": null, - "category": "Activities", - "sort_order": 6, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "pineapple": { - "char": "\ud83c\udf4d", - "key": "pineapple", - "keywords": ["pineapple", "PINEAPPLE"], - "category": "food_and_drink", - "lib": { - "name": "PINEAPPLE", - "unified": "1F34D", - "non_qualified": null, - "docomo": null, - "au": "EB33", - "softbank": null, - "google": "FE058", - "image": "1f34d.png", - "sheet_x": 7, - "sheet_y": 8, - "short_name": "pineapple", - "short_names": ["pineapple"], - "text": null, - "texts": null, - "category": "Food & Drink", - "sort_order": 7, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "balloon": { - "char": "\ud83c\udf88", - "key": "balloon", - "keywords": ["balloon", "BALLOON"], - "category": "activity", - "lib": { - "name": "BALLOON", - "unified": "1F388", - "non_qualified": null, - "docomo": null, - "au": "EA9B", - "softbank": "E310", - "google": "FE516", - "image": "1f388.png", - "sheet_x": 8, - "sheet_y": 19, - "short_name": "balloon", - "short_names": ["balloon"], - "text": null, - "texts": null, - "category": "Activities", - "sort_order": 7, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "pirate_flag": { - "char": "\ud83c\udff4\u200d\u2620\ufe0f", - "key": "pirate_flag", - "keywords": ["pirate_flag", ""], - "category": "flags", - "lib": { - "name": null, - "unified": "1F3F4-200D-2620-FE0F", - "non_qualified": "1F3F4-200D-2620", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f3f4-200d-2620-fe0f.png", - "sheet_x": 12, - "sheet_y": 4, - "short_name": "pirate_flag", - "short_names": ["pirate_flag"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 7, - "added_in": "7.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - } - }, - "wolf": { - "char": "\ud83d\udc3a", - "key": "wolf", - "keywords": ["wolf", "WOLF FACE"], - "category": "animals_and_nature", - "lib": { - "name": "WOLF FACE", - "unified": "1F43A", - "non_qualified": null, - "docomo": "E6A1", - "au": "E4E1", - "softbank": "E52A", - "google": "FE1D0", - "image": "1f43a.png", - "sheet_x": 13, - "sheet_y": 24, - "short_name": "wolf", - "short_names": ["wolf"], - "text": null, - "texts": null, - "category": "Animals & Nature", - "sort_order": 7, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "postal_horn": { - "char": "\ud83d\udcef", - "key": "postal_horn", - "keywords": ["postal_horn", "POSTAL HORN"], - "category": "objects", - "lib": { - "name": "POSTAL HORN", - "unified": "1F4EF", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f4ef.png", - "sheet_x": 27, - "sheet_y": 8, - "short_name": "postal_horn", - "short_names": ["postal_horn"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 7, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "sweat_smile": { - "char": "\ud83d\ude05", - "key": "sweat_smile", - "keywords": ["sweat_smile", "SMILING FACE WITH OPEN MOUTH AND COLD SWEAT"], - "category": "people", - "lib": { - "name": "SMILING FACE WITH OPEN MOUTH AND COLD SWEAT", - "unified": "1F605", - "non_qualified": null, - "docomo": "E722", - "au": "E471-E5B1", - "softbank": null, - "google": "FE331", - "image": "1f605.png", - "sheet_x": 30, - "sheet_y": 48, - "short_name": "sweat_smile", - "short_names": ["sweat_smile"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 7, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "restroom": { - "char": "\ud83d\udebb", - "key": "restroom", - "keywords": ["restroom", "RESTROOM"], - "category": "symbols", - "lib": { - "name": "RESTROOM", - "unified": "1F6BB", - "non_qualified": null, - "docomo": "E66E", - "au": "E4A5", - "softbank": "E151", - "google": "FE506", - "image": "1f6bb.png", - "sheet_x": 36, - "sheet_y": 44, - "short_name": "restroom", - "short_names": ["restroom"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 7, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "compass": { - "char": "\ud83e\udded", - "key": "compass", - "keywords": ["compass", "COMPASS"], - "category": "travel_and_places", - "lib": { - "name": "COMPASS", - "unified": "1F9ED", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f9ed.png", - "sheet_x": 48, - "sheet_y": 1, - "short_name": "compass", - "short_names": ["compass"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 7, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - } - }, - "flag-ac": { - "char": "\ud83c\udde6\ud83c\udde8", - "key": "flag-ac", - "keywords": ["flag-ac", "Ascension Island Flag"], - "category": "flags", - "lib": { - "name": "Ascension Island Flag", - "unified": "1F1E6-1F1E8", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1e6-1f1e8.png", - "sheet_x": 0, - "sheet_y": 31, - "short_name": "flag-ac", - "short_names": ["flag-ac"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 8, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "tada": { - "char": "\ud83c\udf89", - "key": "tada", - "keywords": ["tada", "PARTY POPPER"], - "category": "activity", - "lib": { - "name": "PARTY POPPER", - "unified": "1F389", - "non_qualified": null, - "docomo": null, - "au": "EA9C", - "softbank": "E312", - "google": "FE517", - "image": "1f389.png", - "sheet_x": 8, - "sheet_y": 20, - "short_name": "tada", - "short_names": ["tada"], - "text": null, - "texts": null, - "category": "Activities", - "sort_order": 8, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "snow_capped_mountain": { - "char": "\ud83c\udfd4\ufe0f", - "key": "snow_capped_mountain", - "keywords": ["snow_capped_mountain", ""], - "category": "travel_and_places", - "lib": { - "name": null, - "unified": "1F3D4-FE0F", - "non_qualified": "1F3D4", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f3d4-fe0f.png", - "sheet_x": 11, - "sheet_y": 26, - "short_name": "snow_capped_mountain", - "short_names": ["snow_capped_mountain"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 8, - "added_in": "7.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "bell": { - "char": "\ud83d\udd14", - "key": "bell", - "keywords": ["bell", "BELL"], - "category": "objects", - "lib": { - "name": "BELL", - "unified": "1F514", - "non_qualified": null, - "docomo": "E713", - "au": "E512", - "softbank": "E325", - "google": "FE4F2", - "image": "1f514.png", - "sheet_x": 27, - "sheet_y": 44, - "short_name": "bell", - "short_names": ["bell"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 8, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "laughing": { - "char": "\ud83d\ude06", - "key": "laughing", - "keywords": ["laughing", "SMILING FACE WITH OPEN MOUTH AND TIGHTLY-CLOSED EYES"], - "category": "people", - "lib": { - "name": "SMILING FACE WITH OPEN MOUTH AND TIGHTLY-CLOSED EYES", - "unified": "1F606", - "non_qualified": null, - "docomo": "E72A", - "au": "EAC5", - "softbank": null, - "google": "FE332", - "image": "1f606.png", - "sheet_x": 30, - "sheet_y": 49, - "short_name": "laughing", - "short_names": ["laughing", "satisfied"], - "text": null, - "texts": [":>", ":->"], - "category": "Smileys & People", - "sort_order": 8, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "baby_symbol": { - "char": "\ud83d\udebc", - "key": "baby_symbol", - "keywords": ["baby_symbol", "BABY SYMBOL"], - "category": "symbols", - "lib": { - "name": "BABY SYMBOL", - "unified": "1F6BC", - "non_qualified": null, - "docomo": null, - "au": "EB18", - "softbank": "E13A", - "google": "FEB35", - "image": "1f6bc.png", - "sheet_x": 36, - "sheet_y": 45, - "short_name": "baby_symbol", - "short_names": ["baby_symbol"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 8, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "mango": { - "char": "\ud83e\udd6d", - "key": "mango", - "keywords": ["mango", "MANGO"], - "category": "food_and_drink", - "lib": { - "name": "MANGO", - "unified": "1F96D", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f96d.png", - "sheet_x": 42, - "sheet_y": 36, - "short_name": "mango", - "short_names": ["mango"], - "text": null, - "texts": null, - "category": "Food & Drink", - "sort_order": 8, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - } - }, - "fox_face": { - "char": "\ud83e\udd8a", - "key": "fox_face", - "keywords": ["fox_face", "FOX FACE"], - "category": "animals_and_nature", - "lib": { - "name": "FOX FACE", - "unified": "1F98A", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f98a.png", - "sheet_x": 43, - "sheet_y": 6, - "short_name": "fox_face", - "short_names": ["fox_face"], - "text": null, - "texts": null, - "category": "Animals & Nature", - "sort_order": 8, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "flag-ad": { - "char": "\ud83c\udde6\ud83c\udde9", - "key": "flag-ad", - "keywords": ["flag-ad", "Andorra Flag"], - "category": "flags", - "lib": { - "name": "Andorra Flag", - "unified": "1F1E6-1F1E9", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1e6-1f1e9.png", - "sheet_x": 0, - "sheet_y": 32, - "short_name": "flag-ad", - "short_names": ["flag-ad"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 9, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "apple": { - "char": "\ud83c\udf4e", - "key": "apple", - "keywords": ["apple", "RED APPLE"], - "category": "food_and_drink", - "lib": { - "name": "RED APPLE", - "unified": "1F34E", - "non_qualified": null, - "docomo": "E745", - "au": "EAB9", - "softbank": "E345", - "google": "FE051", - "image": "1f34e.png", - "sheet_x": 7, - "sheet_y": 9, - "short_name": "apple", - "short_names": ["apple"], - "text": null, - "texts": null, - "category": "Food & Drink", - "sort_order": 9, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "confetti_ball": { - "char": "\ud83c\udf8a", - "key": "confetti_ball", - "keywords": ["confetti_ball", "CONFETTI BALL"], - "category": "activity", - "lib": { - "name": "CONFETTI BALL", - "unified": "1F38A", - "non_qualified": null, - "docomo": null, - "au": "E46F", - "softbank": null, - "google": "FE520", - "image": "1f38a.png", - "sheet_x": 8, - "sheet_y": 21, - "short_name": "confetti_ball", - "short_names": ["confetti_ball"], - "text": null, - "texts": null, - "category": "Activities", - "sort_order": 9, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "no_bell": { - "char": "\ud83d\udd15", - "key": "no_bell", - "keywords": ["no_bell", "BELL WITH CANCELLATION STROKE"], - "category": "objects", - "lib": { - "name": "BELL WITH CANCELLATION STROKE", - "unified": "1F515", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f515.png", - "sheet_x": 27, - "sheet_y": 45, - "short_name": "no_bell", - "short_names": ["no_bell"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 9, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "wink": { - "char": "\ud83d\ude09", - "key": "wink", - "keywords": ["wink", "WINKING FACE"], - "category": "people", - "lib": { - "name": "WINKING FACE", - "unified": "1F609", - "non_qualified": null, - "docomo": "E729", - "au": "E5C3", - "softbank": "E405", - "google": "FE347", - "image": "1f609.png", - "sheet_x": 30, - "sheet_y": 52, - "short_name": "wink", - "short_names": ["wink"], - "text": ";)", - "texts": [";)", ";-)"], - "category": "Smileys & People", - "sort_order": 9, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "wc": { - "char": "\ud83d\udebe", - "key": "wc", - "keywords": ["wc", "WATER CLOSET"], - "category": "symbols", - "lib": { - "name": "WATER CLOSET", - "unified": "1F6BE", - "non_qualified": null, - "docomo": "E66E", - "au": "E4A5", - "softbank": "E309", - "google": "FE508", - "image": "1f6be.png", - "sheet_x": 36, - "sheet_y": 47, - "short_name": "wc", - "short_names": ["wc"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 9, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "raccoon": { - "char": "\ud83e\udd9d", - "key": "raccoon", - "keywords": ["raccoon", "RACCOON"], - "category": "animals_and_nature", - "lib": { - "name": "RACCOON", - "unified": "1F99D", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f99d.png", - "sheet_x": 43, - "sheet_y": 25, - "short_name": "raccoon", - "short_names": ["raccoon"], - "text": null, - "texts": null, - "category": "Animals & Nature", - "sort_order": 9, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - } - }, - "mountain": { - "char": "\u26f0\ufe0f", - "key": "mountain", - "keywords": ["mountain", ""], - "category": "travel_and_places", - "lib": { - "name": null, - "unified": "26F0-FE0F", - "non_qualified": "26F0", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "26f0-fe0f.png", - "sheet_x": 50, - "sheet_y": 29, - "short_name": "mountain", - "short_names": ["mountain"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 9, - "added_in": "5.2", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "flag-ae": { - "char": "\ud83c\udde6\ud83c\uddea", - "key": "flag-ae", - "keywords": ["flag-ae", "United Arab Emirates Flag"], - "category": "flags", - "lib": { - "name": "United Arab Emirates Flag", - "unified": "1F1E6-1F1EA", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1e6-1f1ea.png", - "sheet_x": 0, - "sheet_y": 33, - "short_name": "flag-ae", - "short_names": ["flag-ae"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 10, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "volcano": { - "char": "\ud83c\udf0b", - "key": "volcano", - "keywords": ["volcano", "VOLCANO"], - "category": "travel_and_places", - "lib": { - "name": "VOLCANO", - "unified": "1F30B", - "non_qualified": null, - "docomo": null, - "au": "EB53", - "softbank": null, - "google": "FE03A", - "image": "1f30b.png", - "sheet_x": 5, - "sheet_y": 50, - "short_name": "volcano", - "short_names": ["volcano"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 10, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "green_apple": { - "char": "\ud83c\udf4f", - "key": "green_apple", - "keywords": ["green_apple", "GREEN APPLE"], - "category": "food_and_drink", - "lib": { - "name": "GREEN APPLE", - "unified": "1F34F", - "non_qualified": null, - "docomo": "E745", - "au": "EB5A", - "softbank": null, - "google": "FE05B", - "image": "1f34f.png", - "sheet_x": 7, - "sheet_y": 10, - "short_name": "green_apple", - "short_names": ["green_apple"], - "text": null, - "texts": null, - "category": "Food & Drink", - "sort_order": 10, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "tanabata_tree": { - "char": "\ud83c\udf8b", - "key": "tanabata_tree", - "keywords": ["tanabata_tree", "TANABATA TREE"], - "category": "activity", - "lib": { - "name": "TANABATA TREE", - "unified": "1F38B", - "non_qualified": null, - "docomo": null, - "au": "EB3D", - "softbank": null, - "google": "FE521", - "image": "1f38b.png", - "sheet_x": 8, - "sheet_y": 22, - "short_name": "tanabata_tree", - "short_names": ["tanabata_tree"], - "text": null, - "texts": null, - "category": "Activities", - "sort_order": 10, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "musical_score": { - "char": "\ud83c\udfbc", - "key": "musical_score", - "keywords": ["musical_score", "MUSICAL SCORE"], - "category": "objects", - "lib": { - "name": "MUSICAL SCORE", - "unified": "1F3BC", - "non_qualified": null, - "docomo": "E6FF", - "au": "EACC", - "softbank": null, - "google": "FE81A", - "image": "1f3bc.png", - "sheet_x": 9, - "sheet_y": 13, - "short_name": "musical_score", - "short_names": ["musical_score"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 10, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "cat": { - "char": "\ud83d\udc31", - "key": "cat", - "keywords": ["cat", "CAT FACE"], - "category": "animals_and_nature", - "lib": { - "name": "CAT FACE", - "unified": "1F431", - "non_qualified": null, - "docomo": "E6A2", - "au": "E4DB", - "softbank": "E04F", - "google": "FE1B8", - "image": "1f431.png", - "sheet_x": 13, - "sheet_y": 15, - "short_name": "cat", - "short_names": ["cat"], - "text": null, - "texts": null, - "category": "Animals & Nature", - "sort_order": 10, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "blush": { - "char": "\ud83d\ude0a", - "key": "blush", - "keywords": ["blush", "SMILING FACE WITH SMILING EYES"], - "category": "people", - "lib": { - "name": "SMILING FACE WITH SMILING EYES", - "unified": "1F60A", - "non_qualified": null, - "docomo": "E6F0", - "au": "EACD", - "softbank": "E056", - "google": "FE335", - "image": "1f60a.png", - "sheet_x": 31, - "sheet_y": 0, - "short_name": "blush", - "short_names": ["blush"], - "text": ":)", - "texts": null, - "category": "Smileys & People", - "sort_order": 10, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "passport_control": { - "char": "\ud83d\udec2", - "key": "passport_control", - "keywords": ["passport_control", "PASSPORT CONTROL"], - "category": "symbols", - "lib": { - "name": "PASSPORT CONTROL", - "unified": "1F6C2", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f6c2.png", - "sheet_x": 37, - "sheet_y": 3, - "short_name": "passport_control", - "short_names": ["passport_control"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 10, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-af": { - "char": "\ud83c\udde6\ud83c\uddeb", - "key": "flag-af", - "keywords": ["flag-af", "Afghanistan Flag"], - "category": "flags", - "lib": { - "name": "Afghanistan Flag", - "unified": "1F1E6-1F1EB", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1e6-1f1eb.png", - "sheet_x": 0, - "sheet_y": 34, - "short_name": "flag-af", - "short_names": ["flag-af"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 11, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "pear": { - "char": "\ud83c\udf50", - "key": "pear", - "keywords": ["pear", "PEAR"], - "category": "food_and_drink", - "lib": { - "name": "PEAR", - "unified": "1F350", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f350.png", - "sheet_x": 7, - "sheet_y": 11, - "short_name": "pear", - "short_names": ["pear"], - "text": null, - "texts": null, - "category": "Food & Drink", - "sort_order": 11, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "bamboo": { - "char": "\ud83c\udf8d", - "key": "bamboo", - "keywords": ["bamboo", "PINE DECORATION"], - "category": "activity", - "lib": { - "name": "PINE DECORATION", - "unified": "1F38D", - "non_qualified": null, - "docomo": null, - "au": "EAE3", - "softbank": "E436", - "google": "FE518", - "image": "1f38d.png", - "sheet_x": 8, - "sheet_y": 24, - "short_name": "bamboo", - "short_names": ["bamboo"], - "text": null, - "texts": null, - "category": "Activities", - "sort_order": 11, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "musical_note": { - "char": "\ud83c\udfb5", - "key": "musical_note", - "keywords": ["musical_note", "MUSICAL NOTE"], - "category": "objects", - "lib": { - "name": "MUSICAL NOTE", - "unified": "1F3B5", - "non_qualified": null, - "docomo": "E6F6", - "au": "E5BE", - "softbank": "E03E", - "google": "FE813", - "image": "1f3b5.png", - "sheet_x": 9, - "sheet_y": 6, - "short_name": "musical_note", - "short_names": ["musical_note"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 11, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "cat2": { - "char": "\ud83d\udc08", - "key": "cat2", - "keywords": ["cat2", "CAT"], - "category": "animals_and_nature", - "lib": { - "name": "CAT", - "unified": "1F408", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f408.png", - "sheet_x": 12, - "sheet_y": 27, - "short_name": "cat2", - "short_names": ["cat2"], - "text": null, - "texts": null, - "category": "Animals & Nature", - "sort_order": 11, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "mount_fuji": { - "char": "\ud83d\uddfb", - "key": "mount_fuji", - "keywords": ["mount_fuji", "MOUNT FUJI"], - "category": "travel_and_places", - "lib": { - "name": "MOUNT FUJI", - "unified": "1F5FB", - "non_qualified": null, - "docomo": "E740", - "au": "E5BD", - "softbank": "E03B", - "google": "FE4C3", - "image": "1f5fb.png", - "sheet_x": 30, - "sheet_y": 38, - "short_name": "mount_fuji", - "short_names": ["mount_fuji"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 11, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "yum": { - "char": "\ud83d\ude0b", - "key": "yum", - "keywords": ["yum", "FACE SAVOURING DELICIOUS FOOD"], - "category": "people", - "lib": { - "name": "FACE SAVOURING DELICIOUS FOOD", - "unified": "1F60B", - "non_qualified": null, - "docomo": "E752", - "au": "EACD", - "softbank": null, - "google": "FE32B", - "image": "1f60b.png", - "sheet_x": 31, - "sheet_y": 1, - "short_name": "yum", - "short_names": ["yum"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 11, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "customs": { - "char": "\ud83d\udec3", - "key": "customs", - "keywords": ["customs", "CUSTOMS"], - "category": "symbols", - "lib": { - "name": "CUSTOMS", - "unified": "1F6C3", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f6c3.png", - "sheet_x": 37, - "sheet_y": 4, - "short_name": "customs", - "short_names": ["customs"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 11, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-ag": { - "char": "\ud83c\udde6\ud83c\uddec", - "key": "flag-ag", - "keywords": ["flag-ag", "Antigua & Barbuda Flag"], - "category": "flags", - "lib": { - "name": "Antigua & Barbuda Flag", - "unified": "1F1E6-1F1EC", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1e6-1f1ec.png", - "sheet_x": 0, - "sheet_y": 35, - "short_name": "flag-ag", - "short_names": ["flag-ag"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 12, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "peach": { - "char": "\ud83c\udf51", - "key": "peach", - "keywords": ["peach", "PEACH"], - "category": "food_and_drink", - "lib": { - "name": "PEACH", - "unified": "1F351", - "non_qualified": null, - "docomo": null, - "au": "EB39", - "softbank": null, - "google": "FE05A", - "image": "1f351.png", - "sheet_x": 7, - "sheet_y": 12, - "short_name": "peach", - "short_names": ["peach"], - "text": null, - "texts": null, - "category": "Food & Drink", - "sort_order": 12, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "dolls": { - "char": "\ud83c\udf8e", - "key": "dolls", - "keywords": ["dolls", "JAPANESE DOLLS"], - "category": "activity", - "lib": { - "name": "JAPANESE DOLLS", - "unified": "1F38E", - "non_qualified": null, - "docomo": null, - "au": "EAE4", - "softbank": "E438", - "google": "FE519", - "image": "1f38e.png", - "sheet_x": 8, - "sheet_y": 25, - "short_name": "dolls", - "short_names": ["dolls"], - "text": null, - "texts": null, - "category": "Activities", - "sort_order": 12, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "notes": { - "char": "\ud83c\udfb6", - "key": "notes", - "keywords": ["notes", "MULTIPLE MUSICAL NOTES"], - "category": "objects", - "lib": { - "name": "MULTIPLE MUSICAL NOTES", - "unified": "1F3B6", - "non_qualified": null, - "docomo": "E6FF", - "au": "E505", - "softbank": "E326", - "google": "FE814", - "image": "1f3b6.png", - "sheet_x": 9, - "sheet_y": 7, - "short_name": "notes", - "short_names": ["notes"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 12, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "camping": { - "char": "\ud83c\udfd5\ufe0f", - "key": "camping", - "keywords": ["camping", ""], - "category": "travel_and_places", - "lib": { - "name": null, - "unified": "1F3D5-FE0F", - "non_qualified": "1F3D5", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f3d5-fe0f.png", - "sheet_x": 11, - "sheet_y": 27, - "short_name": "camping", - "short_names": ["camping"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 12, - "added_in": "7.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "sunglasses": { - "char": "\ud83d\ude0e", - "key": "sunglasses", - "keywords": ["sunglasses", "SMILING FACE WITH SUNGLASSES"], - "category": "people", - "lib": { - "name": "SMILING FACE WITH SUNGLASSES", - "unified": "1F60E", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f60e.png", - "sheet_x": 31, - "sheet_y": 4, - "short_name": "sunglasses", - "short_names": ["sunglasses"], - "text": null, - "texts": ["8)"], - "category": "Smileys & People", - "sort_order": 12, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "baggage_claim": { - "char": "\ud83d\udec4", - "key": "baggage_claim", - "keywords": ["baggage_claim", "BAGGAGE CLAIM"], - "category": "symbols", - "lib": { - "name": "BAGGAGE CLAIM", - "unified": "1F6C4", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f6c4.png", - "sheet_x": 37, - "sheet_y": 5, - "short_name": "baggage_claim", - "short_names": ["baggage_claim"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 12, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "lion_face": { - "char": "\ud83e\udd81", - "key": "lion_face", - "keywords": ["lion_face", "LION FACE"], - "category": "animals_and_nature", - "lib": { - "name": "LION FACE", - "unified": "1F981", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f981.png", - "sheet_x": 42, - "sheet_y": 50, - "short_name": "lion_face", - "short_names": ["lion_face"], - "text": null, - "texts": null, - "category": "Animals & Nature", - "sort_order": 12, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "flag-ai": { - "char": "\ud83c\udde6\ud83c\uddee", - "key": "flag-ai", - "keywords": ["flag-ai", "Anguilla Flag"], - "category": "flags", - "lib": { - "name": "Anguilla Flag", - "unified": "1F1E6-1F1EE", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1e6-1f1ee.png", - "sheet_x": 0, - "sheet_y": 36, - "short_name": "flag-ai", - "short_names": ["flag-ai"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 13, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "cherries": { - "char": "\ud83c\udf52", - "key": "cherries", - "keywords": ["cherries", "CHERRIES"], - "category": "food_and_drink", - "lib": { - "name": "CHERRIES", - "unified": "1F352", - "non_qualified": null, - "docomo": "E742", - "au": "E4D2", - "softbank": null, - "google": "FE04F", - "image": "1f352.png", - "sheet_x": 7, - "sheet_y": 13, - "short_name": "cherries", - "short_names": ["cherries"], - "text": null, - "texts": null, - "category": "Food & Drink", - "sort_order": 13, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flags": { - "char": "\ud83c\udf8f", - "key": "flags", - "keywords": ["flags", "CARP STREAMER"], - "category": "activity", - "lib": { - "name": "CARP STREAMER", - "unified": "1F38F", - "non_qualified": null, - "docomo": null, - "au": "EAE7", - "softbank": "E43B", - "google": "FE51C", - "image": "1f38f.png", - "sheet_x": 8, - "sheet_y": 26, - "short_name": "flags", - "short_names": ["flags"], - "text": null, - "texts": null, - "category": "Activities", - "sort_order": 13, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "studio_microphone": { - "char": "\ud83c\udf99\ufe0f", - "key": "studio_microphone", - "keywords": ["studio_microphone", ""], - "category": "objects", - "lib": { - "name": null, - "unified": "1F399-FE0F", - "non_qualified": "1F399", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f399-fe0f.png", - "sheet_x": 8, - "sheet_y": 33, - "short_name": "studio_microphone", - "short_names": ["studio_microphone"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 13, - "added_in": "7.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "beach_with_umbrella": { - "char": "\ud83c\udfd6\ufe0f", - "key": "beach_with_umbrella", - "keywords": ["beach_with_umbrella", ""], - "category": "travel_and_places", - "lib": { - "name": null, - "unified": "1F3D6-FE0F", - "non_qualified": "1F3D6", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f3d6-fe0f.png", - "sheet_x": 11, - "sheet_y": 28, - "short_name": "beach_with_umbrella", - "short_names": ["beach_with_umbrella"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 13, - "added_in": "7.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "tiger": { - "char": "\ud83d\udc2f", - "key": "tiger", - "keywords": ["tiger", "TIGER FACE"], - "category": "animals_and_nature", - "lib": { - "name": "TIGER FACE", - "unified": "1F42F", - "non_qualified": null, - "docomo": null, - "au": "E5C0", - "softbank": "E050", - "google": "FE1C0", - "image": "1f42f.png", - "sheet_x": 13, - "sheet_y": 13, - "short_name": "tiger", - "short_names": ["tiger"], - "text": null, - "texts": null, - "category": "Animals & Nature", - "sort_order": 13, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "heart_eyes": { - "char": "\ud83d\ude0d", - "key": "heart_eyes", - "keywords": ["heart_eyes", "SMILING FACE WITH HEART-SHAPED EYES"], - "category": "people", - "lib": { - "name": "SMILING FACE WITH HEART-SHAPED EYES", - "unified": "1F60D", - "non_qualified": null, - "docomo": "E726", - "au": "E5C4", - "softbank": "E106", - "google": "FE327", - "image": "1f60d.png", - "sheet_x": 31, - "sheet_y": 3, - "short_name": "heart_eyes", - "short_names": ["heart_eyes"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 13, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "left_luggage": { - "char": "\ud83d\udec5", - "key": "left_luggage", - "keywords": ["left_luggage", "LEFT LUGGAGE"], - "category": "symbols", - "lib": { - "name": "LEFT LUGGAGE", - "unified": "1F6C5", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f6c5.png", - "sheet_x": 37, - "sheet_y": 6, - "short_name": "left_luggage", - "short_names": ["left_luggage"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 13, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-al": { - "char": "\ud83c\udde6\ud83c\uddf1", - "key": "flag-al", - "keywords": ["flag-al", "Albania Flag"], - "category": "flags", - "lib": { - "name": "Albania Flag", - "unified": "1F1E6-1F1F1", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1e6-1f1f1.png", - "sheet_x": 0, - "sheet_y": 37, - "short_name": "flag-al", - "short_names": ["flag-al"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 14, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "strawberry": { - "char": "\ud83c\udf53", - "key": "strawberry", - "keywords": ["strawberry", "STRAWBERRY"], - "category": "food_and_drink", - "lib": { - "name": "STRAWBERRY", - "unified": "1F353", - "non_qualified": null, - "docomo": null, - "au": "E4D4", - "softbank": "E347", - "google": "FE053", - "image": "1f353.png", - "sheet_x": 7, - "sheet_y": 14, - "short_name": "strawberry", - "short_names": ["strawberry"], - "text": null, - "texts": null, - "category": "Food & Drink", - "sort_order": 14, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "wind_chime": { - "char": "\ud83c\udf90", - "key": "wind_chime", - "keywords": ["wind_chime", "WIND CHIME"], - "category": "activity", - "lib": { - "name": "WIND CHIME", - "unified": "1F390", - "non_qualified": null, - "docomo": null, - "au": "EAED", - "softbank": "E442", - "google": "FE51E", - "image": "1f390.png", - "sheet_x": 8, - "sheet_y": 27, - "short_name": "wind_chime", - "short_names": ["wind_chime"], - "text": null, - "texts": null, - "category": "Activities", - "sort_order": 14, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "level_slider": { - "char": "\ud83c\udf9a\ufe0f", - "key": "level_slider", - "keywords": ["level_slider", ""], - "category": "objects", - "lib": { - "name": null, - "unified": "1F39A-FE0F", - "non_qualified": "1F39A", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f39a-fe0f.png", - "sheet_x": 8, - "sheet_y": 34, - "short_name": "level_slider", - "short_names": ["level_slider"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 14, - "added_in": "7.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "desert": { - "char": "\ud83c\udfdc\ufe0f", - "key": "desert", - "keywords": ["desert", ""], - "category": "travel_and_places", - "lib": { - "name": null, - "unified": "1F3DC-FE0F", - "non_qualified": "1F3DC", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f3dc-fe0f.png", - "sheet_x": 11, - "sheet_y": 34, - "short_name": "desert", - "short_names": ["desert"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 14, - "added_in": "7.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "tiger2": { - "char": "\ud83d\udc05", - "key": "tiger2", - "keywords": ["tiger2", "TIGER"], - "category": "animals_and_nature", - "lib": { - "name": "TIGER", - "unified": "1F405", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f405.png", - "sheet_x": 12, - "sheet_y": 24, - "short_name": "tiger2", - "short_names": ["tiger2"], - "text": null, - "texts": null, - "category": "Animals & Nature", - "sort_order": 14, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "kissing_heart": { - "char": "\ud83d\ude18", - "key": "kissing_heart", - "keywords": ["kissing_heart", "FACE THROWING A KISS"], - "category": "people", - "lib": { - "name": "FACE THROWING A KISS", - "unified": "1F618", - "non_qualified": null, - "docomo": "E726", - "au": "EACF", - "softbank": "E418", - "google": "FE32C", - "image": "1f618.png", - "sheet_x": 31, - "sheet_y": 14, - "short_name": "kissing_heart", - "short_names": ["kissing_heart"], - "text": null, - "texts": [":*", ":-*"], - "category": "Smileys & People", - "sort_order": 14, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "warning": { - "char": "\u26a0\ufe0f", - "key": "warning", - "keywords": ["warning", "WARNING SIGN"], - "category": "symbols", - "lib": { - "name": "WARNING SIGN", - "unified": "26A0-FE0F", - "non_qualified": "26A0", - "docomo": "E737", - "au": "E481", - "softbank": "E252", - "google": "FEB23", - "image": "26a0-fe0f.png", - "sheet_x": 50, - "sheet_y": 11, - "short_name": "warning", - "short_names": ["warning"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 14, - "added_in": "4.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-am": { - "char": "\ud83c\udde6\ud83c\uddf2", - "key": "flag-am", - "keywords": ["flag-am", "Armenia Flag"], - "category": "flags", - "lib": { - "name": "Armenia Flag", - "unified": "1F1E6-1F1F2", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1e6-1f1f2.png", - "sheet_x": 0, - "sheet_y": 38, - "short_name": "flag-am", - "short_names": ["flag-am"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 15, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "rice_scene": { - "char": "\ud83c\udf91", - "key": "rice_scene", - "keywords": ["rice_scene", "MOON VIEWING CEREMONY"], - "category": "activity", - "lib": { - "name": "MOON VIEWING CEREMONY", - "unified": "1F391", - "non_qualified": null, - "docomo": null, - "au": "EAEF", - "softbank": "E446", - "google": "FE017", - "image": "1f391.png", - "sheet_x": 8, - "sheet_y": 28, - "short_name": "rice_scene", - "short_names": ["rice_scene"], - "text": null, - "texts": null, - "category": "Activities", - "sort_order": 15, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "control_knobs": { - "char": "\ud83c\udf9b\ufe0f", - "key": "control_knobs", - "keywords": ["control_knobs", ""], - "category": "objects", - "lib": { - "name": null, - "unified": "1F39B-FE0F", - "non_qualified": "1F39B", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f39b-fe0f.png", - "sheet_x": 8, - "sheet_y": 35, - "short_name": "control_knobs", - "short_names": ["control_knobs"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 15, - "added_in": "7.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "desert_island": { - "char": "\ud83c\udfdd\ufe0f", - "key": "desert_island", - "keywords": ["desert_island", ""], - "category": "travel_and_places", - "lib": { - "name": null, - "unified": "1F3DD-FE0F", - "non_qualified": "1F3DD", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f3dd-fe0f.png", - "sheet_x": 11, - "sheet_y": 35, - "short_name": "desert_island", - "short_names": ["desert_island"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 15, - "added_in": "7.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "leopard": { - "char": "\ud83d\udc06", - "key": "leopard", - "keywords": ["leopard", "LEOPARD"], - "category": "animals_and_nature", - "lib": { - "name": "LEOPARD", - "unified": "1F406", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f406.png", - "sheet_x": 12, - "sheet_y": 25, - "short_name": "leopard", - "short_names": ["leopard"], - "text": null, - "texts": null, - "category": "Animals & Nature", - "sort_order": 15, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "children_crossing": { - "char": "\ud83d\udeb8", - "key": "children_crossing", - "keywords": ["children_crossing", "CHILDREN CROSSING"], - "category": "symbols", - "lib": { - "name": "CHILDREN CROSSING", - "unified": "1F6B8", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f6b8.png", - "sheet_x": 36, - "sheet_y": 41, - "short_name": "children_crossing", - "short_names": ["children_crossing"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 15, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "kiwifruit": { - "char": "\ud83e\udd5d", - "key": "kiwifruit", - "keywords": ["kiwifruit", "KIWIFRUIT"], - "category": "food_and_drink", - "lib": { - "name": "KIWIFRUIT", - "unified": "1F95D", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f95d.png", - "sheet_x": 42, - "sheet_y": 20, - "short_name": "kiwifruit", - "short_names": ["kiwifruit"], - "text": null, - "texts": null, - "category": "Food & Drink", - "sort_order": 15, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "smiling_face_with_3_hearts": { - "char": "\ud83e\udd70", - "key": "smiling_face_with_3_hearts", - "keywords": ["smiling_face_with_3_hearts", "SMILING FACE WITH SMILING EYES AND THREE HEARTS"], - "category": "people", - "lib": { - "name": "SMILING FACE WITH SMILING EYES AND THREE HEARTS", - "unified": "1F970", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f970.png", - "sheet_x": 42, - "sheet_y": 39, - "short_name": "smiling_face_with_3_hearts", - "short_names": ["smiling_face_with_3_hearts"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 15, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - } - }, - "flag-ao": { - "char": "\ud83c\udde6\ud83c\uddf4", - "key": "flag-ao", - "keywords": ["flag-ao", "Angola Flag"], - "category": "flags", - "lib": { - "name": "Angola Flag", - "unified": "1F1E6-1F1F4", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1e6-1f1f4.png", - "sheet_x": 0, - "sheet_y": 39, - "short_name": "flag-ao", - "short_names": ["flag-ao"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 16, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "tomato": { - "char": "\ud83c\udf45", - "key": "tomato", - "keywords": ["tomato", "TOMATO"], - "category": "food_and_drink", - "lib": { - "name": "TOMATO", - "unified": "1F345", - "non_qualified": null, - "docomo": null, - "au": "EABB", - "softbank": "E349", - "google": "FE055", - "image": "1f345.png", - "sheet_x": 7, - "sheet_y": 0, - "short_name": "tomato", - "short_names": ["tomato"], - "text": null, - "texts": null, - "category": "Food & Drink", - "sort_order": 16, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "microphone": { - "char": "\ud83c\udfa4", - "key": "microphone", - "keywords": ["microphone", "MICROPHONE"], - "category": "objects", - "lib": { - "name": "MICROPHONE", - "unified": "1F3A4", - "non_qualified": null, - "docomo": "E676", - "au": "E503", - "softbank": "E03C", - "google": "FE800", - "image": "1f3a4.png", - "sheet_x": 8, - "sheet_y": 42, - "short_name": "microphone", - "short_names": ["microphone"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 16, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "national_park": { - "char": "\ud83c\udfde\ufe0f", - "key": "national_park", - "keywords": ["national_park", ""], - "category": "travel_and_places", - "lib": { - "name": null, - "unified": "1F3DE-FE0F", - "non_qualified": "1F3DE", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f3de-fe0f.png", - "sheet_x": 11, - "sheet_y": 36, - "short_name": "national_park", - "short_names": ["national_park"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 16, - "added_in": "7.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "horse": { - "char": "\ud83d\udc34", - "key": "horse", - "keywords": ["horse", "HORSE FACE"], - "category": "animals_and_nature", - "lib": { - "name": "HORSE FACE", - "unified": "1F434", - "non_qualified": null, - "docomo": "E754", - "au": "E4D8", - "softbank": "E01A", - "google": "FE1BE", - "image": "1f434.png", - "sheet_x": 13, - "sheet_y": 18, - "short_name": "horse", - "short_names": ["horse"], - "text": null, - "texts": null, - "category": "Animals & Nature", - "sort_order": 16, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "kissing": { - "char": "\ud83d\ude17", - "key": "kissing", - "keywords": ["kissing", "KISSING FACE"], - "category": "people", - "lib": { - "name": "KISSING FACE", - "unified": "1F617", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f617.png", - "sheet_x": 31, - "sheet_y": 13, - "short_name": "kissing", - "short_names": ["kissing"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 16, - "added_in": "6.1", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "red_envelope": { - "char": "\ud83e\udde7", - "key": "red_envelope", - "keywords": ["red_envelope", "RED GIFT ENVELOPE"], - "category": "activity", - "lib": { - "name": "RED GIFT ENVELOPE", - "unified": "1F9E7", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f9e7.png", - "sheet_x": 47, - "sheet_y": 48, - "short_name": "red_envelope", - "short_names": ["red_envelope"], - "text": null, - "texts": null, - "category": "Activities", - "sort_order": 16, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - } - }, - "no_entry": { - "char": "\u26d4", - "key": "no_entry", - "keywords": ["no_entry", "NO ENTRY"], - "category": "symbols", - "lib": { - "name": "NO ENTRY", - "unified": "26D4", - "non_qualified": null, - "docomo": "E72F", - "au": "E484", - "softbank": null, - "google": "FEB26", - "image": "26d4.png", - "sheet_x": 50, - "sheet_y": 26, - "short_name": "no_entry", - "short_names": ["no_entry"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 16, - "added_in": "5.2", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-aq": { - "char": "\ud83c\udde6\ud83c\uddf6", - "key": "flag-aq", - "keywords": ["flag-aq", "Antarctica Flag"], - "category": "flags", - "lib": { - "name": "Antarctica Flag", - "unified": "1F1E6-1F1F6", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1e6-1f1f6.png", - "sheet_x": 0, - "sheet_y": 40, - "short_name": "flag-aq", - "short_names": ["flag-aq"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 17, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "ribbon": { - "char": "\ud83c\udf80", - "key": "ribbon", - "keywords": ["ribbon", "RIBBON"], - "category": "activity", - "lib": { - "name": "RIBBON", - "unified": "1F380", - "non_qualified": null, - "docomo": "E684", - "au": "E59F", - "softbank": "E314", - "google": "FE50F", - "image": "1f380.png", - "sheet_x": 8, - "sheet_y": 6, - "short_name": "ribbon", - "short_names": ["ribbon"], - "text": null, - "texts": null, - "category": "Activities", - "sort_order": 17, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "headphones": { - "char": "\ud83c\udfa7", - "key": "headphones", - "keywords": ["headphones", "HEADPHONE"], - "category": "objects", - "lib": { - "name": "HEADPHONE", - "unified": "1F3A7", - "non_qualified": null, - "docomo": "E67A", - "au": "E508", - "softbank": "E30A", - "google": "FE803", - "image": "1f3a7.png", - "sheet_x": 8, - "sheet_y": 45, - "short_name": "headphones", - "short_names": ["headphones"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 17, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "stadium": { - "char": "\ud83c\udfdf\ufe0f", - "key": "stadium", - "keywords": ["stadium", ""], - "category": "travel_and_places", - "lib": { - "name": null, - "unified": "1F3DF-FE0F", - "non_qualified": "1F3DF", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f3df-fe0f.png", - "sheet_x": 11, - "sheet_y": 37, - "short_name": "stadium", - "short_names": ["stadium"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 17, - "added_in": "7.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "racehorse": { - "char": "\ud83d\udc0e", - "key": "racehorse", - "keywords": ["racehorse", "HORSE"], - "category": "animals_and_nature", - "lib": { - "name": "HORSE", - "unified": "1F40E", - "non_qualified": null, - "docomo": "E754", - "au": "E4D8", - "softbank": "E134", - "google": "FE7DC", - "image": "1f40e.png", - "sheet_x": 12, - "sheet_y": 33, - "short_name": "racehorse", - "short_names": ["racehorse"], - "text": null, - "texts": null, - "category": "Animals & Nature", - "sort_order": 17, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "kissing_smiling_eyes": { - "char": "\ud83d\ude19", - "key": "kissing_smiling_eyes", - "keywords": ["kissing_smiling_eyes", "KISSING FACE WITH SMILING EYES"], - "category": "people", - "lib": { - "name": "KISSING FACE WITH SMILING EYES", - "unified": "1F619", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f619.png", - "sheet_x": 31, - "sheet_y": 15, - "short_name": "kissing_smiling_eyes", - "short_names": ["kissing_smiling_eyes"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 17, - "added_in": "6.1", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "no_entry_sign": { - "char": "\ud83d\udeab", - "key": "no_entry_sign", - "keywords": ["no_entry_sign", "NO ENTRY SIGN"], - "category": "symbols", - "lib": { - "name": "NO ENTRY SIGN", - "unified": "1F6AB", - "non_qualified": null, - "docomo": "E738", - "au": "E541", - "softbank": null, - "google": "FEB48", - "image": "1f6ab.png", - "sheet_x": 35, - "sheet_y": 30, - "short_name": "no_entry_sign", - "short_names": ["no_entry_sign"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 17, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "coconut": { - "char": "\ud83e\udd65", - "key": "coconut", - "keywords": ["coconut", "COCONUT"], - "category": "food_and_drink", - "lib": { - "name": "COCONUT", - "unified": "1F965", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f965.png", - "sheet_x": 42, - "sheet_y": 28, - "short_name": "coconut", - "short_names": ["coconut"], - "text": null, - "texts": null, - "category": "Food & Drink", - "sort_order": 17, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "flag-ar": { - "char": "\ud83c\udde6\ud83c\uddf7", - "key": "flag-ar", - "keywords": ["flag-ar", "Argentina Flag"], - "category": "flags", - "lib": { - "name": "Argentina Flag", - "unified": "1F1E6-1F1F7", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1e6-1f1f7.png", - "sheet_x": 0, - "sheet_y": 41, - "short_name": "flag-ar", - "short_names": ["flag-ar"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 18, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "gift": { - "char": "\ud83c\udf81", - "key": "gift", - "keywords": ["gift", "WRAPPED PRESENT"], - "category": "activity", - "lib": { - "name": "WRAPPED PRESENT", - "unified": "1F381", - "non_qualified": null, - "docomo": "E685", - "au": "E4CF", - "softbank": "E112", - "google": "FE510", - "image": "1f381.png", - "sheet_x": 8, - "sheet_y": 7, - "short_name": "gift", - "short_names": ["gift"], - "text": null, - "texts": null, - "category": "Activities", - "sort_order": 18, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "classical_building": { - "char": "\ud83c\udfdb\ufe0f", - "key": "classical_building", - "keywords": ["classical_building", ""], - "category": "travel_and_places", - "lib": { - "name": null, - "unified": "1F3DB-FE0F", - "non_qualified": "1F3DB", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f3db-fe0f.png", - "sheet_x": 11, - "sheet_y": 33, - "short_name": "classical_building", - "short_names": ["classical_building"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 18, - "added_in": "7.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "radio": { - "char": "\ud83d\udcfb", - "key": "radio", - "keywords": ["radio", "RADIO"], - "category": "objects", - "lib": { - "name": "RADIO", - "unified": "1F4FB", - "non_qualified": null, - "docomo": null, - "au": "E5B9", - "softbank": "E128", - "google": "FE81F", - "image": "1f4fb.png", - "sheet_x": 27, - "sheet_y": 20, - "short_name": "radio", - "short_names": ["radio"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 18, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "kissing_closed_eyes": { - "char": "\ud83d\ude1a", - "key": "kissing_closed_eyes", - "keywords": ["kissing_closed_eyes", "KISSING FACE WITH CLOSED EYES"], - "category": "people", - "lib": { - "name": "KISSING FACE WITH CLOSED EYES", - "unified": "1F61A", - "non_qualified": null, - "docomo": "E726", - "au": "EACE", - "softbank": "E417", - "google": "FE32D", - "image": "1f61a.png", - "sheet_x": 31, - "sheet_y": 16, - "short_name": "kissing_closed_eyes", - "short_names": ["kissing_closed_eyes"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 18, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "no_bicycles": { - "char": "\ud83d\udeb3", - "key": "no_bicycles", - "keywords": ["no_bicycles", "NO BICYCLES"], - "category": "symbols", - "lib": { - "name": "NO BICYCLES", - "unified": "1F6B3", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f6b3.png", - "sheet_x": 35, - "sheet_y": 38, - "short_name": "no_bicycles", - "short_names": ["no_bicycles"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 18, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "avocado": { - "char": "\ud83e\udd51", - "key": "avocado", - "keywords": ["avocado", "AVOCADO"], - "category": "food_and_drink", - "lib": { - "name": "AVOCADO", - "unified": "1F951", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f951.png", - "sheet_x": 42, - "sheet_y": 8, - "short_name": "avocado", - "short_names": ["avocado"], - "text": null, - "texts": null, - "category": "Food & Drink", - "sort_order": 18, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "unicorn_face": { - "char": "\ud83e\udd84", - "key": "unicorn_face", - "keywords": ["unicorn_face", "UNICORN FACE"], - "category": "animals_and_nature", - "lib": { - "name": "UNICORN FACE", - "unified": "1F984", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f984.png", - "sheet_x": 43, - "sheet_y": 0, - "short_name": "unicorn_face", - "short_names": ["unicorn_face"], - "text": null, - "texts": null, - "category": "Animals & Nature", - "sort_order": 18, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "flag-as": { - "char": "\ud83c\udde6\ud83c\uddf8", - "key": "flag-as", - "keywords": ["flag-as", "American Samoa Flag"], - "category": "flags", - "lib": { - "name": "American Samoa Flag", - "unified": "1F1E6-1F1F8", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1e6-1f1f8.png", - "sheet_x": 0, - "sheet_y": 42, - "short_name": "flag-as", - "short_names": ["flag-as"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 19, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "eggplant": { - "char": "\ud83c\udf46", - "key": "eggplant", - "keywords": ["eggplant", "AUBERGINE"], - "category": "food_and_drink", - "lib": { - "name": "AUBERGINE", - "unified": "1F346", - "non_qualified": null, - "docomo": null, - "au": "EABC", - "softbank": "E34A", - "google": "FE056", - "image": "1f346.png", - "sheet_x": 7, - "sheet_y": 1, - "short_name": "eggplant", - "short_names": ["eggplant"], - "text": null, - "texts": null, - "category": "Food & Drink", - "sort_order": 19, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "reminder_ribbon": { - "char": "\ud83c\udf97\ufe0f", - "key": "reminder_ribbon", - "keywords": ["reminder_ribbon", ""], - "category": "activity", - "lib": { - "name": null, - "unified": "1F397-FE0F", - "non_qualified": "1F397", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f397-fe0f.png", - "sheet_x": 8, - "sheet_y": 32, - "short_name": "reminder_ribbon", - "short_names": ["reminder_ribbon"], - "text": null, - "texts": null, - "category": "Activities", - "sort_order": 19, - "added_in": "7.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "saxophone": { - "char": "\ud83c\udfb7", - "key": "saxophone", - "keywords": ["saxophone", "SAXOPHONE"], - "category": "objects", - "lib": { - "name": "SAXOPHONE", - "unified": "1F3B7", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": "E040", - "google": "FE815", - "image": "1f3b7.png", - "sheet_x": 9, - "sheet_y": 8, - "short_name": "saxophone", - "short_names": ["saxophone"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 19, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "building_construction": { - "char": "\ud83c\udfd7\ufe0f", - "key": "building_construction", - "keywords": ["building_construction", ""], - "category": "travel_and_places", - "lib": { - "name": null, - "unified": "1F3D7-FE0F", - "non_qualified": "1F3D7", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f3d7-fe0f.png", - "sheet_x": 11, - "sheet_y": 29, - "short_name": "building_construction", - "short_names": ["building_construction"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 19, - "added_in": "7.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "no_smoking": { - "char": "\ud83d\udead", - "key": "no_smoking", - "keywords": ["no_smoking", "NO SMOKING SYMBOL"], - "category": "symbols", - "lib": { - "name": "NO SMOKING SYMBOL", - "unified": "1F6AD", - "non_qualified": null, - "docomo": "E680", - "au": "E47E", - "softbank": "E208", - "google": "FEB1F", - "image": "1f6ad.png", - "sheet_x": 35, - "sheet_y": 32, - "short_name": "no_smoking", - "short_names": ["no_smoking"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 19, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "zebra_face": { - "char": "\ud83e\udd93", - "key": "zebra_face", - "keywords": ["zebra_face", "ZEBRA FACE"], - "category": "animals_and_nature", - "lib": { - "name": "ZEBRA FACE", - "unified": "1F993", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f993.png", - "sheet_x": 43, - "sheet_y": 15, - "short_name": "zebra_face", - "short_names": ["zebra_face"], - "text": null, - "texts": null, - "category": "Animals & Nature", - "sort_order": 19, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "relaxed": { - "char": "\u263a\ufe0f", - "key": "relaxed", - "keywords": ["relaxed", "WHITE SMILING FACE"], - "category": "people", - "lib": { - "name": "WHITE SMILING FACE", - "unified": "263A-FE0F", - "non_qualified": "263A", - "docomo": "E6F0", - "au": "E4FB", - "softbank": "E414", - "google": "FE336", - "image": "263a-fe0f.png", - "sheet_x": 49, - "sheet_y": 31, - "short_name": "relaxed", - "short_names": ["relaxed"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 19, - "added_in": "1.1", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-at": { - "char": "\ud83c\udde6\ud83c\uddf9", - "key": "flag-at", - "keywords": ["flag-at", "Austria Flag"], - "category": "flags", - "lib": { - "name": "Austria Flag", - "unified": "1F1E6-1F1F9", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1e6-1f1f9.png", - "sheet_x": 0, - "sheet_y": 43, - "short_name": "flag-at", - "short_names": ["flag-at"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 20, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "admission_tickets": { - "char": "\ud83c\udf9f\ufe0f", - "key": "admission_tickets", - "keywords": ["admission_tickets", ""], - "category": "activity", - "lib": { - "name": null, - "unified": "1F39F-FE0F", - "non_qualified": "1F39F", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f39f-fe0f.png", - "sheet_x": 8, - "sheet_y": 37, - "short_name": "admission_tickets", - "short_names": ["admission_tickets"], - "text": null, - "texts": null, - "category": "Activities", - "sort_order": 20, - "added_in": "7.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "guitar": { - "char": "\ud83c\udfb8", - "key": "guitar", - "keywords": ["guitar", "GUITAR"], - "category": "objects", - "lib": { - "name": "GUITAR", - "unified": "1F3B8", - "non_qualified": null, - "docomo": null, - "au": "E506", - "softbank": "E041", - "google": "FE816", - "image": "1f3b8.png", - "sheet_x": 9, - "sheet_y": 9, - "short_name": "guitar", - "short_names": ["guitar"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 20, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "slightly_smiling_face": { - "char": "\ud83d\ude42", - "key": "slightly_smiling_face", - "keywords": ["slightly_smiling_face", "SLIGHTLY SMILING FACE"], - "category": "people", - "lib": { - "name": "SLIGHTLY SMILING FACE", - "unified": "1F642", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f642.png", - "sheet_x": 32, - "sheet_y": 3, - "short_name": "slightly_smiling_face", - "short_names": ["slightly_smiling_face"], - "text": null, - "texts": [":)", "(:", ":-)"], - "category": "Smileys & People", - "sort_order": 20, - "added_in": "7.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "do_not_litter": { - "char": "\ud83d\udeaf", - "key": "do_not_litter", - "keywords": ["do_not_litter", "DO NOT LITTER SYMBOL"], - "category": "symbols", - "lib": { - "name": "DO NOT LITTER SYMBOL", - "unified": "1F6AF", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f6af.png", - "sheet_x": 35, - "sheet_y": 34, - "short_name": "do_not_litter", - "short_names": ["do_not_litter"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 20, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "potato": { - "char": "\ud83e\udd54", - "key": "potato", - "keywords": ["potato", "POTATO"], - "category": "food_and_drink", - "lib": { - "name": "POTATO", - "unified": "1F954", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f954.png", - "sheet_x": 42, - "sheet_y": 11, - "short_name": "potato", - "short_names": ["potato"], - "text": null, - "texts": null, - "category": "Food & Drink", - "sort_order": 20, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "deer": { - "char": "\ud83e\udd8c", - "key": "deer", - "keywords": ["deer", "DEER"], - "category": "animals_and_nature", - "lib": { - "name": "DEER", - "unified": "1F98C", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f98c.png", - "sheet_x": 43, - "sheet_y": 8, - "short_name": "deer", - "short_names": ["deer"], - "text": null, - "texts": null, - "category": "Animals & Nature", - "sort_order": 20, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "bricks": { - "char": "\ud83e\uddf1", - "key": "bricks", - "keywords": ["bricks", "BRICK"], - "category": "travel_and_places", - "lib": { - "name": "BRICK", - "unified": "1F9F1", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f9f1.png", - "sheet_x": 48, - "sheet_y": 5, - "short_name": "bricks", - "short_names": ["bricks"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 20, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - } - }, - "flag-au": { - "char": "\ud83c\udde6\ud83c\uddfa", - "key": "flag-au", - "keywords": ["flag-au", "Australia Flag"], - "category": "flags", - "lib": { - "name": "Australia Flag", - "unified": "1F1E6-1F1FA", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1e6-1f1fa.png", - "sheet_x": 0, - "sheet_y": 44, - "short_name": "flag-au", - "short_names": ["flag-au"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 21, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "ticket": { - "char": "\ud83c\udfab", - "key": "ticket", - "keywords": ["ticket", "TICKET"], - "category": "activity", - "lib": { - "name": "TICKET", - "unified": "1F3AB", - "non_qualified": null, - "docomo": "E67E", - "au": "E49E", - "softbank": "E125", - "google": "FE807", - "image": "1f3ab.png", - "sheet_x": 8, - "sheet_y": 49, - "short_name": "ticket", - "short_names": ["ticket"], - "text": null, - "texts": null, - "category": "Activities", - "sort_order": 21, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "musical_keyboard": { - "char": "\ud83c\udfb9", - "key": "musical_keyboard", - "keywords": ["musical_keyboard", "MUSICAL KEYBOARD"], - "category": "objects", - "lib": { - "name": "MUSICAL KEYBOARD", - "unified": "1F3B9", - "non_qualified": null, - "docomo": null, - "au": "EB40", - "softbank": null, - "google": "FE817", - "image": "1f3b9.png", - "sheet_x": 9, - "sheet_y": 10, - "short_name": "musical_keyboard", - "short_names": ["musical_keyboard"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 21, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "house_buildings": { - "char": "\ud83c\udfd8\ufe0f", - "key": "house_buildings", - "keywords": ["house_buildings", ""], - "category": "travel_and_places", - "lib": { - "name": null, - "unified": "1F3D8-FE0F", - "non_qualified": "1F3D8", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f3d8-fe0f.png", - "sheet_x": 11, - "sheet_y": 30, - "short_name": "house_buildings", - "short_names": ["house_buildings"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 21, - "added_in": "7.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "cow": { - "char": "\ud83d\udc2e", - "key": "cow", - "keywords": ["cow", "COW FACE"], - "category": "animals_and_nature", - "lib": { - "name": "COW FACE", - "unified": "1F42E", - "non_qualified": null, - "docomo": null, - "au": "EB21", - "softbank": "E52B", - "google": "FE1D1", - "image": "1f42e.png", - "sheet_x": 13, - "sheet_y": 12, - "short_name": "cow", - "short_names": ["cow"], - "text": null, - "texts": null, - "category": "Animals & Nature", - "sort_order": 21, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "non-potable_water": { - "char": "\ud83d\udeb1", - "key": "non-potable_water", - "keywords": ["non-potable_water", "NON-POTABLE WATER SYMBOL"], - "category": "symbols", - "lib": { - "name": "NON-POTABLE WATER SYMBOL", - "unified": "1F6B1", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f6b1.png", - "sheet_x": 35, - "sheet_y": 36, - "short_name": "non-potable_water", - "short_names": ["non-potable_water"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 21, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "hugging_face": { - "char": "\ud83e\udd17", - "key": "hugging_face", - "keywords": ["hugging_face", "HUGGING FACE"], - "category": "people", - "lib": { - "name": "HUGGING FACE", - "unified": "1F917", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f917.png", - "sheet_x": 37, - "sheet_y": 44, - "short_name": "hugging_face", - "short_names": ["hugging_face"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 21, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "carrot": { - "char": "\ud83e\udd55", - "key": "carrot", - "keywords": ["carrot", "CARROT"], - "category": "food_and_drink", - "lib": { - "name": "CARROT", - "unified": "1F955", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f955.png", - "sheet_x": 42, - "sheet_y": 12, - "short_name": "carrot", - "short_names": ["carrot"], - "text": null, - "texts": null, - "category": "Food & Drink", - "sort_order": 21, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "flag-aw": { - "char": "\ud83c\udde6\ud83c\uddfc", - "key": "flag-aw", - "keywords": ["flag-aw", "Aruba Flag"], - "category": "flags", - "lib": { - "name": "Aruba Flag", - "unified": "1F1E6-1F1FC", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1e6-1f1fc.png", - "sheet_x": 0, - "sheet_y": 45, - "short_name": "flag-aw", - "short_names": ["flag-aw"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 22, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "corn": { - "char": "\ud83c\udf3d", - "key": "corn", - "keywords": ["corn", "EAR OF MAIZE"], - "category": "food_and_drink", - "lib": { - "name": "EAR OF MAIZE", - "unified": "1F33D", - "non_qualified": null, - "docomo": null, - "au": "EB36", - "softbank": null, - "google": "FE04A", - "image": "1f33d.png", - "sheet_x": 6, - "sheet_y": 45, - "short_name": "corn", - "short_names": ["corn"], - "text": null, - "texts": null, - "category": "Food & Drink", - "sort_order": 22, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "medal": { - "char": "\ud83c\udf96\ufe0f", - "key": "medal", - "keywords": ["medal", ""], - "category": "activity", - "lib": { - "name": null, - "unified": "1F396-FE0F", - "non_qualified": "1F396", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f396-fe0f.png", - "sheet_x": 8, - "sheet_y": 31, - "short_name": "medal", - "short_names": ["medal"], - "text": null, - "texts": null, - "category": "Activities", - "sort_order": 22, - "added_in": "7.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "trumpet": { - "char": "\ud83c\udfba", - "key": "trumpet", - "keywords": ["trumpet", "TRUMPET"], - "category": "objects", - "lib": { - "name": "TRUMPET", - "unified": "1F3BA", - "non_qualified": null, - "docomo": null, - "au": "EADC", - "softbank": "E042", - "google": "FE818", - "image": "1f3ba.png", - "sheet_x": 9, - "sheet_y": 11, - "short_name": "trumpet", - "short_names": ["trumpet"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 22, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "derelict_house_building": { - "char": "\ud83c\udfda\ufe0f", - "key": "derelict_house_building", - "keywords": ["derelict_house_building", ""], - "category": "travel_and_places", - "lib": { - "name": null, - "unified": "1F3DA-FE0F", - "non_qualified": "1F3DA", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f3da-fe0f.png", - "sheet_x": 11, - "sheet_y": 32, - "short_name": "derelict_house_building", - "short_names": ["derelict_house_building"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 22, - "added_in": "7.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "ox": { - "char": "\ud83d\udc02", - "key": "ox", - "keywords": ["ox", "OX"], - "category": "animals_and_nature", - "lib": { - "name": "OX", - "unified": "1F402", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f402.png", - "sheet_x": 12, - "sheet_y": 21, - "short_name": "ox", - "short_names": ["ox"], - "text": null, - "texts": null, - "category": "Animals & Nature", - "sort_order": 22, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "no_pedestrians": { - "char": "\ud83d\udeb7", - "key": "no_pedestrians", - "keywords": ["no_pedestrians", "NO PEDESTRIANS"], - "category": "symbols", - "lib": { - "name": "NO PEDESTRIANS", - "unified": "1F6B7", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f6b7.png", - "sheet_x": 36, - "sheet_y": 40, - "short_name": "no_pedestrians", - "short_names": ["no_pedestrians"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 22, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "star-struck": { - "char": "\ud83e\udd29", - "key": "star-struck", - "keywords": ["star-struck", "GRINNING FACE WITH STAR EYES"], - "category": "people", - "lib": { - "name": "GRINNING FACE WITH STAR EYES", - "unified": "1F929", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f929.png", - "sheet_x": 39, - "sheet_y": 8, - "short_name": "star-struck", - "short_names": ["star-struck", "grinning_face_with_star_eyes"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 22, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "flag-ax": { - "char": "\ud83c\udde6\ud83c\uddfd", - "key": "flag-ax", - "keywords": ["flag-ax", "\u00c5land Islands Flag"], - "category": "flags", - "lib": { - "name": "\u00c5land Islands Flag", - "unified": "1F1E6-1F1FD", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1e6-1f1fd.png", - "sheet_x": 0, - "sheet_y": 46, - "short_name": "flag-ax", - "short_names": ["flag-ax"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 23, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "hot_pepper": { - "char": "\ud83c\udf36\ufe0f", - "key": "hot_pepper", - "keywords": ["hot_pepper", ""], - "category": "food_and_drink", - "lib": { - "name": null, - "unified": "1F336-FE0F", - "non_qualified": "1F336", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f336-fe0f.png", - "sheet_x": 6, - "sheet_y": 38, - "short_name": "hot_pepper", - "short_names": ["hot_pepper"], - "text": null, - "texts": null, - "category": "Food & Drink", - "sort_order": 23, - "added_in": "7.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "violin": { - "char": "\ud83c\udfbb", - "key": "violin", - "keywords": ["violin", "VIOLIN"], - "category": "objects", - "lib": { - "name": "VIOLIN", - "unified": "1F3BB", - "non_qualified": null, - "docomo": null, - "au": "E507", - "softbank": null, - "google": "FE819", - "image": "1f3bb.png", - "sheet_x": 9, - "sheet_y": 12, - "short_name": "violin", - "short_names": ["violin"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 23, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "trophy": { - "char": "\ud83c\udfc6", - "key": "trophy", - "keywords": ["trophy", "TROPHY"], - "category": "activity", - "lib": { - "name": "TROPHY", - "unified": "1F3C6", - "non_qualified": null, - "docomo": null, - "au": "E5D3", - "softbank": "E131", - "google": "FE7DB", - "image": "1f3c6.png", - "sheet_x": 10, - "sheet_y": 9, - "short_name": "trophy", - "short_names": ["trophy"], - "text": null, - "texts": null, - "category": "Activities", - "sort_order": 23, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "house": { - "char": "\ud83c\udfe0", - "key": "house", - "keywords": ["house", "HOUSE BUILDING"], - "category": "travel_and_places", - "lib": { - "name": "HOUSE BUILDING", - "unified": "1F3E0", - "non_qualified": null, - "docomo": "E663", - "au": "E4AB", - "softbank": "E036", - "google": "FE4B0", - "image": "1f3e0.png", - "sheet_x": 11, - "sheet_y": 38, - "short_name": "house", - "short_names": ["house"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 23, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "water_buffalo": { - "char": "\ud83d\udc03", - "key": "water_buffalo", - "keywords": ["water_buffalo", "WATER BUFFALO"], - "category": "animals_and_nature", - "lib": { - "name": "WATER BUFFALO", - "unified": "1F403", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f403.png", - "sheet_x": 12, - "sheet_y": 22, - "short_name": "water_buffalo", - "short_names": ["water_buffalo"], - "text": null, - "texts": null, - "category": "Animals & Nature", - "sort_order": 23, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "no_mobile_phones": { - "char": "\ud83d\udcf5", - "key": "no_mobile_phones", - "keywords": ["no_mobile_phones", "NO MOBILE PHONES"], - "category": "symbols", - "lib": { - "name": "NO MOBILE PHONES", - "unified": "1F4F5", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f4f5.png", - "sheet_x": 27, - "sheet_y": 14, - "short_name": "no_mobile_phones", - "short_names": ["no_mobile_phones"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 23, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "thinking_face": { - "char": "\ud83e\udd14", - "key": "thinking_face", - "keywords": ["thinking_face", "THINKING FACE"], - "category": "people", - "lib": { - "name": "THINKING FACE", - "unified": "1F914", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f914.png", - "sheet_x": 37, - "sheet_y": 41, - "short_name": "thinking_face", - "short_names": ["thinking_face"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 23, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "flag-az": { - "char": "\ud83c\udde6\ud83c\uddff", - "key": "flag-az", - "keywords": ["flag-az", "Azerbaijan Flag"], - "category": "flags", - "lib": { - "name": "Azerbaijan Flag", - "unified": "1F1E6-1F1FF", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1e6-1f1ff.png", - "sheet_x": 0, - "sheet_y": 47, - "short_name": "flag-az", - "short_names": ["flag-az"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 24, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "sports_medal": { - "char": "\ud83c\udfc5", - "key": "sports_medal", - "keywords": ["sports_medal", "SPORTS MEDAL"], - "category": "activity", - "lib": { - "name": "SPORTS MEDAL", - "unified": "1F3C5", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f3c5.png", - "sheet_x": 10, - "sheet_y": 8, - "short_name": "sports_medal", - "short_names": ["sports_medal"], - "text": null, - "texts": null, - "category": "Activities", - "sort_order": 24, - "added_in": "7.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "house_with_garden": { - "char": "\ud83c\udfe1", - "key": "house_with_garden", - "keywords": ["house_with_garden", "HOUSE WITH GARDEN"], - "category": "travel_and_places", - "lib": { - "name": "HOUSE WITH GARDEN", - "unified": "1F3E1", - "non_qualified": null, - "docomo": "E663", - "au": "EB09", - "softbank": null, - "google": "FE4B1", - "image": "1f3e1.png", - "sheet_x": 11, - "sheet_y": 39, - "short_name": "house_with_garden", - "short_names": ["house_with_garden"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 24, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "cow2": { - "char": "\ud83d\udc04", - "key": "cow2", - "keywords": ["cow2", "COW"], - "category": "animals_and_nature", - "lib": { - "name": "COW", - "unified": "1F404", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f404.png", - "sheet_x": 12, - "sheet_y": 23, - "short_name": "cow2", - "short_names": ["cow2"], - "text": null, - "texts": null, - "category": "Animals & Nature", - "sort_order": 24, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "underage": { - "char": "\ud83d\udd1e", - "key": "underage", - "keywords": ["underage", "NO ONE UNDER EIGHTEEN SYMBOL"], - "category": "symbols", - "lib": { - "name": "NO ONE UNDER EIGHTEEN SYMBOL", - "unified": "1F51E", - "non_qualified": null, - "docomo": null, - "au": "EA83", - "softbank": "E207", - "google": "FEB25", - "image": "1f51e.png", - "sheet_x": 28, - "sheet_y": 1, - "short_name": "underage", - "short_names": ["underage"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 24, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "face_with_raised_eyebrow": { - "char": "\ud83e\udd28", - "key": "face_with_raised_eyebrow", - "keywords": ["face_with_raised_eyebrow", "FACE WITH ONE EYEBROW RAISED"], - "category": "people", - "lib": { - "name": "FACE WITH ONE EYEBROW RAISED", - "unified": "1F928", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f928.png", - "sheet_x": 39, - "sheet_y": 7, - "short_name": "face_with_raised_eyebrow", - "short_names": ["face_with_raised_eyebrow", "face_with_one_eyebrow_raised"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 24, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "drum_with_drumsticks": { - "char": "\ud83e\udd41", - "key": "drum_with_drumsticks", - "keywords": ["drum_with_drumsticks", "DRUM WITH DRUMSTICKS"], - "category": "objects", - "lib": { - "name": "DRUM WITH DRUMSTICKS", - "unified": "1F941", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f941.png", - "sheet_x": 41, - "sheet_y": 46, - "short_name": "drum_with_drumsticks", - "short_names": ["drum_with_drumsticks"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 24, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "cucumber": { - "char": "\ud83e\udd52", - "key": "cucumber", - "keywords": ["cucumber", "CUCUMBER"], - "category": "food_and_drink", - "lib": { - "name": "CUCUMBER", - "unified": "1F952", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f952.png", - "sheet_x": 42, - "sheet_y": 9, - "short_name": "cucumber", - "short_names": ["cucumber"], - "text": null, - "texts": null, - "category": "Food & Drink", - "sort_order": 24, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "flag-ba": { - "char": "\ud83c\udde7\ud83c\udde6", - "key": "flag-ba", - "keywords": ["flag-ba", "Bosnia & Herzegovina Flag"], - "category": "flags", - "lib": { - "name": "Bosnia & Herzegovina Flag", - "unified": "1F1E7-1F1E6", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1e7-1f1e6.png", - "sheet_x": 0, - "sheet_y": 48, - "short_name": "flag-ba", - "short_names": ["flag-ba"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 25, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "office": { - "char": "\ud83c\udfe2", - "key": "office", - "keywords": ["office", "OFFICE BUILDING"], - "category": "travel_and_places", - "lib": { - "name": "OFFICE BUILDING", - "unified": "1F3E2", - "non_qualified": null, - "docomo": "E664", - "au": "E4AD", - "softbank": "E038", - "google": "FE4B2", - "image": "1f3e2.png", - "sheet_x": 11, - "sheet_y": 40, - "short_name": "office", - "short_names": ["office"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 25, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "pig": { - "char": "\ud83d\udc37", - "key": "pig", - "keywords": ["pig", "PIG FACE"], - "category": "animals_and_nature", - "lib": { - "name": "PIG FACE", - "unified": "1F437", - "non_qualified": null, - "docomo": "E755", - "au": "E4DE", - "softbank": "E10B", - "google": "FE1BF", - "image": "1f437.png", - "sheet_x": 13, - "sheet_y": 21, - "short_name": "pig", - "short_names": ["pig"], - "text": null, - "texts": null, - "category": "Animals & Nature", - "sort_order": 25, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "iphone": { - "char": "\ud83d\udcf1", - "key": "iphone", - "keywords": ["iphone", "MOBILE PHONE"], - "category": "objects", - "lib": { - "name": "MOBILE PHONE", - "unified": "1F4F1", - "non_qualified": null, - "docomo": "E688", - "au": "E588", - "softbank": "E00A", - "google": "FE525", - "image": "1f4f1.png", - "sheet_x": 27, - "sheet_y": 10, - "short_name": "iphone", - "short_names": ["iphone"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 25, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "neutral_face": { - "char": "\ud83d\ude10", - "key": "neutral_face", - "keywords": ["neutral_face", "NEUTRAL FACE"], - "category": "people", - "lib": { - "name": "NEUTRAL FACE", - "unified": "1F610", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f610.png", - "sheet_x": 31, - "sheet_y": 6, - "short_name": "neutral_face", - "short_names": ["neutral_face"], - "text": null, - "texts": [":|", ":-|"], - "category": "Smileys & People", - "sort_order": 25, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "first_place_medal": { - "char": "\ud83e\udd47", - "key": "first_place_medal", - "keywords": ["first_place_medal", "FIRST PLACE MEDAL"], - "category": "activity", - "lib": { - "name": "FIRST PLACE MEDAL", - "unified": "1F947", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f947.png", - "sheet_x": 41, - "sheet_y": 51, - "short_name": "first_place_medal", - "short_names": ["first_place_medal"], - "text": null, - "texts": null, - "category": "Activities", - "sort_order": 25, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "leafy_green": { - "char": "\ud83e\udd6c", - "key": "leafy_green", - "keywords": ["leafy_green", "LEAFY GREEN"], - "category": "food_and_drink", - "lib": { - "name": "LEAFY GREEN", - "unified": "1F96C", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f96c.png", - "sheet_x": 42, - "sheet_y": 35, - "short_name": "leafy_green", - "short_names": ["leafy_green"], - "text": null, - "texts": null, - "category": "Food & Drink", - "sort_order": 25, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - } - }, - "radioactive_sign": { - "char": "\u2622\ufe0f", - "key": "radioactive_sign", - "keywords": ["radioactive_sign", ""], - "category": "symbols", - "lib": { - "name": null, - "unified": "2622-FE0F", - "non_qualified": "2622", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "2622-fe0f.png", - "sheet_x": 49, - "sheet_y": 23, - "short_name": "radioactive_sign", - "short_names": ["radioactive_sign"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 25, - "added_in": "1.1", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "flag-bb": { - "char": "\ud83c\udde7\ud83c\udde7", - "key": "flag-bb", - "keywords": ["flag-bb", "Barbados Flag"], - "category": "flags", - "lib": { - "name": "Barbados Flag", - "unified": "1F1E7-1F1E7", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1e7-1f1e7.png", - "sheet_x": 0, - "sheet_y": 49, - "short_name": "flag-bb", - "short_names": ["flag-bb"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 26, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "post_office": { - "char": "\ud83c\udfe3", - "key": "post_office", - "keywords": ["post_office", "JAPANESE POST OFFICE"], - "category": "travel_and_places", - "lib": { - "name": "JAPANESE POST OFFICE", - "unified": "1F3E3", - "non_qualified": null, - "docomo": "E665", - "au": "E5DE", - "softbank": "E153", - "google": "FE4B3", - "image": "1f3e3.png", - "sheet_x": 11, - "sheet_y": 41, - "short_name": "post_office", - "short_names": ["post_office"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 26, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "pig2": { - "char": "\ud83d\udc16", - "key": "pig2", - "keywords": ["pig2", "PIG"], - "category": "animals_and_nature", - "lib": { - "name": "PIG", - "unified": "1F416", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f416.png", - "sheet_x": 12, - "sheet_y": 41, - "short_name": "pig2", - "short_names": ["pig2"], - "text": null, - "texts": null, - "category": "Animals & Nature", - "sort_order": 26, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "calling": { - "char": "\ud83d\udcf2", - "key": "calling", - "keywords": ["calling", "MOBILE PHONE WITH RIGHTWARDS ARROW AT LEFT"], - "category": "objects", - "lib": { - "name": "MOBILE PHONE WITH RIGHTWARDS ARROW AT LEFT", - "unified": "1F4F2", - "non_qualified": null, - "docomo": "E6CE", - "au": "EB08", - "softbank": "E104", - "google": "FE526", - "image": "1f4f2.png", - "sheet_x": 27, - "sheet_y": 11, - "short_name": "calling", - "short_names": ["calling"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 26, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "expressionless": { - "char": "\ud83d\ude11", - "key": "expressionless", - "keywords": ["expressionless", "EXPRESSIONLESS FACE"], - "category": "people", - "lib": { - "name": "EXPRESSIONLESS FACE", - "unified": "1F611", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f611.png", - "sheet_x": 31, - "sheet_y": 7, - "short_name": "expressionless", - "short_names": ["expressionless"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 26, - "added_in": "6.1", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "second_place_medal": { - "char": "\ud83e\udd48", - "key": "second_place_medal", - "keywords": ["second_place_medal", "SECOND PLACE MEDAL"], - "category": "activity", - "lib": { - "name": "SECOND PLACE MEDAL", - "unified": "1F948", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f948.png", - "sheet_x": 41, - "sheet_y": 52, - "short_name": "second_place_medal", - "short_names": ["second_place_medal"], - "text": null, - "texts": null, - "category": "Activities", - "sort_order": 26, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "broccoli": { - "char": "\ud83e\udd66", - "key": "broccoli", - "keywords": ["broccoli", "BROCCOLI"], - "category": "food_and_drink", - "lib": { - "name": "BROCCOLI", - "unified": "1F966", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f966.png", - "sheet_x": 42, - "sheet_y": 29, - "short_name": "broccoli", - "short_names": ["broccoli"], - "text": null, - "texts": null, - "category": "Food & Drink", - "sort_order": 26, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "biohazard_sign": { - "char": "\u2623\ufe0f", - "key": "biohazard_sign", - "keywords": ["biohazard_sign", ""], - "category": "symbols", - "lib": { - "name": null, - "unified": "2623-FE0F", - "non_qualified": "2623", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "2623-fe0f.png", - "sheet_x": 49, - "sheet_y": 24, - "short_name": "biohazard_sign", - "short_names": ["biohazard_sign"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 26, - "added_in": "1.1", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "flag-bd": { - "char": "\ud83c\udde7\ud83c\udde9", - "key": "flag-bd", - "keywords": ["flag-bd", "Bangladesh Flag"], - "category": "flags", - "lib": { - "name": "Bangladesh Flag", - "unified": "1F1E7-1F1E9", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1e7-1f1e9.png", - "sheet_x": 0, - "sheet_y": 50, - "short_name": "flag-bd", - "short_names": ["flag-bd"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 27, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "mushroom": { - "char": "\ud83c\udf44", - "key": "mushroom", - "keywords": ["mushroom", "MUSHROOM"], - "category": "food_and_drink", - "lib": { - "name": "MUSHROOM", - "unified": "1F344", - "non_qualified": null, - "docomo": null, - "au": "EB37", - "softbank": null, - "google": "FE04B", - "image": "1f344.png", - "sheet_x": 6, - "sheet_y": 52, - "short_name": "mushroom", - "short_names": ["mushroom"], - "text": null, - "texts": null, - "category": "Food & Drink", - "sort_order": 27, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "european_post_office": { - "char": "\ud83c\udfe4", - "key": "european_post_office", - "keywords": ["european_post_office", "EUROPEAN POST OFFICE"], - "category": "travel_and_places", - "lib": { - "name": "EUROPEAN POST OFFICE", - "unified": "1F3E4", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f3e4.png", - "sheet_x": 11, - "sheet_y": 42, - "short_name": "european_post_office", - "short_names": ["european_post_office"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 27, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "boar": { - "char": "\ud83d\udc17", - "key": "boar", - "keywords": ["boar", "BOAR"], - "category": "animals_and_nature", - "lib": { - "name": "BOAR", - "unified": "1F417", - "non_qualified": null, - "docomo": null, - "au": "EB24", - "softbank": "E52F", - "google": "FE1D5", - "image": "1f417.png", - "sheet_x": 12, - "sheet_y": 42, - "short_name": "boar", - "short_names": ["boar"], - "text": null, - "texts": null, - "category": "Animals & Nature", - "sort_order": 27, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "no_mouth": { - "char": "\ud83d\ude36", - "key": "no_mouth", - "keywords": ["no_mouth", "FACE WITHOUT MOUTH"], - "category": "people", - "lib": { - "name": "FACE WITHOUT MOUTH", - "unified": "1F636", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f636.png", - "sheet_x": 31, - "sheet_y": 44, - "short_name": "no_mouth", - "short_names": ["no_mouth"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 27, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "third_place_medal": { - "char": "\ud83e\udd49", - "key": "third_place_medal", - "keywords": ["third_place_medal", "THIRD PLACE MEDAL"], - "category": "activity", - "lib": { - "name": "THIRD PLACE MEDAL", - "unified": "1F949", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f949.png", - "sheet_x": 42, - "sheet_y": 0, - "short_name": "third_place_medal", - "short_names": ["third_place_medal"], - "text": null, - "texts": null, - "category": "Activities", - "sort_order": 27, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "phone": { - "char": "\u260e\ufe0f", - "key": "phone", - "keywords": ["phone", "BLACK TELEPHONE"], - "category": "objects", - "lib": { - "name": "BLACK TELEPHONE", - "unified": "260E-FE0F", - "non_qualified": "260E", - "docomo": "E687", - "au": "E596", - "softbank": "E009", - "google": "FE523", - "image": "260e-fe0f.png", - "sheet_x": 49, - "sheet_y": 11, - "short_name": "phone", - "short_names": ["phone", "telephone"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 27, - "added_in": "1.1", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "arrow_up": { - "char": "\u2b06\ufe0f", - "key": "arrow_up", - "keywords": ["arrow_up", "UPWARDS BLACK ARROW"], - "category": "symbols", - "lib": { - "name": "UPWARDS BLACK ARROW", - "unified": "2B06-FE0F", - "non_qualified": "2B06", - "docomo": null, - "au": "E53F", - "softbank": "E232", - "google": "FEAF8", - "image": "2b06-fe0f.png", - "sheet_x": 52, - "sheet_y": 7, - "short_name": "arrow_up", - "short_names": ["arrow_up"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 27, - "added_in": "4.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-be": { - "char": "\ud83c\udde7\ud83c\uddea", - "key": "flag-be", - "keywords": ["flag-be", "Belgium Flag"], - "category": "flags", - "lib": { - "name": "Belgium Flag", - "unified": "1F1E7-1F1EA", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1e7-1f1ea.png", - "sheet_x": 0, - "sheet_y": 51, - "short_name": "flag-be", - "short_names": ["flag-be"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 28, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "hospital": { - "char": "\ud83c\udfe5", - "key": "hospital", - "keywords": ["hospital", "HOSPITAL"], - "category": "travel_and_places", - "lib": { - "name": "HOSPITAL", - "unified": "1F3E5", - "non_qualified": null, - "docomo": "E666", - "au": "E5DF", - "softbank": "E155", - "google": "FE4B4", - "image": "1f3e5.png", - "sheet_x": 11, - "sheet_y": 43, - "short_name": "hospital", - "short_names": ["hospital"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 28, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "pig_nose": { - "char": "\ud83d\udc3d", - "key": "pig_nose", - "keywords": ["pig_nose", "PIG NOSE"], - "category": "animals_and_nature", - "lib": { - "name": "PIG NOSE", - "unified": "1F43D", - "non_qualified": null, - "docomo": "E755", - "au": "EB48", - "softbank": null, - "google": "FE1E0", - "image": "1f43d.png", - "sheet_x": 13, - "sheet_y": 27, - "short_name": "pig_nose", - "short_names": ["pig_nose"], - "text": null, - "texts": null, - "category": "Animals & Nature", - "sort_order": 28, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "telephone_receiver": { - "char": "\ud83d\udcde", - "key": "telephone_receiver", - "keywords": ["telephone_receiver", "TELEPHONE RECEIVER"], - "category": "objects", - "lib": { - "name": "TELEPHONE RECEIVER", - "unified": "1F4DE", - "non_qualified": null, - "docomo": "E687", - "au": "E51E", - "softbank": null, - "google": "FE524", - "image": "1f4de.png", - "sheet_x": 26, - "sheet_y": 44, - "short_name": "telephone_receiver", - "short_names": ["telephone_receiver"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 28, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "face_with_rolling_eyes": { - "char": "\ud83d\ude44", - "key": "face_with_rolling_eyes", - "keywords": ["face_with_rolling_eyes", "FACE WITH ROLLING EYES"], - "category": "people", - "lib": { - "name": "FACE WITH ROLLING EYES", - "unified": "1F644", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f644.png", - "sheet_x": 32, - "sheet_y": 5, - "short_name": "face_with_rolling_eyes", - "short_names": ["face_with_rolling_eyes"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 28, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "peanuts": { - "char": "\ud83e\udd5c", - "key": "peanuts", - "keywords": ["peanuts", "PEANUTS"], - "category": "food_and_drink", - "lib": { - "name": "PEANUTS", - "unified": "1F95C", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f95c.png", - "sheet_x": 42, - "sheet_y": 19, - "short_name": "peanuts", - "short_names": ["peanuts"], - "text": null, - "texts": null, - "category": "Food & Drink", - "sort_order": 28, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "arrow_upper_right": { - "char": "\u2197\ufe0f", - "key": "arrow_upper_right", - "keywords": ["arrow_upper_right", "NORTH EAST ARROW"], - "category": "symbols", - "lib": { - "name": "NORTH EAST ARROW", - "unified": "2197-FE0F", - "non_qualified": "2197", - "docomo": "E678", - "au": "E555", - "softbank": "E236", - "google": "FEAF0", - "image": "2197-fe0f.png", - "sheet_x": 48, - "sheet_y": 27, - "short_name": "arrow_upper_right", - "short_names": ["arrow_upper_right"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 28, - "added_in": "1.1", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "soccer": { - "char": "\u26bd", - "key": "soccer", - "keywords": ["soccer", "SOCCER BALL"], - "category": "activity", - "lib": { - "name": "SOCCER BALL", - "unified": "26BD", - "non_qualified": null, - "docomo": "E656", - "au": "E4B6", - "softbank": "E018", - "google": "FE7D4", - "image": "26bd.png", - "sheet_x": 50, - "sheet_y": 17, - "short_name": "soccer", - "short_names": ["soccer"], - "text": null, - "texts": null, - "category": "Activities", - "sort_order": 28, - "added_in": "5.2", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-bf": { - "char": "\ud83c\udde7\ud83c\uddeb", - "key": "flag-bf", - "keywords": ["flag-bf", "Burkina Faso Flag"], - "category": "flags", - "lib": { - "name": "Burkina Faso Flag", - "unified": "1F1E7-1F1EB", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1e7-1f1eb.png", - "sheet_x": 0, - "sheet_y": 52, - "short_name": "flag-bf", - "short_names": ["flag-bf"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 29, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "chestnut": { - "char": "\ud83c\udf30", - "key": "chestnut", - "keywords": ["chestnut", "CHESTNUT"], - "category": "food_and_drink", - "lib": { - "name": "CHESTNUT", - "unified": "1F330", - "non_qualified": null, - "docomo": null, - "au": "EB38", - "softbank": null, - "google": "FE04C", - "image": "1f330.png", - "sheet_x": 6, - "sheet_y": 32, - "short_name": "chestnut", - "short_names": ["chestnut"], - "text": null, - "texts": null, - "category": "Food & Drink", - "sort_order": 29, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "bank": { - "char": "\ud83c\udfe6", - "key": "bank", - "keywords": ["bank", "BANK"], - "category": "travel_and_places", - "lib": { - "name": "BANK", - "unified": "1F3E6", - "non_qualified": null, - "docomo": "E667", - "au": "E4AA", - "softbank": "E14D", - "google": "FE4B5", - "image": "1f3e6.png", - "sheet_x": 11, - "sheet_y": 44, - "short_name": "bank", - "short_names": ["bank"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 29, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "ram": { - "char": "\ud83d\udc0f", - "key": "ram", - "keywords": ["ram", "RAM"], - "category": "animals_and_nature", - "lib": { - "name": "RAM", - "unified": "1F40F", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f40f.png", - "sheet_x": 12, - "sheet_y": 34, - "short_name": "ram", - "short_names": ["ram"], - "text": null, - "texts": null, - "category": "Animals & Nature", - "sort_order": 29, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "pager": { - "char": "\ud83d\udcdf", - "key": "pager", - "keywords": ["pager", "PAGER"], - "category": "objects", - "lib": { - "name": "PAGER", - "unified": "1F4DF", - "non_qualified": null, - "docomo": "E65A", - "au": "E59B", - "softbank": null, - "google": "FE522", - "image": "1f4df.png", - "sheet_x": 26, - "sheet_y": 45, - "short_name": "pager", - "short_names": ["pager"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 29, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "smirk": { - "char": "\ud83d\ude0f", - "key": "smirk", - "keywords": ["smirk", "SMIRKING FACE"], - "category": "people", - "lib": { - "name": "SMIRKING FACE", - "unified": "1F60F", - "non_qualified": null, - "docomo": "E72C", - "au": "EABF", - "softbank": "E402", - "google": "FE343", - "image": "1f60f.png", - "sheet_x": 31, - "sheet_y": 5, - "short_name": "smirk", - "short_names": ["smirk"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 29, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "baseball": { - "char": "\u26be", - "key": "baseball", - "keywords": ["baseball", "BASEBALL"], - "category": "activity", - "lib": { - "name": "BASEBALL", - "unified": "26BE", - "non_qualified": null, - "docomo": "E653", - "au": "E4BA", - "softbank": "E016", - "google": "FE7D1", - "image": "26be.png", - "sheet_x": 50, - "sheet_y": 18, - "short_name": "baseball", - "short_names": ["baseball"], - "text": null, - "texts": null, - "category": "Activities", - "sort_order": 29, - "added_in": "5.2", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "arrow_right": { - "char": "\u27a1\ufe0f", - "key": "arrow_right", - "keywords": ["arrow_right", "BLACK RIGHTWARDS ARROW"], - "category": "symbols", - "lib": { - "name": "BLACK RIGHTWARDS ARROW", - "unified": "27A1-FE0F", - "non_qualified": "27A1", - "docomo": null, - "au": "E552", - "softbank": "E234", - "google": "FEAFA", - "image": "27a1-fe0f.png", - "sheet_x": 52, - "sheet_y": 1, - "short_name": "arrow_right", - "short_names": ["arrow_right"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 29, - "added_in": "1.1", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-bg": { - "char": "\ud83c\udde7\ud83c\uddec", - "key": "flag-bg", - "keywords": ["flag-bg", "Bulgaria Flag"], - "category": "flags", - "lib": { - "name": "Bulgaria Flag", - "unified": "1F1E7-1F1EC", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1e7-1f1ec.png", - "sheet_x": 1, - "sheet_y": 0, - "short_name": "flag-bg", - "short_names": ["flag-bg"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 30, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "bread": { - "char": "\ud83c\udf5e", - "key": "bread", - "keywords": ["bread", "BREAD"], - "category": "food_and_drink", - "lib": { - "name": "BREAD", - "unified": "1F35E", - "non_qualified": null, - "docomo": "E74D", - "au": "EAAF", - "softbank": "E339", - "google": "FE964", - "image": "1f35e.png", - "sheet_x": 7, - "sheet_y": 25, - "short_name": "bread", - "short_names": ["bread"], - "text": null, - "texts": null, - "category": "Food & Drink", - "sort_order": 30, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "hotel": { - "char": "\ud83c\udfe8", - "key": "hotel", - "keywords": ["hotel", "HOTEL"], - "category": "travel_and_places", - "lib": { - "name": "HOTEL", - "unified": "1F3E8", - "non_qualified": null, - "docomo": "E669", - "au": "EA81", - "softbank": "E158", - "google": "FE4B7", - "image": "1f3e8.png", - "sheet_x": 11, - "sheet_y": 46, - "short_name": "hotel", - "short_names": ["hotel"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 30, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "sheep": { - "char": "\ud83d\udc11", - "key": "sheep", - "keywords": ["sheep", "SHEEP"], - "category": "animals_and_nature", - "lib": { - "name": "SHEEP", - "unified": "1F411", - "non_qualified": null, - "docomo": null, - "au": "E48F", - "softbank": "E529", - "google": "FE1CF", - "image": "1f411.png", - "sheet_x": 12, - "sheet_y": 36, - "short_name": "sheep", - "short_names": ["sheep"], - "text": null, - "texts": null, - "category": "Animals & Nature", - "sort_order": 30, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "fax": { - "char": "\ud83d\udce0", - "key": "fax", - "keywords": ["fax", "FAX MACHINE"], - "category": "objects", - "lib": { - "name": "FAX MACHINE", - "unified": "1F4E0", - "non_qualified": null, - "docomo": "E6D0", - "au": "E520", - "softbank": "E00B", - "google": "FE528", - "image": "1f4e0.png", - "sheet_x": 26, - "sheet_y": 46, - "short_name": "fax", - "short_names": ["fax"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 30, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "persevere": { - "char": "\ud83d\ude23", - "key": "persevere", - "keywords": ["persevere", "PERSEVERING FACE"], - "category": "people", - "lib": { - "name": "PERSEVERING FACE", - "unified": "1F623", - "non_qualified": null, - "docomo": "E72B", - "au": "EAC2", - "softbank": "E406", - "google": "FE33C", - "image": "1f623.png", - "sheet_x": 31, - "sheet_y": 25, - "short_name": "persevere", - "short_names": ["persevere"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 30, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "softball": { - "char": "\ud83e\udd4e", - "key": "softball", - "keywords": ["softball", "SOFTBALL"], - "category": "activity", - "lib": { - "name": "SOFTBALL", - "unified": "1F94E", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f94e.png", - "sheet_x": 42, - "sheet_y": 5, - "short_name": "softball", - "short_names": ["softball"], - "text": null, - "texts": null, - "category": "Activities", - "sort_order": 30, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - } - }, - "arrow_lower_right": { - "char": "\u2198\ufe0f", - "key": "arrow_lower_right", - "keywords": ["arrow_lower_right", "SOUTH EAST ARROW"], - "category": "symbols", - "lib": { - "name": "SOUTH EAST ARROW", - "unified": "2198-FE0F", - "non_qualified": "2198", - "docomo": "E696", - "au": "E54D", - "softbank": "E238", - "google": "FEAF1", - "image": "2198-fe0f.png", - "sheet_x": 48, - "sheet_y": 28, - "short_name": "arrow_lower_right", - "short_names": ["arrow_lower_right"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 30, - "added_in": "1.1", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-bh": { - "char": "\ud83c\udde7\ud83c\udded", - "key": "flag-bh", - "keywords": ["flag-bh", "Bahrain Flag"], - "category": "flags", - "lib": { - "name": "Bahrain Flag", - "unified": "1F1E7-1F1ED", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1e7-1f1ed.png", - "sheet_x": 1, - "sheet_y": 1, - "short_name": "flag-bh", - "short_names": ["flag-bh"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 31, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "basketball": { - "char": "\ud83c\udfc0", - "key": "basketball", - "keywords": ["basketball", "BASKETBALL AND HOOP"], - "category": "activity", - "lib": { - "name": "BASKETBALL AND HOOP", - "unified": "1F3C0", - "non_qualified": null, - "docomo": "E658", - "au": "E59A", - "softbank": "E42A", - "google": "FE7D6", - "image": "1f3c0.png", - "sheet_x": 9, - "sheet_y": 17, - "short_name": "basketball", - "short_names": ["basketball"], - "text": null, - "texts": null, - "category": "Activities", - "sort_order": 31, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "love_hotel": { - "char": "\ud83c\udfe9", - "key": "love_hotel", - "keywords": ["love_hotel", "LOVE HOTEL"], - "category": "travel_and_places", - "lib": { - "name": "LOVE HOTEL", - "unified": "1F3E9", - "non_qualified": null, - "docomo": "E669-E6EF", - "au": "EAF3", - "softbank": "E501", - "google": "FE4B8", - "image": "1f3e9.png", - "sheet_x": 11, - "sheet_y": 47, - "short_name": "love_hotel", - "short_names": ["love_hotel"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 31, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "goat": { - "char": "\ud83d\udc10", - "key": "goat", - "keywords": ["goat", "GOAT"], - "category": "animals_and_nature", - "lib": { - "name": "GOAT", - "unified": "1F410", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f410.png", - "sheet_x": 12, - "sheet_y": 35, - "short_name": "goat", - "short_names": ["goat"], - "text": null, - "texts": null, - "category": "Animals & Nature", - "sort_order": 31, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "battery": { - "char": "\ud83d\udd0b", - "key": "battery", - "keywords": ["battery", "BATTERY"], - "category": "objects", - "lib": { - "name": "BATTERY", - "unified": "1F50B", - "non_qualified": null, - "docomo": null, - "au": "E584", - "softbank": null, - "google": "FE4FC", - "image": "1f50b.png", - "sheet_x": 27, - "sheet_y": 35, - "short_name": "battery", - "short_names": ["battery"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 31, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "disappointed_relieved": { - "char": "\ud83d\ude25", - "key": "disappointed_relieved", - "keywords": ["disappointed_relieved", "DISAPPOINTED BUT RELIEVED FACE"], - "category": "people", - "lib": { - "name": "DISAPPOINTED BUT RELIEVED FACE", - "unified": "1F625", - "non_qualified": null, - "docomo": "E723", - "au": "E5C6", - "softbank": "E401", - "google": "FE345", - "image": "1f625.png", - "sheet_x": 31, - "sheet_y": 27, - "short_name": "disappointed_relieved", - "short_names": ["disappointed_relieved"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 31, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "croissant": { - "char": "\ud83e\udd50", - "key": "croissant", - "keywords": ["croissant", "CROISSANT"], - "category": "food_and_drink", - "lib": { - "name": "CROISSANT", - "unified": "1F950", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f950.png", - "sheet_x": 42, - "sheet_y": 7, - "short_name": "croissant", - "short_names": ["croissant"], - "text": null, - "texts": null, - "category": "Food & Drink", - "sort_order": 31, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "arrow_down": { - "char": "\u2b07\ufe0f", - "key": "arrow_down", - "keywords": ["arrow_down", "DOWNWARDS BLACK ARROW"], - "category": "symbols", - "lib": { - "name": "DOWNWARDS BLACK ARROW", - "unified": "2B07-FE0F", - "non_qualified": "2B07", - "docomo": null, - "au": "E540", - "softbank": "E233", - "google": "FEAF9", - "image": "2b07-fe0f.png", - "sheet_x": 52, - "sheet_y": 8, - "short_name": "arrow_down", - "short_names": ["arrow_down"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 31, - "added_in": "4.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-bi": { - "char": "\ud83c\udde7\ud83c\uddee", - "key": "flag-bi", - "keywords": ["flag-bi", "Burundi Flag"], - "category": "flags", - "lib": { - "name": "Burundi Flag", - "unified": "1F1E7-1F1EE", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1e7-1f1ee.png", - "sheet_x": 1, - "sheet_y": 2, - "short_name": "flag-bi", - "short_names": ["flag-bi"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 32, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "volleyball": { - "char": "\ud83c\udfd0", - "key": "volleyball", - "keywords": ["volleyball", "VOLLEYBALL"], - "category": "activity", - "lib": { - "name": "VOLLEYBALL", - "unified": "1F3D0", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f3d0.png", - "sheet_x": 11, - "sheet_y": 22, - "short_name": "volleyball", - "short_names": ["volleyball"], - "text": null, - "texts": null, - "category": "Activities", - "sort_order": 32, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "convenience_store": { - "char": "\ud83c\udfea", - "key": "convenience_store", - "keywords": ["convenience_store", "CONVENIENCE STORE"], - "category": "travel_and_places", - "lib": { - "name": "CONVENIENCE STORE", - "unified": "1F3EA", - "non_qualified": null, - "docomo": "E66A", - "au": "E4A4", - "softbank": "E156", - "google": "FE4B9", - "image": "1f3ea.png", - "sheet_x": 11, - "sheet_y": 48, - "short_name": "convenience_store", - "short_names": ["convenience_store"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 32, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "dromedary_camel": { - "char": "\ud83d\udc2a", - "key": "dromedary_camel", - "keywords": ["dromedary_camel", "DROMEDARY CAMEL"], - "category": "animals_and_nature", - "lib": { - "name": "DROMEDARY CAMEL", - "unified": "1F42A", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f42a.png", - "sheet_x": 13, - "sheet_y": 8, - "short_name": "dromedary_camel", - "short_names": ["dromedary_camel"], - "text": null, - "texts": null, - "category": "Animals & Nature", - "sort_order": 32, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "electric_plug": { - "char": "\ud83d\udd0c", - "key": "electric_plug", - "keywords": ["electric_plug", "ELECTRIC PLUG"], - "category": "objects", - "lib": { - "name": "ELECTRIC PLUG", - "unified": "1F50C", - "non_qualified": null, - "docomo": null, - "au": "E589", - "softbank": null, - "google": "FE4FE", - "image": "1f50c.png", - "sheet_x": 27, - "sheet_y": 36, - "short_name": "electric_plug", - "short_names": ["electric_plug"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 32, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "open_mouth": { - "char": "\ud83d\ude2e", - "key": "open_mouth", - "keywords": ["open_mouth", "FACE WITH OPEN MOUTH"], - "category": "people", - "lib": { - "name": "FACE WITH OPEN MOUTH", - "unified": "1F62E", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f62e.png", - "sheet_x": 31, - "sheet_y": 36, - "short_name": "open_mouth", - "short_names": ["open_mouth"], - "text": null, - "texts": [":o", ":-o", ":O", ":-O"], - "category": "Smileys & People", - "sort_order": 32, - "added_in": "6.1", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "baguette_bread": { - "char": "\ud83e\udd56", - "key": "baguette_bread", - "keywords": ["baguette_bread", "BAGUETTE BREAD"], - "category": "food_and_drink", - "lib": { - "name": "BAGUETTE BREAD", - "unified": "1F956", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f956.png", - "sheet_x": 42, - "sheet_y": 13, - "short_name": "baguette_bread", - "short_names": ["baguette_bread"], - "text": null, - "texts": null, - "category": "Food & Drink", - "sort_order": 32, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "arrow_lower_left": { - "char": "\u2199\ufe0f", - "key": "arrow_lower_left", - "keywords": ["arrow_lower_left", "SOUTH WEST ARROW"], - "category": "symbols", - "lib": { - "name": "SOUTH WEST ARROW", - "unified": "2199-FE0F", - "non_qualified": "2199", - "docomo": "E6A5", - "au": "E556", - "softbank": "E239", - "google": "FEAF3", - "image": "2199-fe0f.png", - "sheet_x": 48, - "sheet_y": 29, - "short_name": "arrow_lower_left", - "short_names": ["arrow_lower_left"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 32, - "added_in": "1.1", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-bj": { - "char": "\ud83c\udde7\ud83c\uddef", - "key": "flag-bj", - "keywords": ["flag-bj", "Benin Flag"], - "category": "flags", - "lib": { - "name": "Benin Flag", - "unified": "1F1E7-1F1EF", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1e7-1f1ef.png", - "sheet_x": 1, - "sheet_y": 3, - "short_name": "flag-bj", - "short_names": ["flag-bj"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 33, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "football": { - "char": "\ud83c\udfc8", - "key": "football", - "keywords": ["football", "AMERICAN FOOTBALL"], - "category": "activity", - "lib": { - "name": "AMERICAN FOOTBALL", - "unified": "1F3C8", - "non_qualified": null, - "docomo": null, - "au": "E4BB", - "softbank": "E42B", - "google": "FE7DD", - "image": "1f3c8.png", - "sheet_x": 10, - "sheet_y": 16, - "short_name": "football", - "short_names": ["football"], - "text": null, - "texts": null, - "category": "Activities", - "sort_order": 33, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "school": { - "char": "\ud83c\udfeb", - "key": "school", - "keywords": ["school", "SCHOOL"], - "category": "travel_and_places", - "lib": { - "name": "SCHOOL", - "unified": "1F3EB", - "non_qualified": null, - "docomo": "E73E", - "au": "EA80", - "softbank": "E157", - "google": "FE4BA", - "image": "1f3eb.png", - "sheet_x": 11, - "sheet_y": 49, - "short_name": "school", - "short_names": ["school"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 33, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "camel": { - "char": "\ud83d\udc2b", - "key": "camel", - "keywords": ["camel", "BACTRIAN CAMEL"], - "category": "animals_and_nature", - "lib": { - "name": "BACTRIAN CAMEL", - "unified": "1F42B", - "non_qualified": null, - "docomo": null, - "au": "EB25", - "softbank": "E530", - "google": "FE1D6", - "image": "1f42b.png", - "sheet_x": 13, - "sheet_y": 9, - "short_name": "camel", - "short_names": ["camel"], - "text": null, - "texts": null, - "category": "Animals & Nature", - "sort_order": 33, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "computer": { - "char": "\ud83d\udcbb", - "key": "computer", - "keywords": ["computer", "PERSONAL COMPUTER"], - "category": "objects", - "lib": { - "name": "PERSONAL COMPUTER", - "unified": "1F4BB", - "non_qualified": null, - "docomo": "E716", - "au": "E5B8", - "softbank": "E00C", - "google": "FE538", - "image": "1f4bb.png", - "sheet_x": 26, - "sheet_y": 9, - "short_name": "computer", - "short_names": ["computer"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 33, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "zipper_mouth_face": { - "char": "\ud83e\udd10", - "key": "zipper_mouth_face", - "keywords": ["zipper_mouth_face", "ZIPPER-MOUTH FACE"], - "category": "people", - "lib": { - "name": "ZIPPER-MOUTH FACE", - "unified": "1F910", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f910.png", - "sheet_x": 37, - "sheet_y": 37, - "short_name": "zipper_mouth_face", - "short_names": ["zipper_mouth_face"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 33, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "pretzel": { - "char": "\ud83e\udd68", - "key": "pretzel", - "keywords": ["pretzel", "PRETZEL"], - "category": "food_and_drink", - "lib": { - "name": "PRETZEL", - "unified": "1F968", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f968.png", - "sheet_x": 42, - "sheet_y": 31, - "short_name": "pretzel", - "short_names": ["pretzel"], - "text": null, - "texts": null, - "category": "Food & Drink", - "sort_order": 33, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "arrow_left": { - "char": "\u2b05\ufe0f", - "key": "arrow_left", - "keywords": ["arrow_left", "LEFTWARDS BLACK ARROW"], - "category": "symbols", - "lib": { - "name": "LEFTWARDS BLACK ARROW", - "unified": "2B05-FE0F", - "non_qualified": "2B05", - "docomo": null, - "au": "E553", - "softbank": "E235", - "google": "FEAFB", - "image": "2b05-fe0f.png", - "sheet_x": 52, - "sheet_y": 6, - "short_name": "arrow_left", - "short_names": ["arrow_left"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 33, - "added_in": "4.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-bl": { - "char": "\ud83c\udde7\ud83c\uddf1", - "key": "flag-bl", - "keywords": ["flag-bl", "St. Barth\u00e9lemy Flag"], - "category": "flags", - "lib": { - "name": "St. Barth\u00e9lemy Flag", - "unified": "1F1E7-1F1F1", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1e7-1f1f1.png", - "sheet_x": 1, - "sheet_y": 4, - "short_name": "flag-bl", - "short_names": ["flag-bl"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 34, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "rugby_football": { - "char": "\ud83c\udfc9", - "key": "rugby_football", - "keywords": ["rugby_football", "RUGBY FOOTBALL"], - "category": "activity", - "lib": { - "name": "RUGBY FOOTBALL", - "unified": "1F3C9", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f3c9.png", - "sheet_x": 10, - "sheet_y": 17, - "short_name": "rugby_football", - "short_names": ["rugby_football"], - "text": null, - "texts": null, - "category": "Activities", - "sort_order": 34, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "department_store": { - "char": "\ud83c\udfec", - "key": "department_store", - "keywords": ["department_store", "DEPARTMENT STORE"], - "category": "travel_and_places", - "lib": { - "name": "DEPARTMENT STORE", - "unified": "1F3EC", - "non_qualified": null, - "docomo": null, - "au": "EAF6", - "softbank": "E504", - "google": "FE4BD", - "image": "1f3ec.png", - "sheet_x": 11, - "sheet_y": 50, - "short_name": "department_store", - "short_names": ["department_store"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 34, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "desktop_computer": { - "char": "\ud83d\udda5\ufe0f", - "key": "desktop_computer", - "keywords": ["desktop_computer", ""], - "category": "objects", - "lib": { - "name": null, - "unified": "1F5A5-FE0F", - "non_qualified": "1F5A5", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f5a5-fe0f.png", - "sheet_x": 30, - "sheet_y": 18, - "short_name": "desktop_computer", - "short_names": ["desktop_computer"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 34, - "added_in": "7.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "hushed": { - "char": "\ud83d\ude2f", - "key": "hushed", - "keywords": ["hushed", "HUSHED FACE"], - "category": "people", - "lib": { - "name": "HUSHED FACE", - "unified": "1F62F", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f62f.png", - "sheet_x": 31, - "sheet_y": 37, - "short_name": "hushed", - "short_names": ["hushed"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 34, - "added_in": "6.1", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "bagel": { - "char": "\ud83e\udd6f", - "key": "bagel", - "keywords": ["bagel", "BAGEL"], - "category": "food_and_drink", - "lib": { - "name": "BAGEL", - "unified": "1F96F", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f96f.png", - "sheet_x": 42, - "sheet_y": 38, - "short_name": "bagel", - "short_names": ["bagel"], - "text": null, - "texts": null, - "category": "Food & Drink", - "sort_order": 34, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - } - }, - "llama": { - "char": "\ud83e\udd99", - "key": "llama", - "keywords": ["llama", "LLAMA"], - "category": "animals_and_nature", - "lib": { - "name": "LLAMA", - "unified": "1F999", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f999.png", - "sheet_x": 43, - "sheet_y": 21, - "short_name": "llama", - "short_names": ["llama"], - "text": null, - "texts": null, - "category": "Animals & Nature", - "sort_order": 34, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - } - }, - "arrow_upper_left": { - "char": "\u2196\ufe0f", - "key": "arrow_upper_left", - "keywords": ["arrow_upper_left", "NORTH WEST ARROW"], - "category": "symbols", - "lib": { - "name": "NORTH WEST ARROW", - "unified": "2196-FE0F", - "non_qualified": "2196", - "docomo": "E697", - "au": "E54C", - "softbank": "E237", - "google": "FEAF2", - "image": "2196-fe0f.png", - "sheet_x": 48, - "sheet_y": 26, - "short_name": "arrow_upper_left", - "short_names": ["arrow_upper_left"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 34, - "added_in": "1.1", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-bm": { - "char": "\ud83c\udde7\ud83c\uddf2", - "key": "flag-bm", - "keywords": ["flag-bm", "Bermuda Flag"], - "category": "flags", - "lib": { - "name": "Bermuda Flag", - "unified": "1F1E7-1F1F2", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1e7-1f1f2.png", - "sheet_x": 1, - "sheet_y": 5, - "short_name": "flag-bm", - "short_names": ["flag-bm"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 35, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "tennis": { - "char": "\ud83c\udfbe", - "key": "tennis", - "keywords": ["tennis", "TENNIS RACQUET AND BALL"], - "category": "activity", - "lib": { - "name": "TENNIS RACQUET AND BALL", - "unified": "1F3BE", - "non_qualified": null, - "docomo": "E655", - "au": "E4B7", - "softbank": "E015", - "google": "FE7D3", - "image": "1f3be.png", - "sheet_x": 9, - "sheet_y": 15, - "short_name": "tennis", - "short_names": ["tennis"], - "text": null, - "texts": null, - "category": "Activities", - "sort_order": 35, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "factory": { - "char": "\ud83c\udfed", - "key": "factory", - "keywords": ["factory", "FACTORY"], - "category": "travel_and_places", - "lib": { - "name": "FACTORY", - "unified": "1F3ED", - "non_qualified": null, - "docomo": null, - "au": "EAF9", - "softbank": "E508", - "google": "FE4C0", - "image": "1f3ed.png", - "sheet_x": 11, - "sheet_y": 51, - "short_name": "factory", - "short_names": ["factory"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 35, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "printer": { - "char": "\ud83d\udda8\ufe0f", - "key": "printer", - "keywords": ["printer", ""], - "category": "objects", - "lib": { - "name": null, - "unified": "1F5A8-FE0F", - "non_qualified": "1F5A8", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f5a8-fe0f.png", - "sheet_x": 30, - "sheet_y": 19, - "short_name": "printer", - "short_names": ["printer"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 35, - "added_in": "7.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "sleepy": { - "char": "\ud83d\ude2a", - "key": "sleepy", - "keywords": ["sleepy", "SLEEPY FACE"], - "category": "people", - "lib": { - "name": "SLEEPY FACE", - "unified": "1F62A", - "non_qualified": null, - "docomo": "E701", - "au": "EAC4", - "softbank": "E408", - "google": "FE342", - "image": "1f62a.png", - "sheet_x": 31, - "sheet_y": 32, - "short_name": "sleepy", - "short_names": ["sleepy"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 35, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "pancakes": { - "char": "\ud83e\udd5e", - "key": "pancakes", - "keywords": ["pancakes", "PANCAKES"], - "category": "food_and_drink", - "lib": { - "name": "PANCAKES", - "unified": "1F95E", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f95e.png", - "sheet_x": 42, - "sheet_y": 21, - "short_name": "pancakes", - "short_names": ["pancakes"], - "text": null, - "texts": null, - "category": "Food & Drink", - "sort_order": 35, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "giraffe_face": { - "char": "\ud83e\udd92", - "key": "giraffe_face", - "keywords": ["giraffe_face", "GIRAFFE FACE"], - "category": "animals_and_nature", - "lib": { - "name": "GIRAFFE FACE", - "unified": "1F992", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f992.png", - "sheet_x": 43, - "sheet_y": 14, - "short_name": "giraffe_face", - "short_names": ["giraffe_face"], - "text": null, - "texts": null, - "category": "Animals & Nature", - "sort_order": 35, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "arrow_up_down": { - "char": "\u2195\ufe0f", - "key": "arrow_up_down", - "keywords": ["arrow_up_down", "UP DOWN ARROW"], - "category": "symbols", - "lib": { - "name": "UP DOWN ARROW", - "unified": "2195-FE0F", - "non_qualified": "2195", - "docomo": "E73D", - "au": "EB7B", - "softbank": null, - "google": "FEAF7", - "image": "2195-fe0f.png", - "sheet_x": 48, - "sheet_y": 25, - "short_name": "arrow_up_down", - "short_names": ["arrow_up_down"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 35, - "added_in": "1.1", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-bn": { - "char": "\ud83c\udde7\ud83c\uddf3", - "key": "flag-bn", - "keywords": ["flag-bn", "Brunei Flag"], - "category": "flags", - "lib": { - "name": "Brunei Flag", - "unified": "1F1E7-1F1F3", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1e7-1f1f3.png", - "sheet_x": 1, - "sheet_y": 6, - "short_name": "flag-bn", - "short_names": ["flag-bn"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 36, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "japanese_castle": { - "char": "\ud83c\udfef", - "key": "japanese_castle", - "keywords": ["japanese_castle", "JAPANESE CASTLE"], - "category": "travel_and_places", - "lib": { - "name": "JAPANESE CASTLE", - "unified": "1F3EF", - "non_qualified": null, - "docomo": null, - "au": "EAF7", - "softbank": "E505", - "google": "FE4BE", - "image": "1f3ef.png", - "sheet_x": 12, - "sheet_y": 0, - "short_name": "japanese_castle", - "short_names": ["japanese_castle"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 36, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "elephant": { - "char": "\ud83d\udc18", - "key": "elephant", - "keywords": ["elephant", "ELEPHANT"], - "category": "animals_and_nature", - "lib": { - "name": "ELEPHANT", - "unified": "1F418", - "non_qualified": null, - "docomo": null, - "au": "EB1F", - "softbank": "E526", - "google": "FE1CC", - "image": "1f418.png", - "sheet_x": 12, - "sheet_y": 43, - "short_name": "elephant", - "short_names": ["elephant"], - "text": null, - "texts": null, - "category": "Animals & Nature", - "sort_order": 36, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "tired_face": { - "char": "\ud83d\ude2b", - "key": "tired_face", - "keywords": ["tired_face", "TIRED FACE"], - "category": "people", - "lib": { - "name": "TIRED FACE", - "unified": "1F62B", - "non_qualified": null, - "docomo": "E72B", - "au": "E474", - "softbank": null, - "google": "FE346", - "image": "1f62b.png", - "sheet_x": 31, - "sheet_y": 33, - "short_name": "tired_face", - "short_names": ["tired_face"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 36, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flying_disc": { - "char": "\ud83e\udd4f", - "key": "flying_disc", - "keywords": ["flying_disc", "FLYING DISC"], - "category": "activity", - "lib": { - "name": "FLYING DISC", - "unified": "1F94F", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f94f.png", - "sheet_x": 42, - "sheet_y": 6, - "short_name": "flying_disc", - "short_names": ["flying_disc"], - "text": null, - "texts": null, - "category": "Activities", - "sort_order": 36, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - } - }, - "cheese_wedge": { - "char": "\ud83e\uddc0", - "key": "cheese_wedge", - "keywords": ["cheese_wedge", "CHEESE WEDGE"], - "category": "food_and_drink", - "lib": { - "name": "CHEESE WEDGE", - "unified": "1F9C0", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f9c0.png", - "sheet_x": 44, - "sheet_y": 16, - "short_name": "cheese_wedge", - "short_names": ["cheese_wedge"], - "text": null, - "texts": null, - "category": "Food & Drink", - "sort_order": 36, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "left_right_arrow": { - "char": "\u2194\ufe0f", - "key": "left_right_arrow", - "keywords": ["left_right_arrow", "LEFT RIGHT ARROW"], - "category": "symbols", - "lib": { - "name": "LEFT RIGHT ARROW", - "unified": "2194-FE0F", - "non_qualified": "2194", - "docomo": "E73C", - "au": "EB7A", - "softbank": null, - "google": "FEAF6", - "image": "2194-fe0f.png", - "sheet_x": 48, - "sheet_y": 24, - "short_name": "left_right_arrow", - "short_names": ["left_right_arrow"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 36, - "added_in": "1.1", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "keyboard": { - "char": "\u2328\ufe0f", - "key": "keyboard", - "keywords": ["keyboard", ""], - "category": "objects", - "lib": { - "name": null, - "unified": "2328-FE0F", - "non_qualified": "2328", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "2328-fe0f.png", - "sheet_x": 48, - "sheet_y": 34, - "short_name": "keyboard", - "short_names": ["keyboard"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 36, - "added_in": "1.1", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "flag-bo": { - "char": "\ud83c\udde7\ud83c\uddf4", - "key": "flag-bo", - "keywords": ["flag-bo", "Bolivia Flag"], - "category": "flags", - "lib": { - "name": "Bolivia Flag", - "unified": "1F1E7-1F1F4", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1e7-1f1f4.png", - "sheet_x": 1, - "sheet_y": 7, - "short_name": "flag-bo", - "short_names": ["flag-bo"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 37, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "meat_on_bone": { - "char": "\ud83c\udf56", - "key": "meat_on_bone", - "keywords": ["meat_on_bone", "MEAT ON BONE"], - "category": "food_and_drink", - "lib": { - "name": "MEAT ON BONE", - "unified": "1F356", - "non_qualified": null, - "docomo": null, - "au": "E4C4", - "softbank": null, - "google": "FE972", - "image": "1f356.png", - "sheet_x": 7, - "sheet_y": 17, - "short_name": "meat_on_bone", - "short_names": ["meat_on_bone"], - "text": null, - "texts": null, - "category": "Food & Drink", - "sort_order": 37, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "bowling": { - "char": "\ud83c\udfb3", - "key": "bowling", - "keywords": ["bowling", "BOWLING"], - "category": "activity", - "lib": { - "name": "BOWLING", - "unified": "1F3B3", - "non_qualified": null, - "docomo": null, - "au": "EB43", - "softbank": null, - "google": "FE810", - "image": "1f3b3.png", - "sheet_x": 9, - "sheet_y": 4, - "short_name": "bowling", - "short_names": ["bowling"], - "text": null, - "texts": null, - "category": "Activities", - "sort_order": 37, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "european_castle": { - "char": "\ud83c\udff0", - "key": "european_castle", - "keywords": ["european_castle", "EUROPEAN CASTLE"], - "category": "travel_and_places", - "lib": { - "name": "EUROPEAN CASTLE", - "unified": "1F3F0", - "non_qualified": null, - "docomo": null, - "au": "EAF8", - "softbank": "E506", - "google": "FE4BF", - "image": "1f3f0.png", - "sheet_x": 12, - "sheet_y": 1, - "short_name": "european_castle", - "short_names": ["european_castle"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 37, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "three_button_mouse": { - "char": "\ud83d\uddb1\ufe0f", - "key": "three_button_mouse", - "keywords": ["three_button_mouse", ""], - "category": "objects", - "lib": { - "name": null, - "unified": "1F5B1-FE0F", - "non_qualified": "1F5B1", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f5b1-fe0f.png", - "sheet_x": 30, - "sheet_y": 20, - "short_name": "three_button_mouse", - "short_names": ["three_button_mouse"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 37, - "added_in": "7.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "sleeping": { - "char": "\ud83d\ude34", - "key": "sleeping", - "keywords": ["sleeping", "SLEEPING FACE"], - "category": "people", - "lib": { - "name": "SLEEPING FACE", - "unified": "1F634", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f634.png", - "sheet_x": 31, - "sheet_y": 42, - "short_name": "sleeping", - "short_names": ["sleeping"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 37, - "added_in": "6.1", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "rhinoceros": { - "char": "\ud83e\udd8f", - "key": "rhinoceros", - "keywords": ["rhinoceros", "RHINOCEROS"], - "category": "animals_and_nature", - "lib": { - "name": "RHINOCEROS", - "unified": "1F98F", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f98f.png", - "sheet_x": 43, - "sheet_y": 11, - "short_name": "rhinoceros", - "short_names": ["rhinoceros"], - "text": null, - "texts": null, - "category": "Animals & Nature", - "sort_order": 37, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "leftwards_arrow_with_hook": { - "char": "\u21a9\ufe0f", - "key": "leftwards_arrow_with_hook", - "keywords": ["leftwards_arrow_with_hook", "LEFTWARDS ARROW WITH HOOK"], - "category": "symbols", - "lib": { - "name": "LEFTWARDS ARROW WITH HOOK", - "unified": "21A9-FE0F", - "non_qualified": "21A9", - "docomo": "E6DA", - "au": "E55D", - "softbank": null, - "google": "FEB83", - "image": "21a9-fe0f.png", - "sheet_x": 48, - "sheet_y": 30, - "short_name": "leftwards_arrow_with_hook", - "short_names": ["leftwards_arrow_with_hook"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 37, - "added_in": "1.1", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-bq": { - "char": "\ud83c\udde7\ud83c\uddf6", - "key": "flag-bq", - "keywords": ["flag-bq", "Caribbean Netherlands Flag"], - "category": "flags", - "lib": { - "name": "Caribbean Netherlands Flag", - "unified": "1F1E7-1F1F6", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1e7-1f1f6.png", - "sheet_x": 1, - "sheet_y": 8, - "short_name": "flag-bq", - "short_names": ["flag-bq"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 38, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "poultry_leg": { - "char": "\ud83c\udf57", - "key": "poultry_leg", - "keywords": ["poultry_leg", "POULTRY LEG"], - "category": "food_and_drink", - "lib": { - "name": "POULTRY LEG", - "unified": "1F357", - "non_qualified": null, - "docomo": null, - "au": "EB3C", - "softbank": null, - "google": "FE976", - "image": "1f357.png", - "sheet_x": 7, - "sheet_y": 18, - "short_name": "poultry_leg", - "short_names": ["poultry_leg"], - "text": null, - "texts": null, - "category": "Food & Drink", - "sort_order": 38, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "cricket_bat_and_ball": { - "char": "\ud83c\udfcf", - "key": "cricket_bat_and_ball", - "keywords": ["cricket_bat_and_ball", "CRICKET BAT AND BALL"], - "category": "activity", - "lib": { - "name": "CRICKET BAT AND BALL", - "unified": "1F3CF", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f3cf.png", - "sheet_x": 11, - "sheet_y": 21, - "short_name": "cricket_bat_and_ball", - "short_names": ["cricket_bat_and_ball"], - "text": null, - "texts": null, - "category": "Activities", - "sort_order": 38, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "wedding": { - "char": "\ud83d\udc92", - "key": "wedding", - "keywords": ["wedding", "WEDDING"], - "category": "travel_and_places", - "lib": { - "name": "WEDDING", - "unified": "1F492", - "non_qualified": null, - "docomo": null, - "au": "E5BB", - "softbank": "E43D", - "google": "FE82A", - "image": "1f492.png", - "sheet_x": 25, - "sheet_y": 16, - "short_name": "wedding", - "short_names": ["wedding"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 38, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "trackball": { - "char": "\ud83d\uddb2\ufe0f", - "key": "trackball", - "keywords": ["trackball", ""], - "category": "objects", - "lib": { - "name": null, - "unified": "1F5B2-FE0F", - "non_qualified": "1F5B2", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f5b2-fe0f.png", - "sheet_x": 30, - "sheet_y": 21, - "short_name": "trackball", - "short_names": ["trackball"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 38, - "added_in": "7.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "relieved": { - "char": "\ud83d\ude0c", - "key": "relieved", - "keywords": ["relieved", "RELIEVED FACE"], - "category": "people", - "lib": { - "name": "RELIEVED FACE", - "unified": "1F60C", - "non_qualified": null, - "docomo": "E721", - "au": "EAC5", - "softbank": "E40A", - "google": "FE33E", - "image": "1f60c.png", - "sheet_x": 31, - "sheet_y": 2, - "short_name": "relieved", - "short_names": ["relieved"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 38, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "hippopotamus": { - "char": "\ud83e\udd9b", - "key": "hippopotamus", - "keywords": ["hippopotamus", "HIPPOPOTAMUS"], - "category": "animals_and_nature", - "lib": { - "name": "HIPPOPOTAMUS", - "unified": "1F99B", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f99b.png", - "sheet_x": 43, - "sheet_y": 23, - "short_name": "hippopotamus", - "short_names": ["hippopotamus"], - "text": null, - "texts": null, - "category": "Animals & Nature", - "sort_order": 38, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - } - }, - "arrow_right_hook": { - "char": "\u21aa\ufe0f", - "key": "arrow_right_hook", - "keywords": ["arrow_right_hook", "RIGHTWARDS ARROW WITH HOOK"], - "category": "symbols", - "lib": { - "name": "RIGHTWARDS ARROW WITH HOOK", - "unified": "21AA-FE0F", - "non_qualified": "21AA", - "docomo": null, - "au": "E55C", - "softbank": null, - "google": "FEB88", - "image": "21aa-fe0f.png", - "sheet_x": 48, - "sheet_y": 31, - "short_name": "arrow_right_hook", - "short_names": ["arrow_right_hook"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 38, - "added_in": "1.1", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-br": { - "char": "\ud83c\udde7\ud83c\uddf7", - "key": "flag-br", - "keywords": ["flag-br", "Brazil Flag"], - "category": "flags", - "lib": { - "name": "Brazil Flag", - "unified": "1F1E7-1F1F7", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1e7-1f1f7.png", - "sheet_x": 1, - "sheet_y": 9, - "short_name": "flag-br", - "short_names": ["flag-br"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 39, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "field_hockey_stick_and_ball": { - "char": "\ud83c\udfd1", - "key": "field_hockey_stick_and_ball", - "keywords": ["field_hockey_stick_and_ball", "FIELD HOCKEY STICK AND BALL"], - "category": "activity", - "lib": { - "name": "FIELD HOCKEY STICK AND BALL", - "unified": "1F3D1", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f3d1.png", - "sheet_x": 11, - "sheet_y": 23, - "short_name": "field_hockey_stick_and_ball", - "short_names": ["field_hockey_stick_and_ball"], - "text": null, - "texts": null, - "category": "Activities", - "sort_order": 39, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "mouse": { - "char": "\ud83d\udc2d", - "key": "mouse", - "keywords": ["mouse", "MOUSE FACE"], - "category": "animals_and_nature", - "lib": { - "name": "MOUSE FACE", - "unified": "1F42D", - "non_qualified": null, - "docomo": null, - "au": "E5C2", - "softbank": "E053", - "google": "FE1C2", - "image": "1f42d.png", - "sheet_x": 13, - "sheet_y": 11, - "short_name": "mouse", - "short_names": ["mouse"], - "text": null, - "texts": null, - "category": "Animals & Nature", - "sort_order": 39, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "minidisc": { - "char": "\ud83d\udcbd", - "key": "minidisc", - "keywords": ["minidisc", "MINIDISC"], - "category": "objects", - "lib": { - "name": "MINIDISC", - "unified": "1F4BD", - "non_qualified": null, - "docomo": null, - "au": "E582", - "softbank": "E316", - "google": "FE53C", - "image": "1f4bd.png", - "sheet_x": 26, - "sheet_y": 11, - "short_name": "minidisc", - "short_names": ["minidisc"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 39, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "tokyo_tower": { - "char": "\ud83d\uddfc", - "key": "tokyo_tower", - "keywords": ["tokyo_tower", "TOKYO TOWER"], - "category": "travel_and_places", - "lib": { - "name": "TOKYO TOWER", - "unified": "1F5FC", - "non_qualified": null, - "docomo": null, - "au": "E4C0", - "softbank": "E509", - "google": "FE4C4", - "image": "1f5fc.png", - "sheet_x": 30, - "sheet_y": 39, - "short_name": "tokyo_tower", - "short_names": ["tokyo_tower"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 39, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "stuck_out_tongue": { - "char": "\ud83d\ude1b", - "key": "stuck_out_tongue", - "keywords": ["stuck_out_tongue", "FACE WITH STUCK-OUT TONGUE"], - "category": "people", - "lib": { - "name": "FACE WITH STUCK-OUT TONGUE", - "unified": "1F61B", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f61b.png", - "sheet_x": 31, - "sheet_y": 17, - "short_name": "stuck_out_tongue", - "short_names": ["stuck_out_tongue"], - "text": ":p", - "texts": [":p", ":-p", ":P", ":-P", ":b", ":-b"], - "category": "Smileys & People", - "sort_order": 39, - "added_in": "6.1", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "cut_of_meat": { - "char": "\ud83e\udd69", - "key": "cut_of_meat", - "keywords": ["cut_of_meat", "CUT OF MEAT"], - "category": "food_and_drink", - "lib": { - "name": "CUT OF MEAT", - "unified": "1F969", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f969.png", - "sheet_x": 42, - "sheet_y": 32, - "short_name": "cut_of_meat", - "short_names": ["cut_of_meat"], - "text": null, - "texts": null, - "category": "Food & Drink", - "sort_order": 39, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "arrow_heading_up": { - "char": "\u2934\ufe0f", - "key": "arrow_heading_up", - "keywords": ["arrow_heading_up", "ARROW POINTING RIGHTWARDS THEN CURVING UPWARDS"], - "category": "symbols", - "lib": { - "name": "ARROW POINTING RIGHTWARDS THEN CURVING UPWARDS", - "unified": "2934-FE0F", - "non_qualified": "2934", - "docomo": "E6F5", - "au": "EB2D", - "softbank": null, - "google": "FEAF4", - "image": "2934-fe0f.png", - "sheet_x": 52, - "sheet_y": 4, - "short_name": "arrow_heading_up", - "short_names": ["arrow_heading_up"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 39, - "added_in": "3.2", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-bs": { - "char": "\ud83c\udde7\ud83c\uddf8", - "key": "flag-bs", - "keywords": ["flag-bs", "Bahamas Flag"], - "category": "flags", - "lib": { - "name": "Bahamas Flag", - "unified": "1F1E7-1F1F8", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1e7-1f1f8.png", - "sheet_x": 1, - "sheet_y": 10, - "short_name": "flag-bs", - "short_names": ["flag-bs"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 40, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "ice_hockey_stick_and_puck": { - "char": "\ud83c\udfd2", - "key": "ice_hockey_stick_and_puck", - "keywords": ["ice_hockey_stick_and_puck", "ICE HOCKEY STICK AND PUCK"], - "category": "activity", - "lib": { - "name": "ICE HOCKEY STICK AND PUCK", - "unified": "1F3D2", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f3d2.png", - "sheet_x": 11, - "sheet_y": 24, - "short_name": "ice_hockey_stick_and_puck", - "short_names": ["ice_hockey_stick_and_puck"], - "text": null, - "texts": null, - "category": "Activities", - "sort_order": 40, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "mouse2": { - "char": "\ud83d\udc01", - "key": "mouse2", - "keywords": ["mouse2", "MOUSE"], - "category": "animals_and_nature", - "lib": { - "name": "MOUSE", - "unified": "1F401", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f401.png", - "sheet_x": 12, - "sheet_y": 20, - "short_name": "mouse2", - "short_names": ["mouse2"], - "text": null, - "texts": null, - "category": "Animals & Nature", - "sort_order": 40, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "floppy_disk": { - "char": "\ud83d\udcbe", - "key": "floppy_disk", - "keywords": ["floppy_disk", "FLOPPY DISK"], - "category": "objects", - "lib": { - "name": "FLOPPY DISK", - "unified": "1F4BE", - "non_qualified": null, - "docomo": null, - "au": "E562", - "softbank": null, - "google": "FE53D", - "image": "1f4be.png", - "sheet_x": 26, - "sheet_y": 12, - "short_name": "floppy_disk", - "short_names": ["floppy_disk"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 40, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "statue_of_liberty": { - "char": "\ud83d\uddfd", - "key": "statue_of_liberty", - "keywords": ["statue_of_liberty", "STATUE OF LIBERTY"], - "category": "travel_and_places", - "lib": { - "name": "STATUE OF LIBERTY", - "unified": "1F5FD", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": "E51D", - "google": "FE4C6", - "image": "1f5fd.png", - "sheet_x": 30, - "sheet_y": 40, - "short_name": "statue_of_liberty", - "short_names": ["statue_of_liberty"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 40, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "stuck_out_tongue_winking_eye": { - "char": "\ud83d\ude1c", - "key": "stuck_out_tongue_winking_eye", - "keywords": ["stuck_out_tongue_winking_eye", "FACE WITH STUCK-OUT TONGUE AND WINKING EYE"], - "category": "people", - "lib": { - "name": "FACE WITH STUCK-OUT TONGUE AND WINKING EYE", - "unified": "1F61C", - "non_qualified": null, - "docomo": "E728", - "au": "E4E7", - "softbank": "E105", - "google": "FE329", - "image": "1f61c.png", - "sheet_x": 31, - "sheet_y": 18, - "short_name": "stuck_out_tongue_winking_eye", - "short_names": ["stuck_out_tongue_winking_eye"], - "text": ";p", - "texts": [";p", ";-p", ";b", ";-b", ";P", ";-P"], - "category": "Smileys & People", - "sort_order": 40, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "bacon": { - "char": "\ud83e\udd53", - "key": "bacon", - "keywords": ["bacon", "BACON"], - "category": "food_and_drink", - "lib": { - "name": "BACON", - "unified": "1F953", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f953.png", - "sheet_x": 42, - "sheet_y": 10, - "short_name": "bacon", - "short_names": ["bacon"], - "text": null, - "texts": null, - "category": "Food & Drink", - "sort_order": 40, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "arrow_heading_down": { - "char": "\u2935\ufe0f", - "key": "arrow_heading_down", - "keywords": ["arrow_heading_down", "ARROW POINTING RIGHTWARDS THEN CURVING DOWNWARDS"], - "category": "symbols", - "lib": { - "name": "ARROW POINTING RIGHTWARDS THEN CURVING DOWNWARDS", - "unified": "2935-FE0F", - "non_qualified": "2935", - "docomo": "E700", - "au": "EB2E", - "softbank": null, - "google": "FEAF5", - "image": "2935-fe0f.png", - "sheet_x": 52, - "sheet_y": 5, - "short_name": "arrow_heading_down", - "short_names": ["arrow_heading_down"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 40, - "added_in": "3.2", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-bt": { - "char": "\ud83c\udde7\ud83c\uddf9", - "key": "flag-bt", - "keywords": ["flag-bt", "Bhutan Flag"], - "category": "flags", - "lib": { - "name": "Bhutan Flag", - "unified": "1F1E7-1F1F9", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1e7-1f1f9.png", - "sheet_x": 1, - "sheet_y": 11, - "short_name": "flag-bt", - "short_names": ["flag-bt"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 41, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "hamburger": { - "char": "\ud83c\udf54", - "key": "hamburger", - "keywords": ["hamburger", "HAMBURGER"], - "category": "food_and_drink", - "lib": { - "name": "HAMBURGER", - "unified": "1F354", - "non_qualified": null, - "docomo": "E673", - "au": "E4D6", - "softbank": "E120", - "google": "FE960", - "image": "1f354.png", - "sheet_x": 7, - "sheet_y": 15, - "short_name": "hamburger", - "short_names": ["hamburger"], - "text": null, - "texts": null, - "category": "Food & Drink", - "sort_order": 41, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "rat": { - "char": "\ud83d\udc00", - "key": "rat", - "keywords": ["rat", "RAT"], - "category": "animals_and_nature", - "lib": { - "name": "RAT", - "unified": "1F400", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f400.png", - "sheet_x": 12, - "sheet_y": 19, - "short_name": "rat", - "short_names": ["rat"], - "text": null, - "texts": null, - "category": "Animals & Nature", - "sort_order": 41, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "cd": { - "char": "\ud83d\udcbf", - "key": "cd", - "keywords": ["cd", "OPTICAL DISC"], - "category": "objects", - "lib": { - "name": "OPTICAL DISC", - "unified": "1F4BF", - "non_qualified": null, - "docomo": "E68C", - "au": "E50C", - "softbank": "E126", - "google": "FE81D", - "image": "1f4bf.png", - "sheet_x": 26, - "sheet_y": 13, - "short_name": "cd", - "short_names": ["cd"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 41, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "arrows_clockwise": { - "char": "\ud83d\udd03", - "key": "arrows_clockwise", - "keywords": ["arrows_clockwise", "CLOCKWISE DOWNWARDS AND UPWARDS OPEN CIRCLE ARROWS"], - "category": "symbols", - "lib": { - "name": "CLOCKWISE DOWNWARDS AND UPWARDS OPEN CIRCLE ARROWS", - "unified": "1F503", - "non_qualified": null, - "docomo": "E735", - "au": "EB0D", - "softbank": null, - "google": "FEB91", - "image": "1f503.png", - "sheet_x": 27, - "sheet_y": 27, - "short_name": "arrows_clockwise", - "short_names": ["arrows_clockwise"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 41, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "stuck_out_tongue_closed_eyes": { - "char": "\ud83d\ude1d", - "key": "stuck_out_tongue_closed_eyes", - "keywords": ["stuck_out_tongue_closed_eyes", "FACE WITH STUCK-OUT TONGUE AND TIGHTLY-CLOSED EYES"], - "category": "people", - "lib": { - "name": "FACE WITH STUCK-OUT TONGUE AND TIGHTLY-CLOSED EYES", - "unified": "1F61D", - "non_qualified": null, - "docomo": "E728", - "au": "E4E7", - "softbank": "E409", - "google": "FE32A", - "image": "1f61d.png", - "sheet_x": 31, - "sheet_y": 19, - "short_name": "stuck_out_tongue_closed_eyes", - "short_names": ["stuck_out_tongue_closed_eyes"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 41, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "lacrosse": { - "char": "\ud83e\udd4d", - "key": "lacrosse", - "keywords": ["lacrosse", "LACROSSE STICK AND BALL"], - "category": "activity", - "lib": { - "name": "LACROSSE STICK AND BALL", - "unified": "1F94D", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f94d.png", - "sheet_x": 42, - "sheet_y": 4, - "short_name": "lacrosse", - "short_names": ["lacrosse"], - "text": null, - "texts": null, - "category": "Activities", - "sort_order": 41, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - } - }, - "church": { - "char": "\u26ea", - "key": "church", - "keywords": ["church", "CHURCH"], - "category": "travel_and_places", - "lib": { - "name": "CHURCH", - "unified": "26EA", - "non_qualified": null, - "docomo": null, - "au": "E5BB", - "softbank": "E037", - "google": "FE4BB", - "image": "26ea.png", - "sheet_x": 50, - "sheet_y": 28, - "short_name": "church", - "short_names": ["church"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 41, - "added_in": "5.2", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-bv": { - "char": "\ud83c\udde7\ud83c\uddfb", - "key": "flag-bv", - "keywords": ["flag-bv", "Bouvet Island Flag"], - "category": "flags", - "lib": { - "name": "Bouvet Island Flag", - "unified": "1F1E7-1F1FB", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1e7-1f1fb.png", - "sheet_x": 1, - "sheet_y": 12, - "short_name": "flag-bv", - "short_names": ["flag-bv"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 42, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "fries": { - "char": "\ud83c\udf5f", - "key": "fries", - "keywords": ["fries", "FRENCH FRIES"], - "category": "food_and_drink", - "lib": { - "name": "FRENCH FRIES", - "unified": "1F35F", - "non_qualified": null, - "docomo": null, - "au": "EAB1", - "softbank": "E33B", - "google": "FE967", - "image": "1f35f.png", - "sheet_x": 7, - "sheet_y": 26, - "short_name": "fries", - "short_names": ["fries"], - "text": null, - "texts": null, - "category": "Food & Drink", - "sort_order": 42, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "table_tennis_paddle_and_ball": { - "char": "\ud83c\udfd3", - "key": "table_tennis_paddle_and_ball", - "keywords": ["table_tennis_paddle_and_ball", "TABLE TENNIS PADDLE AND BALL"], - "category": "activity", - "lib": { - "name": "TABLE TENNIS PADDLE AND BALL", - "unified": "1F3D3", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f3d3.png", - "sheet_x": 11, - "sheet_y": 25, - "short_name": "table_tennis_paddle_and_ball", - "short_names": ["table_tennis_paddle_and_ball"], - "text": null, - "texts": null, - "category": "Activities", - "sort_order": 42, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "hamster": { - "char": "\ud83d\udc39", - "key": "hamster", - "keywords": ["hamster", "HAMSTER FACE"], - "category": "animals_and_nature", - "lib": { - "name": "HAMSTER FACE", - "unified": "1F439", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": "E524", - "google": "FE1CA", - "image": "1f439.png", - "sheet_x": 13, - "sheet_y": 23, - "short_name": "hamster", - "short_names": ["hamster"], - "text": null, - "texts": null, - "category": "Animals & Nature", - "sort_order": 42, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "dvd": { - "char": "\ud83d\udcc0", - "key": "dvd", - "keywords": ["dvd", "DVD"], - "category": "objects", - "lib": { - "name": "DVD", - "unified": "1F4C0", - "non_qualified": null, - "docomo": "E68C", - "au": "E50C", - "softbank": "E127", - "google": "FE81E", - "image": "1f4c0.png", - "sheet_x": 26, - "sheet_y": 14, - "short_name": "dvd", - "short_names": ["dvd"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 42, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "arrows_counterclockwise": { - "char": "\ud83d\udd04", - "key": "arrows_counterclockwise", - "keywords": ["arrows_counterclockwise", "ANTICLOCKWISE DOWNWARDS AND UPWARDS OPEN CIRCLE ARROWS"], - "category": "symbols", - "lib": { - "name": "ANTICLOCKWISE DOWNWARDS AND UPWARDS OPEN CIRCLE ARROWS", - "unified": "1F504", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f504.png", - "sheet_x": 27, - "sheet_y": 28, - "short_name": "arrows_counterclockwise", - "short_names": ["arrows_counterclockwise"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 42, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "mosque": { - "char": "\ud83d\udd4c", - "key": "mosque", - "keywords": ["mosque", "MOSQUE"], - "category": "travel_and_places", - "lib": { - "name": "MOSQUE", - "unified": "1F54C", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f54c.png", - "sheet_x": 28, - "sheet_y": 36, - "short_name": "mosque", - "short_names": ["mosque"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 42, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "drooling_face": { - "char": "\ud83e\udd24", - "key": "drooling_face", - "keywords": ["drooling_face", "DROOLING FACE"], - "category": "people", - "lib": { - "name": "DROOLING FACE", - "unified": "1F924", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f924.png", - "sheet_x": 38, - "sheet_y": 39, - "short_name": "drooling_face", - "short_names": ["drooling_face"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 42, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "flag-bw": { - "char": "\ud83c\udde7\ud83c\uddfc", - "key": "flag-bw", - "keywords": ["flag-bw", "Botswana Flag"], - "category": "flags", - "lib": { - "name": "Botswana Flag", - "unified": "1F1E7-1F1FC", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1e7-1f1fc.png", - "sheet_x": 1, - "sheet_y": 13, - "short_name": "flag-bw", - "short_names": ["flag-bw"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 43, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "pizza": { - "char": "\ud83c\udf55", - "key": "pizza", - "keywords": ["pizza", "SLICE OF PIZZA"], - "category": "food_and_drink", - "lib": { - "name": "SLICE OF PIZZA", - "unified": "1F355", - "non_qualified": null, - "docomo": null, - "au": "EB3B", - "softbank": null, - "google": "FE975", - "image": "1f355.png", - "sheet_x": 7, - "sheet_y": 16, - "short_name": "pizza", - "short_names": ["pizza"], - "text": null, - "texts": null, - "category": "Food & Drink", - "sort_order": 43, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "badminton_racquet_and_shuttlecock": { - "char": "\ud83c\udff8", - "key": "badminton_racquet_and_shuttlecock", - "keywords": ["badminton_racquet_and_shuttlecock", "BADMINTON RACQUET AND SHUTTLECOCK"], - "category": "activity", - "lib": { - "name": "BADMINTON RACQUET AND SHUTTLECOCK", - "unified": "1F3F8", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f3f8.png", - "sheet_x": 12, - "sheet_y": 11, - "short_name": "badminton_racquet_and_shuttlecock", - "short_names": ["badminton_racquet_and_shuttlecock"], - "text": null, - "texts": null, - "category": "Activities", - "sort_order": 43, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "rabbit": { - "char": "\ud83d\udc30", - "key": "rabbit", - "keywords": ["rabbit", "RABBIT FACE"], - "category": "animals_and_nature", - "lib": { - "name": "RABBIT FACE", - "unified": "1F430", - "non_qualified": null, - "docomo": null, - "au": "E4D7", - "softbank": "E52C", - "google": "FE1D2", - "image": "1f430.png", - "sheet_x": 13, - "sheet_y": 14, - "short_name": "rabbit", - "short_names": ["rabbit"], - "text": null, - "texts": null, - "category": "Animals & Nature", - "sort_order": 43, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "back": { - "char": "\ud83d\udd19", - "key": "back", - "keywords": ["back", "BACK WITH LEFTWARDS ARROW ABOVE"], - "category": "symbols", - "lib": { - "name": "BACK WITH LEFTWARDS ARROW ABOVE", - "unified": "1F519", - "non_qualified": null, - "docomo": null, - "au": "EB06", - "softbank": null, - "google": "FEB8E", - "image": "1f519.png", - "sheet_x": 27, - "sheet_y": 49, - "short_name": "back", - "short_names": ["back"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 43, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "synagogue": { - "char": "\ud83d\udd4d", - "key": "synagogue", - "keywords": ["synagogue", "SYNAGOGUE"], - "category": "travel_and_places", - "lib": { - "name": "SYNAGOGUE", - "unified": "1F54D", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f54d.png", - "sheet_x": 28, - "sheet_y": 37, - "short_name": "synagogue", - "short_names": ["synagogue"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 43, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "unamused": { - "char": "\ud83d\ude12", - "key": "unamused", - "keywords": ["unamused", "UNAMUSED FACE"], - "category": "people", - "lib": { - "name": "UNAMUSED FACE", - "unified": "1F612", - "non_qualified": null, - "docomo": "E725", - "au": "EAC9", - "softbank": "E40E", - "google": "FE326", - "image": "1f612.png", - "sheet_x": 31, - "sheet_y": 8, - "short_name": "unamused", - "short_names": ["unamused"], - "text": ":(", - "texts": null, - "category": "Smileys & People", - "sort_order": 43, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "abacus": { - "char": "\ud83e\uddee", - "key": "abacus", - "keywords": ["abacus", "ABACUS"], - "category": "objects", - "lib": { - "name": "ABACUS", - "unified": "1F9EE", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f9ee.png", - "sheet_x": 48, - "sheet_y": 2, - "short_name": "abacus", - "short_names": ["abacus"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 43, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - } - }, - "flag-by": { - "char": "\ud83c\udde7\ud83c\uddfe", - "key": "flag-by", - "keywords": ["flag-by", "Belarus Flag"], - "category": "flags", - "lib": { - "name": "Belarus Flag", - "unified": "1F1E7-1F1FE", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1e7-1f1fe.png", - "sheet_x": 1, - "sheet_y": 14, - "short_name": "flag-by", - "short_names": ["flag-by"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 44, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "hotdog": { - "char": "\ud83c\udf2d", - "key": "hotdog", - "keywords": ["hotdog", "HOT DOG"], - "category": "food_and_drink", - "lib": { - "name": "HOT DOG", - "unified": "1F32D", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f32d.png", - "sheet_x": 6, - "sheet_y": 29, - "short_name": "hotdog", - "short_names": ["hotdog"], - "text": null, - "texts": null, - "category": "Food & Drink", - "sort_order": 44, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "movie_camera": { - "char": "\ud83c\udfa5", - "key": "movie_camera", - "keywords": ["movie_camera", "MOVIE CAMERA"], - "category": "objects", - "lib": { - "name": "MOVIE CAMERA", - "unified": "1F3A5", - "non_qualified": null, - "docomo": "E677", - "au": "E517", - "softbank": "E03D", - "google": "FE801", - "image": "1f3a5.png", - "sheet_x": 8, - "sheet_y": 43, - "short_name": "movie_camera", - "short_names": ["movie_camera"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 44, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "rabbit2": { - "char": "\ud83d\udc07", - "key": "rabbit2", - "keywords": ["rabbit2", "RABBIT"], - "category": "animals_and_nature", - "lib": { - "name": "RABBIT", - "unified": "1F407", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f407.png", - "sheet_x": 12, - "sheet_y": 26, - "short_name": "rabbit2", - "short_names": ["rabbit2"], - "text": null, - "texts": null, - "category": "Animals & Nature", - "sort_order": 44, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "end": { - "char": "\ud83d\udd1a", - "key": "end", - "keywords": ["end", "END WITH LEFTWARDS ARROW ABOVE"], - "category": "symbols", - "lib": { - "name": "END WITH LEFTWARDS ARROW ABOVE", - "unified": "1F51A", - "non_qualified": null, - "docomo": "E6B9", - "au": null, - "softbank": null, - "google": "FE01A", - "image": "1f51a.png", - "sheet_x": 27, - "sheet_y": 50, - "short_name": "end", - "short_names": ["end"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 44, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "sweat": { - "char": "\ud83d\ude13", - "key": "sweat", - "keywords": ["sweat", "FACE WITH COLD SWEAT"], - "category": "people", - "lib": { - "name": "FACE WITH COLD SWEAT", - "unified": "1F613", - "non_qualified": null, - "docomo": "E723", - "au": "E5C6", - "softbank": "E108", - "google": "FE344", - "image": "1f613.png", - "sheet_x": 31, - "sheet_y": 9, - "short_name": "sweat", - "short_names": ["sweat"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 44, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "boxing_glove": { - "char": "\ud83e\udd4a", - "key": "boxing_glove", - "keywords": ["boxing_glove", "BOXING GLOVE"], - "category": "activity", - "lib": { - "name": "BOXING GLOVE", - "unified": "1F94A", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f94a.png", - "sheet_x": 42, - "sheet_y": 1, - "short_name": "boxing_glove", - "short_names": ["boxing_glove"], - "text": null, - "texts": null, - "category": "Activities", - "sort_order": 44, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "shinto_shrine": { - "char": "\u26e9\ufe0f", - "key": "shinto_shrine", - "keywords": ["shinto_shrine", ""], - "category": "travel_and_places", - "lib": { - "name": null, - "unified": "26E9-FE0F", - "non_qualified": "26E9", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "26e9-fe0f.png", - "sheet_x": 50, - "sheet_y": 27, - "short_name": "shinto_shrine", - "short_names": ["shinto_shrine"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 44, - "added_in": "5.2", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "flag-bz": { - "char": "\ud83c\udde7\ud83c\uddff", - "key": "flag-bz", - "keywords": ["flag-bz", "Belize Flag"], - "category": "flags", - "lib": { - "name": "Belize Flag", - "unified": "1F1E7-1F1FF", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1e7-1f1ff.png", - "sheet_x": 1, - "sheet_y": 15, - "short_name": "flag-bz", - "short_names": ["flag-bz"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 45, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "film_frames": { - "char": "\ud83c\udf9e\ufe0f", - "key": "film_frames", - "keywords": ["film_frames", ""], - "category": "objects", - "lib": { - "name": null, - "unified": "1F39E-FE0F", - "non_qualified": "1F39E", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f39e-fe0f.png", - "sheet_x": 8, - "sheet_y": 36, - "short_name": "film_frames", - "short_names": ["film_frames"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 45, - "added_in": "7.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "chipmunk": { - "char": "\ud83d\udc3f\ufe0f", - "key": "chipmunk", - "keywords": ["chipmunk", ""], - "category": "animals_and_nature", - "lib": { - "name": null, - "unified": "1F43F-FE0F", - "non_qualified": "1F43F", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f43f-fe0f.png", - "sheet_x": 13, - "sheet_y": 29, - "short_name": "chipmunk", - "short_names": ["chipmunk"], - "text": null, - "texts": null, - "category": "Animals & Nature", - "sort_order": 45, - "added_in": "7.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "on": { - "char": "\ud83d\udd1b", - "key": "on", - "keywords": ["on", "ON WITH EXCLAMATION MARK WITH LEFT RIGHT ARROW ABOVE"], - "category": "symbols", - "lib": { - "name": "ON WITH EXCLAMATION MARK WITH LEFT RIGHT ARROW ABOVE", - "unified": "1F51B", - "non_qualified": null, - "docomo": "E6B8", - "au": null, - "softbank": null, - "google": "FE019", - "image": "1f51b.png", - "sheet_x": 27, - "sheet_y": 51, - "short_name": "on", - "short_names": ["on"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 45, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "kaaba": { - "char": "\ud83d\udd4b", - "key": "kaaba", - "keywords": ["kaaba", "KAABA"], - "category": "travel_and_places", - "lib": { - "name": "KAABA", - "unified": "1F54B", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f54b.png", - "sheet_x": 28, - "sheet_y": 35, - "short_name": "kaaba", - "short_names": ["kaaba"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 45, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "pensive": { - "char": "\ud83d\ude14", - "key": "pensive", - "keywords": ["pensive", "PENSIVE FACE"], - "category": "people", - "lib": { - "name": "PENSIVE FACE", - "unified": "1F614", - "non_qualified": null, - "docomo": "E720", - "au": "EAC0", - "softbank": "E403", - "google": "FE340", - "image": "1f614.png", - "sheet_x": 31, - "sheet_y": 10, - "short_name": "pensive", - "short_names": ["pensive"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 45, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "martial_arts_uniform": { - "char": "\ud83e\udd4b", - "key": "martial_arts_uniform", - "keywords": ["martial_arts_uniform", "MARTIAL ARTS UNIFORM"], - "category": "activity", - "lib": { - "name": "MARTIAL ARTS UNIFORM", - "unified": "1F94B", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f94b.png", - "sheet_x": 42, - "sheet_y": 2, - "short_name": "martial_arts_uniform", - "short_names": ["martial_arts_uniform"], - "text": null, - "texts": null, - "category": "Activities", - "sort_order": 45, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "sandwich": { - "char": "\ud83e\udd6a", - "key": "sandwich", - "keywords": ["sandwich", "SANDWICH"], - "category": "food_and_drink", - "lib": { - "name": "SANDWICH", - "unified": "1F96A", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f96a.png", - "sheet_x": 42, - "sheet_y": 33, - "short_name": "sandwich", - "short_names": ["sandwich"], - "text": null, - "texts": null, - "category": "Food & Drink", - "sort_order": 45, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "flag-ca": { - "char": "\ud83c\udde8\ud83c\udde6", - "key": "flag-ca", - "keywords": ["flag-ca", "Canada Flag"], - "category": "flags", - "lib": { - "name": "Canada Flag", - "unified": "1F1E8-1F1E6", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1e8-1f1e6.png", - "sheet_x": 1, - "sheet_y": 16, - "short_name": "flag-ca", - "short_names": ["flag-ca"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 46, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "taco": { - "char": "\ud83c\udf2e", - "key": "taco", - "keywords": ["taco", "TACO"], - "category": "food_and_drink", - "lib": { - "name": "TACO", - "unified": "1F32E", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f32e.png", - "sheet_x": 6, - "sheet_y": 30, - "short_name": "taco", - "short_names": ["taco"], - "text": null, - "texts": null, - "category": "Food & Drink", - "sort_order": 46, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "film_projector": { - "char": "\ud83d\udcfd\ufe0f", - "key": "film_projector", - "keywords": ["film_projector", ""], - "category": "objects", - "lib": { - "name": null, - "unified": "1F4FD-FE0F", - "non_qualified": "1F4FD", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f4fd-fe0f.png", - "sheet_x": 27, - "sheet_y": 22, - "short_name": "film_projector", - "short_names": ["film_projector"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 46, - "added_in": "7.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "soon": { - "char": "\ud83d\udd1c", - "key": "soon", - "keywords": ["soon", "SOON WITH RIGHTWARDS ARROW ABOVE"], - "category": "symbols", - "lib": { - "name": "SOON WITH RIGHTWARDS ARROW ABOVE", - "unified": "1F51C", - "non_qualified": null, - "docomo": "E6B7", - "au": null, - "softbank": null, - "google": "FE018", - "image": "1f51c.png", - "sheet_x": 27, - "sheet_y": 52, - "short_name": "soon", - "short_names": ["soon"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 46, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "confused": { - "char": "\ud83d\ude15", - "key": "confused", - "keywords": ["confused", "CONFUSED FACE"], - "category": "people", - "lib": { - "name": "CONFUSED FACE", - "unified": "1F615", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f615.png", - "sheet_x": 31, - "sheet_y": 11, - "short_name": "confused", - "short_names": ["confused"], - "text": null, - "texts": [":\\", ":-\\", ":/", ":-/"], - "category": "Smileys & People", - "sort_order": 46, - "added_in": "6.1", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "goal_net": { - "char": "\ud83e\udd45", - "key": "goal_net", - "keywords": ["goal_net", "GOAL NET"], - "category": "activity", - "lib": { - "name": "GOAL NET", - "unified": "1F945", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f945.png", - "sheet_x": 41, - "sheet_y": 50, - "short_name": "goal_net", - "short_names": ["goal_net"], - "text": null, - "texts": null, - "category": "Activities", - "sort_order": 46, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "hedgehog": { - "char": "\ud83e\udd94", - "key": "hedgehog", - "keywords": ["hedgehog", "HEDGEHOG"], - "category": "animals_and_nature", - "lib": { - "name": "HEDGEHOG", - "unified": "1F994", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f994.png", - "sheet_x": 43, - "sheet_y": 16, - "short_name": "hedgehog", - "short_names": ["hedgehog"], - "text": null, - "texts": null, - "category": "Animals & Nature", - "sort_order": 46, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "fountain": { - "char": "\u26f2", - "key": "fountain", - "keywords": ["fountain", "FOUNTAIN"], - "category": "travel_and_places", - "lib": { - "name": "FOUNTAIN", - "unified": "26F2", - "non_qualified": null, - "docomo": null, - "au": "E5CF", - "softbank": "E121", - "google": "FE4BC", - "image": "26f2.png", - "sheet_x": 50, - "sheet_y": 31, - "short_name": "fountain", - "short_names": ["fountain"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 46, - "added_in": "5.2", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-cc": { - "char": "\ud83c\udde8\ud83c\udde8", - "key": "flag-cc", - "keywords": ["flag-cc", "Cocos (Keeling) Islands Flag"], - "category": "flags", - "lib": { - "name": "Cocos (Keeling) Islands Flag", - "unified": "1F1E8-1F1E8", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1e8-1f1e8.png", - "sheet_x": 1, - "sheet_y": 17, - "short_name": "flag-cc", - "short_names": ["flag-cc"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 47, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "burrito": { - "char": "\ud83c\udf2f", - "key": "burrito", - "keywords": ["burrito", "BURRITO"], - "category": "food_and_drink", - "lib": { - "name": "BURRITO", - "unified": "1F32F", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f32f.png", - "sheet_x": 6, - "sheet_y": 31, - "short_name": "burrito", - "short_names": ["burrito"], - "text": null, - "texts": null, - "category": "Food & Drink", - "sort_order": 47, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "clapper": { - "char": "\ud83c\udfac", - "key": "clapper", - "keywords": ["clapper", "CLAPPER BOARD"], - "category": "objects", - "lib": { - "name": "CLAPPER BOARD", - "unified": "1F3AC", - "non_qualified": null, - "docomo": "E6AC", - "au": "E4BE", - "softbank": "E324", - "google": "FE808", - "image": "1f3ac.png", - "sheet_x": 8, - "sheet_y": 50, - "short_name": "clapper", - "short_names": ["clapper"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 47, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "top": { - "char": "\ud83d\udd1d", - "key": "top", - "keywords": ["top", "TOP WITH UPWARDS ARROW ABOVE"], - "category": "symbols", - "lib": { - "name": "TOP WITH UPWARDS ARROW ABOVE", - "unified": "1F51D", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": "E24C", - "google": "FEB42", - "image": "1f51d.png", - "sheet_x": 28, - "sheet_y": 0, - "short_name": "top", - "short_names": ["top"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 47, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "upside_down_face": { - "char": "\ud83d\ude43", - "key": "upside_down_face", - "keywords": ["upside_down_face", "UPSIDE-DOWN FACE"], - "category": "people", - "lib": { - "name": "UPSIDE-DOWN FACE", - "unified": "1F643", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f643.png", - "sheet_x": 32, - "sheet_y": 4, - "short_name": "upside_down_face", - "short_names": ["upside_down_face"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 47, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "bat": { - "char": "\ud83e\udd87", - "key": "bat", - "keywords": ["bat", "BAT"], - "category": "animals_and_nature", - "lib": { - "name": "BAT", - "unified": "1F987", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f987.png", - "sheet_x": 43, - "sheet_y": 3, - "short_name": "bat", - "short_names": ["bat"], - "text": null, - "texts": null, - "category": "Animals & Nature", - "sort_order": 47, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "golf": { - "char": "\u26f3", - "key": "golf", - "keywords": ["golf", "FLAG IN HOLE"], - "category": "activity", - "lib": { - "name": "FLAG IN HOLE", - "unified": "26F3", - "non_qualified": null, - "docomo": "E654", - "au": "E599", - "softbank": "E014", - "google": "FE7D2", - "image": "26f3.png", - "sheet_x": 50, - "sheet_y": 32, - "short_name": "golf", - "short_names": ["golf"], - "text": null, - "texts": null, - "category": "Activities", - "sort_order": 47, - "added_in": "5.2", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "tent": { - "char": "\u26fa", - "key": "tent", - "keywords": ["tent", "TENT"], - "category": "travel_and_places", - "lib": { - "name": "TENT", - "unified": "26FA", - "non_qualified": null, - "docomo": null, - "au": "E5D0", - "softbank": "E122", - "google": "FE7FB", - "image": "26fa.png", - "sheet_x": 51, - "sheet_y": 2, - "short_name": "tent", - "short_names": ["tent"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 47, - "added_in": "5.2", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-cd": { - "char": "\ud83c\udde8\ud83c\udde9", - "key": "flag-cd", - "keywords": ["flag-cd", "Congo - Kinshasa Flag"], - "category": "flags", - "lib": { - "name": "Congo - Kinshasa Flag", - "unified": "1F1E8-1F1E9", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1e8-1f1e9.png", - "sheet_x": 1, - "sheet_y": 18, - "short_name": "flag-cd", - "short_names": ["flag-cd"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 48, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "foggy": { - "char": "\ud83c\udf01", - "key": "foggy", - "keywords": ["foggy", "FOGGY"], - "category": "travel_and_places", - "lib": { - "name": "FOGGY", - "unified": "1F301", - "non_qualified": null, - "docomo": "E644", - "au": "E598", - "softbank": null, - "google": "FE006", - "image": "1f301.png", - "sheet_x": 5, - "sheet_y": 40, - "short_name": "foggy", - "short_names": ["foggy"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 48, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "bear": { - "char": "\ud83d\udc3b", - "key": "bear", - "keywords": ["bear", "BEAR FACE"], - "category": "animals_and_nature", - "lib": { - "name": "BEAR FACE", - "unified": "1F43B", - "non_qualified": null, - "docomo": null, - "au": "E5C1", - "softbank": "E051", - "google": "FE1C1", - "image": "1f43b.png", - "sheet_x": 13, - "sheet_y": 25, - "short_name": "bear", - "short_names": ["bear"], - "text": null, - "texts": null, - "category": "Animals & Nature", - "sort_order": 48, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "tv": { - "char": "\ud83d\udcfa", - "key": "tv", - "keywords": ["tv", "TELEVISION"], - "category": "objects", - "lib": { - "name": "TELEVISION", - "unified": "1F4FA", - "non_qualified": null, - "docomo": "E68A", - "au": "E502", - "softbank": "E12A", - "google": "FE81C", - "image": "1f4fa.png", - "sheet_x": 27, - "sheet_y": 19, - "short_name": "tv", - "short_names": ["tv"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 48, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "place_of_worship": { - "char": "\ud83d\uded0", - "key": "place_of_worship", - "keywords": ["place_of_worship", "PLACE OF WORSHIP"], - "category": "symbols", - "lib": { - "name": "PLACE OF WORSHIP", - "unified": "1F6D0", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f6d0.png", - "sheet_x": 37, - "sheet_y": 17, - "short_name": "place_of_worship", - "short_names": ["place_of_worship"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 48, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "money_mouth_face": { - "char": "\ud83e\udd11", - "key": "money_mouth_face", - "keywords": ["money_mouth_face", "MONEY-MOUTH FACE"], - "category": "people", - "lib": { - "name": "MONEY-MOUTH FACE", - "unified": "1F911", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f911.png", - "sheet_x": 37, - "sheet_y": 38, - "short_name": "money_mouth_face", - "short_names": ["money_mouth_face"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 48, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "stuffed_flatbread": { - "char": "\ud83e\udd59", - "key": "stuffed_flatbread", - "keywords": ["stuffed_flatbread", "STUFFED FLATBREAD"], - "category": "food_and_drink", - "lib": { - "name": "STUFFED FLATBREAD", - "unified": "1F959", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f959.png", - "sheet_x": 42, - "sheet_y": 16, - "short_name": "stuffed_flatbread", - "short_names": ["stuffed_flatbread"], - "text": null, - "texts": null, - "category": "Food & Drink", - "sort_order": 48, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "ice_skate": { - "char": "\u26f8\ufe0f", - "key": "ice_skate", - "keywords": ["ice_skate", ""], - "category": "activity", - "lib": { - "name": null, - "unified": "26F8-FE0F", - "non_qualified": "26F8", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "26f8-fe0f.png", - "sheet_x": 50, - "sheet_y": 36, - "short_name": "ice_skate", - "short_names": ["ice_skate"], - "text": null, - "texts": null, - "category": "Activities", - "sort_order": 48, - "added_in": "5.2", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "flag-cf": { - "char": "\ud83c\udde8\ud83c\uddeb", - "key": "flag-cf", - "keywords": ["flag-cf", "Central African Republic Flag"], - "category": "flags", - "lib": { - "name": "Central African Republic Flag", - "unified": "1F1E8-1F1EB", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1e8-1f1eb.png", - "sheet_x": 1, - "sheet_y": 19, - "short_name": "flag-cf", - "short_names": ["flag-cf"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 49, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "night_with_stars": { - "char": "\ud83c\udf03", - "key": "night_with_stars", - "keywords": ["night_with_stars", "NIGHT WITH STARS"], - "category": "travel_and_places", - "lib": { - "name": "NIGHT WITH STARS", - "unified": "1F303", - "non_qualified": null, - "docomo": "E6B3", - "au": "EAF1", - "softbank": "E44B", - "google": "FE008", - "image": "1f303.png", - "sheet_x": 5, - "sheet_y": 42, - "short_name": "night_with_stars", - "short_names": ["night_with_stars"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 49, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "fishing_pole_and_fish": { - "char": "\ud83c\udfa3", - "key": "fishing_pole_and_fish", - "keywords": ["fishing_pole_and_fish", "FISHING POLE AND FISH"], - "category": "activity", - "lib": { - "name": "FISHING POLE AND FISH", - "unified": "1F3A3", - "non_qualified": null, - "docomo": "E751", - "au": "EB42", - "softbank": null, - "google": "FE7FF", - "image": "1f3a3.png", - "sheet_x": 8, - "sheet_y": 41, - "short_name": "fishing_pole_and_fish", - "short_names": ["fishing_pole_and_fish"], - "text": null, - "texts": null, - "category": "Activities", - "sort_order": 49, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "koala": { - "char": "\ud83d\udc28", - "key": "koala", - "keywords": ["koala", "KOALA"], - "category": "animals_and_nature", - "lib": { - "name": "KOALA", - "unified": "1F428", - "non_qualified": null, - "docomo": null, - "au": "EB20", - "softbank": "E527", - "google": "FE1CD", - "image": "1f428.png", - "sheet_x": 13, - "sheet_y": 6, - "short_name": "koala", - "short_names": ["koala"], - "text": null, - "texts": null, - "category": "Animals & Nature", - "sort_order": 49, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "camera": { - "char": "\ud83d\udcf7", - "key": "camera", - "keywords": ["camera", "CAMERA"], - "category": "objects", - "lib": { - "name": "CAMERA", - "unified": "1F4F7", - "non_qualified": null, - "docomo": "E681", - "au": "E515", - "softbank": "E008", - "google": "FE4EF", - "image": "1f4f7.png", - "sheet_x": 27, - "sheet_y": 16, - "short_name": "camera", - "short_names": ["camera"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 49, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "astonished": { - "char": "\ud83d\ude32", - "key": "astonished", - "keywords": ["astonished", "ASTONISHED FACE"], - "category": "people", - "lib": { - "name": "ASTONISHED FACE", - "unified": "1F632", - "non_qualified": null, - "docomo": "E6F4", - "au": "EACA", - "softbank": "E410", - "google": "FE322", - "image": "1f632.png", - "sheet_x": 31, - "sheet_y": 40, - "short_name": "astonished", - "short_names": ["astonished"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 49, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "egg": { - "char": "\ud83e\udd5a", - "key": "egg", - "keywords": ["egg", "EGG"], - "category": "food_and_drink", - "lib": { - "name": "EGG", - "unified": "1F95A", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f95a.png", - "sheet_x": 42, - "sheet_y": 17, - "short_name": "egg", - "short_names": ["egg"], - "text": null, - "texts": null, - "category": "Food & Drink", - "sort_order": 49, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "atom_symbol": { - "char": "\u269b\ufe0f", - "key": "atom_symbol", - "keywords": ["atom_symbol", ""], - "category": "symbols", - "lib": { - "name": null, - "unified": "269B-FE0F", - "non_qualified": "269B", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "269b-fe0f.png", - "sheet_x": 50, - "sheet_y": 9, - "short_name": "atom_symbol", - "short_names": ["atom_symbol"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 49, - "added_in": "4.1", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "flag-cg": { - "char": "\ud83c\udde8\ud83c\uddec", - "key": "flag-cg", - "keywords": ["flag-cg", "Congo - Brazzaville Flag"], - "category": "flags", - "lib": { - "name": "Congo - Brazzaville Flag", - "unified": "1F1E8-1F1EC", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1e8-1f1ec.png", - "sheet_x": 1, - "sheet_y": 20, - "short_name": "flag-cg", - "short_names": ["flag-cg"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 50, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "fried_egg": { - "char": "\ud83c\udf73", - "key": "fried_egg", - "keywords": ["fried_egg", "COOKING"], - "category": "food_and_drink", - "lib": { - "name": "COOKING", - "unified": "1F373", - "non_qualified": null, - "docomo": null, - "au": "E4D1", - "softbank": "E147", - "google": "FE965", - "image": "1f373.png", - "sheet_x": 7, - "sheet_y": 46, - "short_name": "fried_egg", - "short_names": ["fried_egg", "cooking"], - "text": null, - "texts": null, - "category": "Food & Drink", - "sort_order": 50, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "running_shirt_with_sash": { - "char": "\ud83c\udfbd", - "key": "running_shirt_with_sash", - "keywords": ["running_shirt_with_sash", "RUNNING SHIRT WITH SASH"], - "category": "activity", - "lib": { - "name": "RUNNING SHIRT WITH SASH", - "unified": "1F3BD", - "non_qualified": null, - "docomo": "E652", - "au": null, - "softbank": null, - "google": "FE7D0", - "image": "1f3bd.png", - "sheet_x": 9, - "sheet_y": 14, - "short_name": "running_shirt_with_sash", - "short_names": ["running_shirt_with_sash"], - "text": null, - "texts": null, - "category": "Activities", - "sort_order": 50, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "cityscape": { - "char": "\ud83c\udfd9\ufe0f", - "key": "cityscape", - "keywords": ["cityscape", ""], - "category": "travel_and_places", - "lib": { - "name": null, - "unified": "1F3D9-FE0F", - "non_qualified": "1F3D9", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f3d9-fe0f.png", - "sheet_x": 11, - "sheet_y": 31, - "short_name": "cityscape", - "short_names": ["cityscape"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 50, - "added_in": "7.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "panda_face": { - "char": "\ud83d\udc3c", - "key": "panda_face", - "keywords": ["panda_face", "PANDA FACE"], - "category": "animals_and_nature", - "lib": { - "name": "PANDA FACE", - "unified": "1F43C", - "non_qualified": null, - "docomo": null, - "au": "EB46", - "softbank": null, - "google": "FE1DF", - "image": "1f43c.png", - "sheet_x": 13, - "sheet_y": 26, - "short_name": "panda_face", - "short_names": ["panda_face"], - "text": null, - "texts": null, - "category": "Animals & Nature", - "sort_order": 50, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "camera_with_flash": { - "char": "\ud83d\udcf8", - "key": "camera_with_flash", - "keywords": ["camera_with_flash", "CAMERA WITH FLASH"], - "category": "objects", - "lib": { - "name": "CAMERA WITH FLASH", - "unified": "1F4F8", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f4f8.png", - "sheet_x": 27, - "sheet_y": 17, - "short_name": "camera_with_flash", - "short_names": ["camera_with_flash"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 50, - "added_in": "7.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "om_symbol": { - "char": "\ud83d\udd49\ufe0f", - "key": "om_symbol", - "keywords": ["om_symbol", ""], - "category": "symbols", - "lib": { - "name": null, - "unified": "1F549-FE0F", - "non_qualified": "1F549", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f549-fe0f.png", - "sheet_x": 28, - "sheet_y": 33, - "short_name": "om_symbol", - "short_names": ["om_symbol"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 50, - "added_in": "7.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "white_frowning_face": { - "char": "\u2639\ufe0f", - "key": "white_frowning_face", - "keywords": ["white_frowning_face", ""], - "category": "people", - "lib": { - "name": null, - "unified": "2639-FE0F", - "non_qualified": "2639", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "2639-fe0f.png", - "sheet_x": 49, - "sheet_y": 30, - "short_name": "white_frowning_face", - "short_names": ["white_frowning_face"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 50, - "added_in": "1.1", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "flag-ch": { - "char": "\ud83c\udde8\ud83c\udded", - "key": "flag-ch", - "keywords": ["flag-ch", "Switzerland Flag"], - "category": "flags", - "lib": { - "name": "Switzerland Flag", - "unified": "1F1E8-1F1ED", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1e8-1f1ed.png", - "sheet_x": 1, - "sheet_y": 21, - "short_name": "flag-ch", - "short_names": ["flag-ch"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 51, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "sunrise_over_mountains": { - "char": "\ud83c\udf04", - "key": "sunrise_over_mountains", - "keywords": ["sunrise_over_mountains", "SUNRISE OVER MOUNTAINS"], - "category": "travel_and_places", - "lib": { - "name": "SUNRISE OVER MOUNTAINS", - "unified": "1F304", - "non_qualified": null, - "docomo": "E63E", - "au": "EAF4", - "softbank": "E04D", - "google": "FE009", - "image": "1f304.png", - "sheet_x": 5, - "sheet_y": 43, - "short_name": "sunrise_over_mountains", - "short_names": ["sunrise_over_mountains"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 51, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "ski": { - "char": "\ud83c\udfbf", - "key": "ski", - "keywords": ["ski", "SKI AND SKI BOOT"], - "category": "activity", - "lib": { - "name": "SKI AND SKI BOOT", - "unified": "1F3BF", - "non_qualified": null, - "docomo": "E657", - "au": "EAAC", - "softbank": "E013", - "google": "FE7D5", - "image": "1f3bf.png", - "sheet_x": 9, - "sheet_y": 16, - "short_name": "ski", - "short_names": ["ski"], - "text": null, - "texts": null, - "category": "Activities", - "sort_order": 51, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "video_camera": { - "char": "\ud83d\udcf9", - "key": "video_camera", - "keywords": ["video_camera", "VIDEO CAMERA"], - "category": "objects", - "lib": { - "name": "VIDEO CAMERA", - "unified": "1F4F9", - "non_qualified": null, - "docomo": "E677", - "au": "E57E", - "softbank": null, - "google": "FE4F9", - "image": "1f4f9.png", - "sheet_x": 27, - "sheet_y": 18, - "short_name": "video_camera", - "short_names": ["video_camera"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 51, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "slightly_frowning_face": { - "char": "\ud83d\ude41", - "key": "slightly_frowning_face", - "keywords": ["slightly_frowning_face", "SLIGHTLY FROWNING FACE"], - "category": "people", - "lib": { - "name": "SLIGHTLY FROWNING FACE", - "unified": "1F641", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f641.png", - "sheet_x": 32, - "sheet_y": 2, - "short_name": "slightly_frowning_face", - "short_names": ["slightly_frowning_face"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 51, - "added_in": "7.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "shallow_pan_of_food": { - "char": "\ud83e\udd58", - "key": "shallow_pan_of_food", - "keywords": ["shallow_pan_of_food", "SHALLOW PAN OF FOOD"], - "category": "food_and_drink", - "lib": { - "name": "SHALLOW PAN OF FOOD", - "unified": "1F958", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f958.png", - "sheet_x": 42, - "sheet_y": 15, - "short_name": "shallow_pan_of_food", - "short_names": ["shallow_pan_of_food"], - "text": null, - "texts": null, - "category": "Food & Drink", - "sort_order": 51, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "kangaroo": { - "char": "\ud83e\udd98", - "key": "kangaroo", - "keywords": ["kangaroo", "KANGAROO"], - "category": "animals_and_nature", - "lib": { - "name": "KANGAROO", - "unified": "1F998", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f998.png", - "sheet_x": 43, - "sheet_y": 20, - "short_name": "kangaroo", - "short_names": ["kangaroo"], - "text": null, - "texts": null, - "category": "Animals & Nature", - "sort_order": 51, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - } - }, - "star_of_david": { - "char": "\u2721\ufe0f", - "key": "star_of_david", - "keywords": ["star_of_david", ""], - "category": "symbols", - "lib": { - "name": null, - "unified": "2721-FE0F", - "non_qualified": "2721", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "2721-fe0f.png", - "sheet_x": 51, - "sheet_y": 37, - "short_name": "star_of_david", - "short_names": ["star_of_david"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 51, - "added_in": "1.1", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "flag-ci": { - "char": "\ud83c\udde8\ud83c\uddee", - "key": "flag-ci", - "keywords": ["flag-ci", "C\u00f4te d\u2019Ivoire Flag"], - "category": "flags", - "lib": { - "name": "C\u00f4te d\u2019Ivoire Flag", - "unified": "1F1E8-1F1EE", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1e8-1f1ee.png", - "sheet_x": 1, - "sheet_y": 22, - "short_name": "flag-ci", - "short_names": ["flag-ci"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 52, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "sunrise": { - "char": "\ud83c\udf05", - "key": "sunrise", - "keywords": ["sunrise", "SUNRISE"], - "category": "travel_and_places", - "lib": { - "name": "SUNRISE", - "unified": "1F305", - "non_qualified": null, - "docomo": "E63E", - "au": "EAF4", - "softbank": "E449", - "google": "FE00A", - "image": "1f305.png", - "sheet_x": 5, - "sheet_y": 44, - "short_name": "sunrise", - "short_names": ["sunrise"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 52, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "stew": { - "char": "\ud83c\udf72", - "key": "stew", - "keywords": ["stew", "POT OF FOOD"], - "category": "food_and_drink", - "lib": { - "name": "POT OF FOOD", - "unified": "1F372", - "non_qualified": null, - "docomo": null, - "au": "EABE", - "softbank": "E34D", - "google": "FE970", - "image": "1f372.png", - "sheet_x": 7, - "sheet_y": 45, - "short_name": "stew", - "short_names": ["stew"], - "text": null, - "texts": null, - "category": "Food & Drink", - "sort_order": 52, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "vhs": { - "char": "\ud83d\udcfc", - "key": "vhs", - "keywords": ["vhs", "VIDEOCASSETTE"], - "category": "objects", - "lib": { - "name": "VIDEOCASSETTE", - "unified": "1F4FC", - "non_qualified": null, - "docomo": null, - "au": "E580", - "softbank": "E129", - "google": "FE820", - "image": "1f4fc.png", - "sheet_x": 27, - "sheet_y": 21, - "short_name": "vhs", - "short_names": ["vhs"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 52, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "confounded": { - "char": "\ud83d\ude16", - "key": "confounded", - "keywords": ["confounded", "CONFOUNDED FACE"], - "category": "people", - "lib": { - "name": "CONFOUNDED FACE", - "unified": "1F616", - "non_qualified": null, - "docomo": "E6F3", - "au": "EAC3", - "softbank": "E407", - "google": "FE33F", - "image": "1f616.png", - "sheet_x": 31, - "sheet_y": 12, - "short_name": "confounded", - "short_names": ["confounded"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 52, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "sled": { - "char": "\ud83d\udef7", - "key": "sled", - "keywords": ["sled", "SLED"], - "category": "activity", - "lib": { - "name": "SLED", - "unified": "1F6F7", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f6f7.png", - "sheet_x": 37, - "sheet_y": 34, - "short_name": "sled", - "short_names": ["sled"], - "text": null, - "texts": null, - "category": "Activities", - "sort_order": 52, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "badger": { - "char": "\ud83e\udda1", - "key": "badger", - "keywords": ["badger", "BADGER"], - "category": "animals_and_nature", - "lib": { - "name": "BADGER", - "unified": "1F9A1", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f9a1.png", - "sheet_x": 43, - "sheet_y": 29, - "short_name": "badger", - "short_names": ["badger"], - "text": null, - "texts": null, - "category": "Animals & Nature", - "sort_order": 52, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - } - }, - "wheel_of_dharma": { - "char": "\u2638\ufe0f", - "key": "wheel_of_dharma", - "keywords": ["wheel_of_dharma", ""], - "category": "symbols", - "lib": { - "name": null, - "unified": "2638-FE0F", - "non_qualified": "2638", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "2638-fe0f.png", - "sheet_x": 49, - "sheet_y": 29, - "short_name": "wheel_of_dharma", - "short_names": ["wheel_of_dharma"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 52, - "added_in": "1.1", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "flag-ck": { - "char": "\ud83c\udde8\ud83c\uddf0", - "key": "flag-ck", - "keywords": ["flag-ck", "Cook Islands Flag"], - "category": "flags", - "lib": { - "name": "Cook Islands Flag", - "unified": "1F1E8-1F1F0", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1e8-1f1f0.png", - "sheet_x": 1, - "sheet_y": 23, - "short_name": "flag-ck", - "short_names": ["flag-ck"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 53, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "city_sunset": { - "char": "\ud83c\udf06", - "key": "city_sunset", - "keywords": ["city_sunset", "CITYSCAPE AT DUSK"], - "category": "travel_and_places", - "lib": { - "name": "CITYSCAPE AT DUSK", - "unified": "1F306", - "non_qualified": null, - "docomo": null, - "au": "E5DA", - "softbank": "E146", - "google": "FE00B", - "image": "1f306.png", - "sheet_x": 5, - "sheet_y": 45, - "short_name": "city_sunset", - "short_names": ["city_sunset"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 53, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "feet": { - "char": "\ud83d\udc3e", - "key": "feet", - "keywords": ["feet", "PAW PRINTS"], - "category": "animals_and_nature", - "lib": { - "name": "PAW PRINTS", - "unified": "1F43E", - "non_qualified": null, - "docomo": "E698", - "au": "E4EE", - "softbank": null, - "google": "FE1DB", - "image": "1f43e.png", - "sheet_x": 13, - "sheet_y": 28, - "short_name": "feet", - "short_names": ["feet", "paw_prints"], - "text": null, - "texts": null, - "category": "Animals & Nature", - "sort_order": 53, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "mag": { - "char": "\ud83d\udd0d", - "key": "mag", - "keywords": ["mag", "LEFT-POINTING MAGNIFYING GLASS"], - "category": "objects", - "lib": { - "name": "LEFT-POINTING MAGNIFYING GLASS", - "unified": "1F50D", - "non_qualified": null, - "docomo": "E6DC", - "au": "E518", - "softbank": "E114", - "google": "FEB85", - "image": "1f50d.png", - "sheet_x": 27, - "sheet_y": 37, - "short_name": "mag", - "short_names": ["mag"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 53, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "disappointed": { - "char": "\ud83d\ude1e", - "key": "disappointed", - "keywords": ["disappointed", "DISAPPOINTED FACE"], - "category": "people", - "lib": { - "name": "DISAPPOINTED FACE", - "unified": "1F61E", - "non_qualified": null, - "docomo": "E6F2", - "au": "EAC0", - "softbank": "E058", - "google": "FE323", - "image": "1f61e.png", - "sheet_x": 31, - "sheet_y": 20, - "short_name": "disappointed", - "short_names": ["disappointed"], - "text": ":(", - "texts": ["):", ":(", ":-("], - "category": "Smileys & People", - "sort_order": 53, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "curling_stone": { - "char": "\ud83e\udd4c", - "key": "curling_stone", - "keywords": ["curling_stone", "CURLING STONE"], - "category": "activity", - "lib": { - "name": "CURLING STONE", - "unified": "1F94C", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f94c.png", - "sheet_x": 42, - "sheet_y": 3, - "short_name": "curling_stone", - "short_names": ["curling_stone"], - "text": null, - "texts": null, - "category": "Activities", - "sort_order": 53, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "bowl_with_spoon": { - "char": "\ud83e\udd63", - "key": "bowl_with_spoon", - "keywords": ["bowl_with_spoon", "BOWL WITH SPOON"], - "category": "food_and_drink", - "lib": { - "name": "BOWL WITH SPOON", - "unified": "1F963", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f963.png", - "sheet_x": 42, - "sheet_y": 26, - "short_name": "bowl_with_spoon", - "short_names": ["bowl_with_spoon"], - "text": null, - "texts": null, - "category": "Food & Drink", - "sort_order": 53, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "yin_yang": { - "char": "\u262f\ufe0f", - "key": "yin_yang", - "keywords": ["yin_yang", ""], - "category": "symbols", - "lib": { - "name": null, - "unified": "262F-FE0F", - "non_qualified": "262F", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "262f-fe0f.png", - "sheet_x": 49, - "sheet_y": 28, - "short_name": "yin_yang", - "short_names": ["yin_yang"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 53, - "added_in": "1.1", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "flag-cl": { - "char": "\ud83c\udde8\ud83c\uddf1", - "key": "flag-cl", - "keywords": ["flag-cl", "Chile Flag"], - "category": "flags", - "lib": { - "name": "Chile Flag", - "unified": "1F1E8-1F1F1", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1e8-1f1f1.png", - "sheet_x": 1, - "sheet_y": 24, - "short_name": "flag-cl", - "short_names": ["flag-cl"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 54, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "city_sunrise": { - "char": "\ud83c\udf07", - "key": "city_sunrise", - "keywords": ["city_sunrise", "SUNSET OVER BUILDINGS"], - "category": "travel_and_places", - "lib": { - "name": "SUNSET OVER BUILDINGS", - "unified": "1F307", - "non_qualified": null, - "docomo": "E63E", - "au": "E5DA", - "softbank": "E44A", - "google": "FE00C", - "image": "1f307.png", - "sheet_x": 5, - "sheet_y": 46, - "short_name": "city_sunrise", - "short_names": ["city_sunrise"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 54, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "dart": { - "char": "\ud83c\udfaf", - "key": "dart", - "keywords": ["dart", "DIRECT HIT"], - "category": "activity", - "lib": { - "name": "DIRECT HIT", - "unified": "1F3AF", - "non_qualified": null, - "docomo": null, - "au": "E4C5", - "softbank": "E130", - "google": "FE80C", - "image": "1f3af.png", - "sheet_x": 9, - "sheet_y": 0, - "short_name": "dart", - "short_names": ["dart"], - "text": null, - "texts": null, - "category": "Activities", - "sort_order": 54, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "mag_right": { - "char": "\ud83d\udd0e", - "key": "mag_right", - "keywords": ["mag_right", "RIGHT-POINTING MAGNIFYING GLASS"], - "category": "objects", - "lib": { - "name": "RIGHT-POINTING MAGNIFYING GLASS", - "unified": "1F50E", - "non_qualified": null, - "docomo": "E6DC", - "au": "EB05", - "softbank": null, - "google": "FEB8D", - "image": "1f50e.png", - "sheet_x": 27, - "sheet_y": 38, - "short_name": "mag_right", - "short_names": ["mag_right"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 54, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "worried": { - "char": "\ud83d\ude1f", - "key": "worried", - "keywords": ["worried", "WORRIED FACE"], - "category": "people", - "lib": { - "name": "WORRIED FACE", - "unified": "1F61F", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f61f.png", - "sheet_x": 31, - "sheet_y": 21, - "short_name": "worried", - "short_names": ["worried"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 54, - "added_in": "6.1", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "green_salad": { - "char": "\ud83e\udd57", - "key": "green_salad", - "keywords": ["green_salad", "GREEN SALAD"], - "category": "food_and_drink", - "lib": { - "name": "GREEN SALAD", - "unified": "1F957", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f957.png", - "sheet_x": 42, - "sheet_y": 14, - "short_name": "green_salad", - "short_names": ["green_salad"], - "text": null, - "texts": null, - "category": "Food & Drink", - "sort_order": 54, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "turkey": { - "char": "\ud83e\udd83", - "key": "turkey", - "keywords": ["turkey", "TURKEY"], - "category": "animals_and_nature", - "lib": { - "name": "TURKEY", - "unified": "1F983", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f983.png", - "sheet_x": 42, - "sheet_y": 52, - "short_name": "turkey", - "short_names": ["turkey"], - "text": null, - "texts": null, - "category": "Animals & Nature", - "sort_order": 54, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "latin_cross": { - "char": "\u271d\ufe0f", - "key": "latin_cross", - "keywords": ["latin_cross", ""], - "category": "symbols", - "lib": { - "name": null, - "unified": "271D-FE0F", - "non_qualified": "271D", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "271d-fe0f.png", - "sheet_x": 51, - "sheet_y": 36, - "short_name": "latin_cross", - "short_names": ["latin_cross"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 54, - "added_in": "1.1", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "flag-cm": { - "char": "\ud83c\udde8\ud83c\uddf2", - "key": "flag-cm", - "keywords": ["flag-cm", "Cameroon Flag"], - "category": "flags", - "lib": { - "name": "Cameroon Flag", - "unified": "1F1E8-1F1F2", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1e8-1f1f2.png", - "sheet_x": 1, - "sheet_y": 25, - "short_name": "flag-cm", - "short_names": ["flag-cm"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 55, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "bridge_at_night": { - "char": "\ud83c\udf09", - "key": "bridge_at_night", - "keywords": ["bridge_at_night", "BRIDGE AT NIGHT"], - "category": "travel_and_places", - "lib": { - "name": "BRIDGE AT NIGHT", - "unified": "1F309", - "non_qualified": null, - "docomo": "E6B3", - "au": "E4BF", - "softbank": null, - "google": "FE010", - "image": "1f309.png", - "sheet_x": 5, - "sheet_y": 48, - "short_name": "bridge_at_night", - "short_names": ["bridge_at_night"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 55, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "popcorn": { - "char": "\ud83c\udf7f", - "key": "popcorn", - "keywords": ["popcorn", "POPCORN"], - "category": "food_and_drink", - "lib": { - "name": "POPCORN", - "unified": "1F37F", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f37f.png", - "sheet_x": 8, - "sheet_y": 5, - "short_name": "popcorn", - "short_names": ["popcorn"], - "text": null, - "texts": null, - "category": "Food & Drink", - "sort_order": 55, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "8ball": { - "char": "\ud83c\udfb1", - "key": "8ball", - "keywords": ["8ball", "BILLIARDS"], - "category": "activity", - "lib": { - "name": "BILLIARDS", - "unified": "1F3B1", - "non_qualified": null, - "docomo": null, - "au": "EADD", - "softbank": "E42C", - "google": "FE80E", - "image": "1f3b1.png", - "sheet_x": 9, - "sheet_y": 2, - "short_name": "8ball", - "short_names": ["8ball"], - "text": null, - "texts": null, - "category": "Activities", - "sort_order": 55, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "chicken": { - "char": "\ud83d\udc14", - "key": "chicken", - "keywords": ["chicken", "CHICKEN"], - "category": "animals_and_nature", - "lib": { - "name": "CHICKEN", - "unified": "1F414", - "non_qualified": null, - "docomo": null, - "au": "EB23", - "softbank": "E52E", - "google": "FE1D4", - "image": "1f414.png", - "sheet_x": 12, - "sheet_y": 39, - "short_name": "chicken", - "short_names": ["chicken"], - "text": null, - "texts": null, - "category": "Animals & Nature", - "sort_order": 55, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "candle": { - "char": "\ud83d\udd6f\ufe0f", - "key": "candle", - "keywords": ["candle", ""], - "category": "objects", - "lib": { - "name": null, - "unified": "1F56F-FE0F", - "non_qualified": "1F56F", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f56f-fe0f.png", - "sheet_x": 29, - "sheet_y": 10, - "short_name": "candle", - "short_names": ["candle"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 55, - "added_in": "7.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "triumph": { - "char": "\ud83d\ude24", - "key": "triumph", - "keywords": ["triumph", "FACE WITH LOOK OF TRIUMPH"], - "category": "people", - "lib": { - "name": "FACE WITH LOOK OF TRIUMPH", - "unified": "1F624", - "non_qualified": null, - "docomo": "E753", - "au": "EAC1", - "softbank": null, - "google": "FE328", - "image": "1f624.png", - "sheet_x": 31, - "sheet_y": 26, - "short_name": "triumph", - "short_names": ["triumph"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 55, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "orthodox_cross": { - "char": "\u2626\ufe0f", - "key": "orthodox_cross", - "keywords": ["orthodox_cross", ""], - "category": "symbols", - "lib": { - "name": null, - "unified": "2626-FE0F", - "non_qualified": "2626", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "2626-fe0f.png", - "sheet_x": 49, - "sheet_y": 25, - "short_name": "orthodox_cross", - "short_names": ["orthodox_cross"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 55, - "added_in": "1.1", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "cn": { - "char": "\ud83c\udde8\ud83c\uddf3", - "key": "cn", - "keywords": ["cn", "China Flag"], - "category": "flags", - "lib": { - "name": "China Flag", - "unified": "1F1E8-1F1F3", - "non_qualified": null, - "docomo": null, - "au": "EB11", - "softbank": "E513", - "google": "FE4ED", - "image": "1f1e8-1f1f3.png", - "sheet_x": 1, - "sheet_y": 26, - "short_name": "cn", - "short_names": ["cn", "flag-cn"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 56, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "rooster": { - "char": "\ud83d\udc13", - "key": "rooster", - "keywords": ["rooster", "ROOSTER"], - "category": "animals_and_nature", - "lib": { - "name": "ROOSTER", - "unified": "1F413", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f413.png", - "sheet_x": 12, - "sheet_y": 38, - "short_name": "rooster", - "short_names": ["rooster"], - "text": null, - "texts": null, - "category": "Animals & Nature", - "sort_order": 56, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "bulb": { - "char": "\ud83d\udca1", - "key": "bulb", - "keywords": ["bulb", "ELECTRIC LIGHT BULB"], - "category": "objects", - "lib": { - "name": "ELECTRIC LIGHT BULB", - "unified": "1F4A1", - "non_qualified": null, - "docomo": "E6FB", - "au": "E476", - "softbank": "E10F", - "google": "FEB56", - "image": "1f4a1.png", - "sheet_x": 25, - "sheet_y": 31, - "short_name": "bulb", - "short_names": ["bulb"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 56, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "crystal_ball": { - "char": "\ud83d\udd2e", - "key": "crystal_ball", - "keywords": ["crystal_ball", "CRYSTAL BALL"], - "category": "activity", - "lib": { - "name": "CRYSTAL BALL", - "unified": "1F52E", - "non_qualified": null, - "docomo": null, - "au": "EA8F", - "softbank": null, - "google": "FE4F7", - "image": "1f52e.png", - "sheet_x": 28, - "sheet_y": 17, - "short_name": "crystal_ball", - "short_names": ["crystal_ball"], - "text": null, - "texts": null, - "category": "Activities", - "sort_order": 56, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "cry": { - "char": "\ud83d\ude22", - "key": "cry", - "keywords": ["cry", "CRYING FACE"], - "category": "people", - "lib": { - "name": "CRYING FACE", - "unified": "1F622", - "non_qualified": null, - "docomo": "E72E", - "au": "EB69", - "softbank": "E413", - "google": "FE339", - "image": "1f622.png", - "sheet_x": 31, - "sheet_y": 24, - "short_name": "cry", - "short_names": ["cry"], - "text": ":'(", - "texts": [":'("], - "category": "Smileys & People", - "sort_order": 56, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "salt": { - "char": "\ud83e\uddc2", - "key": "salt", - "keywords": ["salt", "SALT SHAKER"], - "category": "food_and_drink", - "lib": { - "name": "SALT SHAKER", - "unified": "1F9C2", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f9c2.png", - "sheet_x": 44, - "sheet_y": 18, - "short_name": "salt", - "short_names": ["salt"], - "text": null, - "texts": null, - "category": "Food & Drink", - "sort_order": 56, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - } - }, - "star_and_crescent": { - "char": "\u262a\ufe0f", - "key": "star_and_crescent", - "keywords": ["star_and_crescent", ""], - "category": "symbols", - "lib": { - "name": null, - "unified": "262A-FE0F", - "non_qualified": "262A", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "262a-fe0f.png", - "sheet_x": 49, - "sheet_y": 26, - "short_name": "star_and_crescent", - "short_names": ["star_and_crescent"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 56, - "added_in": "1.1", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "hotsprings": { - "char": "\u2668\ufe0f", - "key": "hotsprings", - "keywords": ["hotsprings", "HOT SPRINGS"], - "category": "travel_and_places", - "lib": { - "name": "HOT SPRINGS", - "unified": "2668-FE0F", - "non_qualified": "2668", - "docomo": "E6F7", - "au": "E4BC", - "softbank": "E123", - "google": "FE7FA", - "image": "2668-fe0f.png", - "sheet_x": 49, - "sheet_y": 51, - "short_name": "hotsprings", - "short_names": ["hotsprings"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 56, - "added_in": "1.1", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-co": { - "char": "\ud83c\udde8\ud83c\uddf4", - "key": "flag-co", - "keywords": ["flag-co", "Colombia Flag"], - "category": "flags", - "lib": { - "name": "Colombia Flag", - "unified": "1F1E8-1F1F4", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1e8-1f1f4.png", - "sheet_x": 1, - "sheet_y": 27, - "short_name": "flag-co", - "short_names": ["flag-co"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 57, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "milky_way": { - "char": "\ud83c\udf0c", - "key": "milky_way", - "keywords": ["milky_way", "MILKY WAY"], - "category": "travel_and_places", - "lib": { - "name": "MILKY WAY", - "unified": "1F30C", - "non_qualified": null, - "docomo": "E6B3", - "au": "EB5F", - "softbank": null, - "google": "FE03B", - "image": "1f30c.png", - "sheet_x": 5, - "sheet_y": 51, - "short_name": "milky_way", - "short_names": ["milky_way"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 57, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "hatching_chick": { - "char": "\ud83d\udc23", - "key": "hatching_chick", - "keywords": ["hatching_chick", "HATCHING CHICK"], - "category": "animals_and_nature", - "lib": { - "name": "HATCHING CHICK", - "unified": "1F423", - "non_qualified": null, - "docomo": "E74F", - "au": "E5DB", - "softbank": null, - "google": "FE1DD", - "image": "1f423.png", - "sheet_x": 13, - "sheet_y": 1, - "short_name": "hatching_chick", - "short_names": ["hatching_chick"], - "text": null, - "texts": null, - "category": "Animals & Nature", - "sort_order": 57, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flashlight": { - "char": "\ud83d\udd26", - "key": "flashlight", - "keywords": ["flashlight", "ELECTRIC TORCH"], - "category": "objects", - "lib": { - "name": "ELECTRIC TORCH", - "unified": "1F526", - "non_qualified": null, - "docomo": "E6FB", - "au": "E583", - "softbank": null, - "google": "FE4FB", - "image": "1f526.png", - "sheet_x": 28, - "sheet_y": 9, - "short_name": "flashlight", - "short_names": ["flashlight"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 57, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "sob": { - "char": "\ud83d\ude2d", - "key": "sob", - "keywords": ["sob", "LOUDLY CRYING FACE"], - "category": "people", - "lib": { - "name": "LOUDLY CRYING FACE", - "unified": "1F62D", - "non_qualified": null, - "docomo": "E72D", - "au": "E473", - "softbank": "E411", - "google": "FE33A", - "image": "1f62d.png", - "sheet_x": 31, - "sheet_y": 35, - "short_name": "sob", - "short_names": ["sob"], - "text": ":'(", - "texts": null, - "category": "Smileys & People", - "sort_order": 57, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "canned_food": { - "char": "\ud83e\udd6b", - "key": "canned_food", - "keywords": ["canned_food", "CANNED FOOD"], - "category": "food_and_drink", - "lib": { - "name": "CANNED FOOD", - "unified": "1F96B", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f96b.png", - "sheet_x": 42, - "sheet_y": 34, - "short_name": "canned_food", - "short_names": ["canned_food"], - "text": null, - "texts": null, - "category": "Food & Drink", - "sort_order": 57, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "nazar_amulet": { - "char": "\ud83e\uddff", - "key": "nazar_amulet", - "keywords": ["nazar_amulet", "NAZAR AMULET"], - "category": "activity", - "lib": { - "name": "NAZAR AMULET", - "unified": "1F9FF", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f9ff.png", - "sheet_x": 48, - "sheet_y": 19, - "short_name": "nazar_amulet", - "short_names": ["nazar_amulet"], - "text": null, - "texts": null, - "category": "Activities", - "sort_order": 57, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - } - }, - "peace_symbol": { - "char": "\u262e\ufe0f", - "key": "peace_symbol", - "keywords": ["peace_symbol", ""], - "category": "symbols", - "lib": { - "name": null, - "unified": "262E-FE0F", - "non_qualified": "262E", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "262e-fe0f.png", - "sheet_x": 49, - "sheet_y": 27, - "short_name": "peace_symbol", - "short_names": ["peace_symbol"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 57, - "added_in": "1.1", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "flag-cp": { - "char": "\ud83c\udde8\ud83c\uddf5", - "key": "flag-cp", - "keywords": ["flag-cp", "Clipperton Island Flag"], - "category": "flags", - "lib": { - "name": "Clipperton Island Flag", - "unified": "1F1E8-1F1F5", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1e8-1f1f5.png", - "sheet_x": 1, - "sheet_y": 28, - "short_name": "flag-cp", - "short_names": ["flag-cp"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 58, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "bento": { - "char": "\ud83c\udf71", - "key": "bento", - "keywords": ["bento", "BENTO BOX"], - "category": "food_and_drink", - "lib": { - "name": "BENTO BOX", - "unified": "1F371", - "non_qualified": null, - "docomo": null, - "au": "EABD", - "softbank": "E34C", - "google": "FE96F", - "image": "1f371.png", - "sheet_x": 7, - "sheet_y": 44, - "short_name": "bento", - "short_names": ["bento"], - "text": null, - "texts": null, - "category": "Food & Drink", - "sort_order": 58, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "carousel_horse": { - "char": "\ud83c\udfa0", - "key": "carousel_horse", - "keywords": ["carousel_horse", "CAROUSEL HORSE"], - "category": "travel_and_places", - "lib": { - "name": "CAROUSEL HORSE", - "unified": "1F3A0", - "non_qualified": null, - "docomo": "E679", - "au": null, - "softbank": null, - "google": "FE7FC", - "image": "1f3a0.png", - "sheet_x": 8, - "sheet_y": 38, - "short_name": "carousel_horse", - "short_names": ["carousel_horse"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 58, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "video_game": { - "char": "\ud83c\udfae", - "key": "video_game", - "keywords": ["video_game", "VIDEO GAME"], - "category": "activity", - "lib": { - "name": "VIDEO GAME", - "unified": "1F3AE", - "non_qualified": null, - "docomo": "E68B", - "au": "E4C6", - "softbank": null, - "google": "FE80A", - "image": "1f3ae.png", - "sheet_x": 8, - "sheet_y": 52, - "short_name": "video_game", - "short_names": ["video_game"], - "text": null, - "texts": null, - "category": "Activities", - "sort_order": 58, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "izakaya_lantern": { - "char": "\ud83c\udfee", - "key": "izakaya_lantern", - "keywords": ["izakaya_lantern", "IZAKAYA LANTERN"], - "category": "objects", - "lib": { - "name": "IZAKAYA LANTERN", - "unified": "1F3EE", - "non_qualified": null, - "docomo": "E74B", - "au": "E4BD", - "softbank": null, - "google": "FE4C2", - "image": "1f3ee.png", - "sheet_x": 11, - "sheet_y": 52, - "short_name": "izakaya_lantern", - "short_names": ["izakaya_lantern", "lantern"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 58, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "baby_chick": { - "char": "\ud83d\udc24", - "key": "baby_chick", - "keywords": ["baby_chick", "BABY CHICK"], - "category": "animals_and_nature", - "lib": { - "name": "BABY CHICK", - "unified": "1F424", - "non_qualified": null, - "docomo": "E74F", - "au": "E4E0", - "softbank": "E523", - "google": "FE1BA", - "image": "1f424.png", - "sheet_x": 13, - "sheet_y": 2, - "short_name": "baby_chick", - "short_names": ["baby_chick"], - "text": null, - "texts": null, - "category": "Animals & Nature", - "sort_order": 58, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "menorah_with_nine_branches": { - "char": "\ud83d\udd4e", - "key": "menorah_with_nine_branches", - "keywords": ["menorah_with_nine_branches", "MENORAH WITH NINE BRANCHES"], - "category": "symbols", - "lib": { - "name": "MENORAH WITH NINE BRANCHES", - "unified": "1F54E", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f54e.png", - "sheet_x": 28, - "sheet_y": 38, - "short_name": "menorah_with_nine_branches", - "short_names": ["menorah_with_nine_branches"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 58, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "frowning": { - "char": "\ud83d\ude26", - "key": "frowning", - "keywords": ["frowning", "FROWNING FACE WITH OPEN MOUTH"], - "category": "people", - "lib": { - "name": "FROWNING FACE WITH OPEN MOUTH", - "unified": "1F626", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f626.png", - "sheet_x": 31, - "sheet_y": 28, - "short_name": "frowning", - "short_names": ["frowning"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 58, - "added_in": "6.1", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-cr": { - "char": "\ud83c\udde8\ud83c\uddf7", - "key": "flag-cr", - "keywords": ["flag-cr", "Costa Rica Flag"], - "category": "flags", - "lib": { - "name": "Costa Rica Flag", - "unified": "1F1E8-1F1F7", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1e8-1f1f7.png", - "sheet_x": 1, - "sheet_y": 29, - "short_name": "flag-cr", - "short_names": ["flag-cr"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 59, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "rice_cracker": { - "char": "\ud83c\udf58", - "key": "rice_cracker", - "keywords": ["rice_cracker", "RICE CRACKER"], - "category": "food_and_drink", - "lib": { - "name": "RICE CRACKER", - "unified": "1F358", - "non_qualified": null, - "docomo": null, - "au": "EAB3", - "softbank": "E33D", - "google": "FE969", - "image": "1f358.png", - "sheet_x": 7, - "sheet_y": 19, - "short_name": "rice_cracker", - "short_names": ["rice_cracker"], - "text": null, - "texts": null, - "category": "Food & Drink", - "sort_order": 59, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "ferris_wheel": { - "char": "\ud83c\udfa1", - "key": "ferris_wheel", - "keywords": ["ferris_wheel", "FERRIS WHEEL"], - "category": "travel_and_places", - "lib": { - "name": "FERRIS WHEEL", - "unified": "1F3A1", - "non_qualified": null, - "docomo": null, - "au": "E46D", - "softbank": "E124", - "google": "FE7FD", - "image": "1f3a1.png", - "sheet_x": 8, - "sheet_y": 39, - "short_name": "ferris_wheel", - "short_names": ["ferris_wheel"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 59, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "hatched_chick": { - "char": "\ud83d\udc25", - "key": "hatched_chick", - "keywords": ["hatched_chick", "FRONT-FACING BABY CHICK"], - "category": "animals_and_nature", - "lib": { - "name": "FRONT-FACING BABY CHICK", - "unified": "1F425", - "non_qualified": null, - "docomo": "E74F", - "au": "EB76", - "softbank": null, - "google": "FE1BB", - "image": "1f425.png", - "sheet_x": 13, - "sheet_y": 3, - "short_name": "hatched_chick", - "short_names": ["hatched_chick"], - "text": null, - "texts": null, - "category": "Animals & Nature", - "sort_order": 59, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "notebook_with_decorative_cover": { - "char": "\ud83d\udcd4", - "key": "notebook_with_decorative_cover", - "keywords": ["notebook_with_decorative_cover", "NOTEBOOK WITH DECORATIVE COVER"], - "category": "objects", - "lib": { - "name": "NOTEBOOK WITH DECORATIVE COVER", - "unified": "1F4D4", - "non_qualified": null, - "docomo": "E683", - "au": "E49D", - "softbank": null, - "google": "FE547", - "image": "1f4d4.png", - "sheet_x": 26, - "sheet_y": 34, - "short_name": "notebook_with_decorative_cover", - "short_names": ["notebook_with_decorative_cover"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 59, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "six_pointed_star": { - "char": "\ud83d\udd2f", - "key": "six_pointed_star", - "keywords": ["six_pointed_star", "SIX POINTED STAR WITH MIDDLE DOT"], - "category": "symbols", - "lib": { - "name": "SIX POINTED STAR WITH MIDDLE DOT", - "unified": "1F52F", - "non_qualified": null, - "docomo": null, - "au": "EA8F", - "softbank": "E23E", - "google": "FE4F8", - "image": "1f52f.png", - "sheet_x": 28, - "sheet_y": 18, - "short_name": "six_pointed_star", - "short_names": ["six_pointed_star"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 59, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "joystick": { - "char": "\ud83d\udd79\ufe0f", - "key": "joystick", - "keywords": ["joystick", ""], - "category": "activity", - "lib": { - "name": null, - "unified": "1F579-FE0F", - "non_qualified": "1F579", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f579-fe0f.png", - "sheet_x": 29, - "sheet_y": 40, - "short_name": "joystick", - "short_names": ["joystick"], - "text": null, - "texts": null, - "category": "Activities", - "sort_order": 59, - "added_in": "7.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "anguished": { - "char": "\ud83d\ude27", - "key": "anguished", - "keywords": ["anguished", "ANGUISHED FACE"], - "category": "people", - "lib": { - "name": "ANGUISHED FACE", - "unified": "1F627", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f627.png", - "sheet_x": 31, - "sheet_y": 29, - "short_name": "anguished", - "short_names": ["anguished"], - "text": null, - "texts": ["D:"], - "category": "Smileys & People", - "sort_order": 59, - "added_in": "6.1", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-cu": { - "char": "\ud83c\udde8\ud83c\uddfa", - "key": "flag-cu", - "keywords": ["flag-cu", "Cuba Flag"], - "category": "flags", - "lib": { - "name": "Cuba Flag", - "unified": "1F1E8-1F1FA", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1e8-1f1fa.png", - "sheet_x": 1, - "sheet_y": 30, - "short_name": "flag-cu", - "short_names": ["flag-cu"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 60, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "rice_ball": { - "char": "\ud83c\udf59", - "key": "rice_ball", - "keywords": ["rice_ball", "RICE BALL"], - "category": "food_and_drink", - "lib": { - "name": "RICE BALL", - "unified": "1F359", - "non_qualified": null, - "docomo": "E749", - "au": "E4D5", - "softbank": "E342", - "google": "FE961", - "image": "1f359.png", - "sheet_x": 7, - "sheet_y": 20, - "short_name": "rice_ball", - "short_names": ["rice_ball"], - "text": null, - "texts": null, - "category": "Food & Drink", - "sort_order": 60, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "roller_coaster": { - "char": "\ud83c\udfa2", - "key": "roller_coaster", - "keywords": ["roller_coaster", "ROLLER COASTER"], - "category": "travel_and_places", - "lib": { - "name": "ROLLER COASTER", - "unified": "1F3A2", - "non_qualified": null, - "docomo": null, - "au": "EAE2", - "softbank": "E433", - "google": "FE7FE", - "image": "1f3a2.png", - "sheet_x": 8, - "sheet_y": 40, - "short_name": "roller_coaster", - "short_names": ["roller_coaster"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 60, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "slot_machine": { - "char": "\ud83c\udfb0", - "key": "slot_machine", - "keywords": ["slot_machine", "SLOT MACHINE"], - "category": "activity", - "lib": { - "name": "SLOT MACHINE", - "unified": "1F3B0", - "non_qualified": null, - "docomo": null, - "au": "E46E", - "softbank": "E133", - "google": "FE80D", - "image": "1f3b0.png", - "sheet_x": 9, - "sheet_y": 1, - "short_name": "slot_machine", - "short_names": ["slot_machine"], - "text": null, - "texts": null, - "category": "Activities", - "sort_order": 60, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "bird": { - "char": "\ud83d\udc26", - "key": "bird", - "keywords": ["bird", "BIRD"], - "category": "animals_and_nature", - "lib": { - "name": "BIRD", - "unified": "1F426", - "non_qualified": null, - "docomo": "E74F", - "au": "E4E0", - "softbank": "E521", - "google": "FE1C8", - "image": "1f426.png", - "sheet_x": 13, - "sheet_y": 4, - "short_name": "bird", - "short_names": ["bird"], - "text": null, - "texts": null, - "category": "Animals & Nature", - "sort_order": 60, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "closed_book": { - "char": "\ud83d\udcd5", - "key": "closed_book", - "keywords": ["closed_book", "CLOSED BOOK"], - "category": "objects", - "lib": { - "name": "CLOSED BOOK", - "unified": "1F4D5", - "non_qualified": null, - "docomo": "E683", - "au": "E568", - "softbank": null, - "google": "FE502", - "image": "1f4d5.png", - "sheet_x": 26, - "sheet_y": 35, - "short_name": "closed_book", - "short_names": ["closed_book"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 60, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "fearful": { - "char": "\ud83d\ude28", - "key": "fearful", - "keywords": ["fearful", "FEARFUL FACE"], - "category": "people", - "lib": { - "name": "FEARFUL FACE", - "unified": "1F628", - "non_qualified": null, - "docomo": "E757", - "au": "EAC6", - "softbank": "E40B", - "google": "FE33B", - "image": "1f628.png", - "sheet_x": 31, - "sheet_y": 30, - "short_name": "fearful", - "short_names": ["fearful"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 60, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "aries": { - "char": "\u2648", - "key": "aries", - "keywords": ["aries", "ARIES"], - "category": "symbols", - "lib": { - "name": "ARIES", - "unified": "2648", - "non_qualified": null, - "docomo": "E646", - "au": "E48F", - "softbank": "E23F", - "google": "FE02B", - "image": "2648.png", - "sheet_x": 49, - "sheet_y": 34, - "short_name": "aries", - "short_names": ["aries"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 60, - "added_in": "1.1", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-cv": { - "char": "\ud83c\udde8\ud83c\uddfb", - "key": "flag-cv", - "keywords": ["flag-cv", "Cape Verde Flag"], - "category": "flags", - "lib": { - "name": "Cape Verde Flag", - "unified": "1F1E8-1F1FB", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1e8-1f1fb.png", - "sheet_x": 1, - "sheet_y": 31, - "short_name": "flag-cv", - "short_names": ["flag-cv"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 61, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "rice": { - "char": "\ud83c\udf5a", - "key": "rice", - "keywords": ["rice", "COOKED RICE"], - "category": "food_and_drink", - "lib": { - "name": "COOKED RICE", - "unified": "1F35A", - "non_qualified": null, - "docomo": "E74C", - "au": "EAB4", - "softbank": "E33E", - "google": "FE96A", - "image": "1f35a.png", - "sheet_x": 7, - "sheet_y": 21, - "short_name": "rice", - "short_names": ["rice"], - "text": null, - "texts": null, - "category": "Food & Drink", - "sort_order": 61, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "game_die": { - "char": "\ud83c\udfb2", - "key": "game_die", - "keywords": ["game_die", "GAME DIE"], - "category": "activity", - "lib": { - "name": "GAME DIE", - "unified": "1F3B2", - "non_qualified": null, - "docomo": null, - "au": "E4C8", - "softbank": null, - "google": "FE80F", - "image": "1f3b2.png", - "sheet_x": 9, - "sheet_y": 3, - "short_name": "game_die", - "short_names": ["game_die"], - "text": null, - "texts": null, - "category": "Activities", - "sort_order": 61, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "penguin": { - "char": "\ud83d\udc27", - "key": "penguin", - "keywords": ["penguin", "PENGUIN"], - "category": "animals_and_nature", - "lib": { - "name": "PENGUIN", - "unified": "1F427", - "non_qualified": null, - "docomo": "E750", - "au": "E4DC", - "softbank": "E055", - "google": "FE1BC", - "image": "1f427.png", - "sheet_x": 13, - "sheet_y": 5, - "short_name": "penguin", - "short_names": ["penguin"], - "text": null, - "texts": null, - "category": "Animals & Nature", - "sort_order": 61, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "barber": { - "char": "\ud83d\udc88", - "key": "barber", - "keywords": ["barber", "BARBER POLE"], - "category": "travel_and_places", - "lib": { - "name": "BARBER POLE", - "unified": "1F488", - "non_qualified": null, - "docomo": null, - "au": "EAA2", - "softbank": "E320", - "google": "FE199", - "image": "1f488.png", - "sheet_x": 25, - "sheet_y": 6, - "short_name": "barber", - "short_names": ["barber"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 61, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "book": { - "char": "\ud83d\udcd6", - "key": "book", - "keywords": ["book", "OPEN BOOK"], - "category": "objects", - "lib": { - "name": "OPEN BOOK", - "unified": "1F4D6", - "non_qualified": null, - "docomo": "E683", - "au": "E49F", - "softbank": "E148", - "google": "FE546", - "image": "1f4d6.png", - "sheet_x": 26, - "sheet_y": 36, - "short_name": "book", - "short_names": ["book", "open_book"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 61, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "weary": { - "char": "\ud83d\ude29", - "key": "weary", - "keywords": ["weary", "WEARY FACE"], - "category": "people", - "lib": { - "name": "WEARY FACE", - "unified": "1F629", - "non_qualified": null, - "docomo": "E6F3", - "au": "EB67", - "softbank": null, - "google": "FE321", - "image": "1f629.png", - "sheet_x": 31, - "sheet_y": 31, - "short_name": "weary", - "short_names": ["weary"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 61, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "taurus": { - "char": "\u2649", - "key": "taurus", - "keywords": ["taurus", "TAURUS"], - "category": "symbols", - "lib": { - "name": "TAURUS", - "unified": "2649", - "non_qualified": null, - "docomo": "E647", - "au": "E490", - "softbank": "E240", - "google": "FE02C", - "image": "2649.png", - "sheet_x": 49, - "sheet_y": 35, - "short_name": "taurus", - "short_names": ["taurus"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 61, - "added_in": "1.1", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-cw": { - "char": "\ud83c\udde8\ud83c\uddfc", - "key": "flag-cw", - "keywords": ["flag-cw", "Cura\u00e7ao Flag"], - "category": "flags", - "lib": { - "name": "Cura\u00e7ao Flag", - "unified": "1F1E8-1F1FC", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1e8-1f1fc.png", - "sheet_x": 1, - "sheet_y": 32, - "short_name": "flag-cw", - "short_names": ["flag-cw"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 62, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "curry": { - "char": "\ud83c\udf5b", - "key": "curry", - "keywords": ["curry", "CURRY AND RICE"], - "category": "food_and_drink", - "lib": { - "name": "CURRY AND RICE", - "unified": "1F35B", - "non_qualified": null, - "docomo": null, - "au": "EAB6", - "softbank": "E341", - "google": "FE96C", - "image": "1f35b.png", - "sheet_x": 7, - "sheet_y": 22, - "short_name": "curry", - "short_names": ["curry"], - "text": null, - "texts": null, - "category": "Food & Drink", - "sort_order": 62, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "circus_tent": { - "char": "\ud83c\udfaa", - "key": "circus_tent", - "keywords": ["circus_tent", "CIRCUS TENT"], - "category": "travel_and_places", - "lib": { - "name": "CIRCUS TENT", - "unified": "1F3AA", - "non_qualified": null, - "docomo": "E67D", - "au": "E59E", - "softbank": null, - "google": "FE806", - "image": "1f3aa.png", - "sheet_x": 8, - "sheet_y": 48, - "short_name": "circus_tent", - "short_names": ["circus_tent"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 62, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "green_book": { - "char": "\ud83d\udcd7", - "key": "green_book", - "keywords": ["green_book", "GREEN BOOK"], - "category": "objects", - "lib": { - "name": "GREEN BOOK", - "unified": "1F4D7", - "non_qualified": null, - "docomo": "E683", - "au": "E565", - "softbank": null, - "google": "FE4FF", - "image": "1f4d7.png", - "sheet_x": 26, - "sheet_y": 37, - "short_name": "green_book", - "short_names": ["green_book"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 62, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "dove_of_peace": { - "char": "\ud83d\udd4a\ufe0f", - "key": "dove_of_peace", - "keywords": ["dove_of_peace", ""], - "category": "animals_and_nature", - "lib": { - "name": null, - "unified": "1F54A-FE0F", - "non_qualified": "1F54A", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f54a-fe0f.png", - "sheet_x": 28, - "sheet_y": 34, - "short_name": "dove_of_peace", - "short_names": ["dove_of_peace"], - "text": null, - "texts": null, - "category": "Animals & Nature", - "sort_order": 62, - "added_in": "7.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "exploding_head": { - "char": "\ud83e\udd2f", - "key": "exploding_head", - "keywords": ["exploding_head", "SHOCKED FACE WITH EXPLODING HEAD"], - "category": "people", - "lib": { - "name": "SHOCKED FACE WITH EXPLODING HEAD", - "unified": "1F92F", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f92f.png", - "sheet_x": 39, - "sheet_y": 14, - "short_name": "exploding_head", - "short_names": ["exploding_head", "shocked_face_with_exploding_head"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 62, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "jigsaw": { - "char": "\ud83e\udde9", - "key": "jigsaw", - "keywords": ["jigsaw", "JIGSAW PUZZLE PIECE"], - "category": "activity", - "lib": { - "name": "JIGSAW PUZZLE PIECE", - "unified": "1F9E9", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f9e9.png", - "sheet_x": 47, - "sheet_y": 50, - "short_name": "jigsaw", - "short_names": ["jigsaw"], - "text": null, - "texts": null, - "category": "Activities", - "sort_order": 62, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - } - }, - "gemini": { - "char": "\u264a", - "key": "gemini", - "keywords": ["gemini", "GEMINI"], - "category": "symbols", - "lib": { - "name": "GEMINI", - "unified": "264A", - "non_qualified": null, - "docomo": "E648", - "au": "E491", - "softbank": "E241", - "google": "FE02D", - "image": "264a.png", - "sheet_x": 49, - "sheet_y": 36, - "short_name": "gemini", - "short_names": ["gemini"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 62, - "added_in": "1.1", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-cx": { - "char": "\ud83c\udde8\ud83c\uddfd", - "key": "flag-cx", - "keywords": ["flag-cx", "Christmas Island Flag"], - "category": "flags", - "lib": { - "name": "Christmas Island Flag", - "unified": "1F1E8-1F1FD", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1e8-1f1fd.png", - "sheet_x": 1, - "sheet_y": 33, - "short_name": "flag-cx", - "short_names": ["flag-cx"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 63, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "ramen": { - "char": "\ud83c\udf5c", - "key": "ramen", - "keywords": ["ramen", "STEAMING BOWL"], - "category": "food_and_drink", - "lib": { - "name": "STEAMING BOWL", - "unified": "1F35C", - "non_qualified": null, - "docomo": "E74C", - "au": "E5B4", - "softbank": "E340", - "google": "FE963", - "image": "1f35c.png", - "sheet_x": 7, - "sheet_y": 23, - "short_name": "ramen", - "short_names": ["ramen"], - "text": null, - "texts": null, - "category": "Food & Drink", - "sort_order": 63, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "blue_book": { - "char": "\ud83d\udcd8", - "key": "blue_book", - "keywords": ["blue_book", "BLUE BOOK"], - "category": "objects", - "lib": { - "name": "BLUE BOOK", - "unified": "1F4D8", - "non_qualified": null, - "docomo": "E683", - "au": "E566", - "softbank": null, - "google": "FE500", - "image": "1f4d8.png", - "sheet_x": 26, - "sheet_y": 38, - "short_name": "blue_book", - "short_names": ["blue_book"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 63, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "grimacing": { - "char": "\ud83d\ude2c", - "key": "grimacing", - "keywords": ["grimacing", "GRIMACING FACE"], - "category": "people", - "lib": { - "name": "GRIMACING FACE", - "unified": "1F62C", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f62c.png", - "sheet_x": 31, - "sheet_y": 34, - "short_name": "grimacing", - "short_names": ["grimacing"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 63, - "added_in": "6.1", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "steam_locomotive": { - "char": "\ud83d\ude82", - "key": "steam_locomotive", - "keywords": ["steam_locomotive", "STEAM LOCOMOTIVE"], - "category": "travel_and_places", - "lib": { - "name": "STEAM LOCOMOTIVE", - "unified": "1F682", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f682.png", - "sheet_x": 34, - "sheet_y": 25, - "short_name": "steam_locomotive", - "short_names": ["steam_locomotive"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 63, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "eagle": { - "char": "\ud83e\udd85", - "key": "eagle", - "keywords": ["eagle", "EAGLE"], - "category": "animals_and_nature", - "lib": { - "name": "EAGLE", - "unified": "1F985", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f985.png", - "sheet_x": 43, - "sheet_y": 1, - "short_name": "eagle", - "short_names": ["eagle"], - "text": null, - "texts": null, - "category": "Animals & Nature", - "sort_order": 63, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "teddy_bear": { - "char": "\ud83e\uddf8", - "key": "teddy_bear", - "keywords": ["teddy_bear", "TEDDY BEAR"], - "category": "activity", - "lib": { - "name": "TEDDY BEAR", - "unified": "1F9F8", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f9f8.png", - "sheet_x": 48, - "sheet_y": 12, - "short_name": "teddy_bear", - "short_names": ["teddy_bear"], - "text": null, - "texts": null, - "category": "Activities", - "sort_order": 63, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - } - }, - "cancer": { - "char": "\u264b", - "key": "cancer", - "keywords": ["cancer", "CANCER"], - "category": "symbols", - "lib": { - "name": "CANCER", - "unified": "264B", - "non_qualified": null, - "docomo": "E649", - "au": "E492", - "softbank": "E242", - "google": "FE02E", - "image": "264b.png", - "sheet_x": 49, - "sheet_y": 37, - "short_name": "cancer", - "short_names": ["cancer"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 63, - "added_in": "1.1", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-cy": { - "char": "\ud83c\udde8\ud83c\uddfe", - "key": "flag-cy", - "keywords": ["flag-cy", "Cyprus Flag"], - "category": "flags", - "lib": { - "name": "Cyprus Flag", - "unified": "1F1E8-1F1FE", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1e8-1f1fe.png", - "sheet_x": 1, - "sheet_y": 34, - "short_name": "flag-cy", - "short_names": ["flag-cy"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 64, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "spaghetti": { - "char": "\ud83c\udf5d", - "key": "spaghetti", - "keywords": ["spaghetti", "SPAGHETTI"], - "category": "food_and_drink", - "lib": { - "name": "SPAGHETTI", - "unified": "1F35D", - "non_qualified": null, - "docomo": null, - "au": "EAB5", - "softbank": "E33F", - "google": "FE96B", - "image": "1f35d.png", - "sheet_x": 7, - "sheet_y": 24, - "short_name": "spaghetti", - "short_names": ["spaghetti"], - "text": null, - "texts": null, - "category": "Food & Drink", - "sort_order": 64, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "orange_book": { - "char": "\ud83d\udcd9", - "key": "orange_book", - "keywords": ["orange_book", "ORANGE BOOK"], - "category": "objects", - "lib": { - "name": "ORANGE BOOK", - "unified": "1F4D9", - "non_qualified": null, - "docomo": "E683", - "au": "E567", - "softbank": null, - "google": "FE501", - "image": "1f4d9.png", - "sheet_x": 26, - "sheet_y": 39, - "short_name": "orange_book", - "short_names": ["orange_book"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 64, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "cold_sweat": { - "char": "\ud83d\ude30", - "key": "cold_sweat", - "keywords": ["cold_sweat", "FACE WITH OPEN MOUTH AND COLD SWEAT"], - "category": "people", - "lib": { - "name": "FACE WITH OPEN MOUTH AND COLD SWEAT", - "unified": "1F630", - "non_qualified": null, - "docomo": "E723", - "au": "EACB", - "softbank": "E40F", - "google": "FE325", - "image": "1f630.png", - "sheet_x": 31, - "sheet_y": 38, - "short_name": "cold_sweat", - "short_names": ["cold_sweat"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 64, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "railway_car": { - "char": "\ud83d\ude83", - "key": "railway_car", - "keywords": ["railway_car", "RAILWAY CAR"], - "category": "travel_and_places", - "lib": { - "name": "RAILWAY CAR", - "unified": "1F683", - "non_qualified": null, - "docomo": "E65B", - "au": "E4B5", - "softbank": "E01E", - "google": "FE7DF", - "image": "1f683.png", - "sheet_x": 34, - "sheet_y": 26, - "short_name": "railway_car", - "short_names": ["railway_car"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 64, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "duck": { - "char": "\ud83e\udd86", - "key": "duck", - "keywords": ["duck", "DUCK"], - "category": "animals_and_nature", - "lib": { - "name": "DUCK", - "unified": "1F986", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f986.png", - "sheet_x": 43, - "sheet_y": 2, - "short_name": "duck", - "short_names": ["duck"], - "text": null, - "texts": null, - "category": "Animals & Nature", - "sort_order": 64, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "leo": { - "char": "\u264c", - "key": "leo", - "keywords": ["leo", "LEO"], - "category": "symbols", - "lib": { - "name": "LEO", - "unified": "264C", - "non_qualified": null, - "docomo": "E64A", - "au": "E493", - "softbank": "E243", - "google": "FE02F", - "image": "264c.png", - "sheet_x": 49, - "sheet_y": 38, - "short_name": "leo", - "short_names": ["leo"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 64, - "added_in": "1.1", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "spades": { - "char": "\u2660\ufe0f", - "key": "spades", - "keywords": ["spades", "BLACK SPADE SUIT"], - "category": "activity", - "lib": { - "name": "BLACK SPADE SUIT", - "unified": "2660-FE0F", - "non_qualified": "2660", - "docomo": "E68E", - "au": "E5A1", - "softbank": "E20E", - "google": "FEB1B", - "image": "2660-fe0f.png", - "sheet_x": 49, - "sheet_y": 47, - "short_name": "spades", - "short_names": ["spades"], - "text": null, - "texts": null, - "category": "Activities", - "sort_order": 64, - "added_in": "1.1", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-cz": { - "char": "\ud83c\udde8\ud83c\uddff", - "key": "flag-cz", - "keywords": ["flag-cz", "Czechia Flag"], - "category": "flags", - "lib": { - "name": "Czechia Flag", - "unified": "1F1E8-1F1FF", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1e8-1f1ff.png", - "sheet_x": 1, - "sheet_y": 35, - "short_name": "flag-cz", - "short_names": ["flag-cz"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 65, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "sweet_potato": { - "char": "\ud83c\udf60", - "key": "sweet_potato", - "keywords": ["sweet_potato", "ROASTED SWEET POTATO"], - "category": "food_and_drink", - "lib": { - "name": "ROASTED SWEET POTATO", - "unified": "1F360", - "non_qualified": null, - "docomo": null, - "au": "EB3A", - "softbank": null, - "google": "FE974", - "image": "1f360.png", - "sheet_x": 7, - "sheet_y": 27, - "short_name": "sweet_potato", - "short_names": ["sweet_potato"], - "text": null, - "texts": null, - "category": "Food & Drink", - "sort_order": 65, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "books": { - "char": "\ud83d\udcda", - "key": "books", - "keywords": ["books", "BOOKS"], - "category": "objects", - "lib": { - "name": "BOOKS", - "unified": "1F4DA", - "non_qualified": null, - "docomo": "E683", - "au": "E56F", - "softbank": null, - "google": "FE503", - "image": "1f4da.png", - "sheet_x": 26, - "sheet_y": 40, - "short_name": "books", - "short_names": ["books"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 65, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "scream": { - "char": "\ud83d\ude31", - "key": "scream", - "keywords": ["scream", "FACE SCREAMING IN FEAR"], - "category": "people", - "lib": { - "name": "FACE SCREAMING IN FEAR", - "unified": "1F631", - "non_qualified": null, - "docomo": "E757", - "au": "E5C5", - "softbank": "E107", - "google": "FE341", - "image": "1f631.png", - "sheet_x": 31, - "sheet_y": 39, - "short_name": "scream", - "short_names": ["scream"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 65, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "bullettrain_side": { - "char": "\ud83d\ude84", - "key": "bullettrain_side", - "keywords": ["bullettrain_side", "HIGH-SPEED TRAIN"], - "category": "travel_and_places", - "lib": { - "name": "HIGH-SPEED TRAIN", - "unified": "1F684", - "non_qualified": null, - "docomo": "E65D", - "au": "E4B0", - "softbank": "E435", - "google": "FE7E2", - "image": "1f684.png", - "sheet_x": 34, - "sheet_y": 27, - "short_name": "bullettrain_side", - "short_names": ["bullettrain_side"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 65, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "swan": { - "char": "\ud83e\udda2", - "key": "swan", - "keywords": ["swan", "SWAN"], - "category": "animals_and_nature", - "lib": { - "name": "SWAN", - "unified": "1F9A2", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f9a2.png", - "sheet_x": 43, - "sheet_y": 30, - "short_name": "swan", - "short_names": ["swan"], - "text": null, - "texts": null, - "category": "Animals & Nature", - "sort_order": 65, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - } - }, - "virgo": { - "char": "\u264d", - "key": "virgo", - "keywords": ["virgo", "VIRGO"], - "category": "symbols", - "lib": { - "name": "VIRGO", - "unified": "264D", - "non_qualified": null, - "docomo": "E64B", - "au": "E494", - "softbank": "E244", - "google": "FE030", - "image": "264d.png", - "sheet_x": 49, - "sheet_y": 39, - "short_name": "virgo", - "short_names": ["virgo"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 65, - "added_in": "1.1", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "hearts": { - "char": "\u2665\ufe0f", - "key": "hearts", - "keywords": ["hearts", "BLACK HEART SUIT"], - "category": "activity", - "lib": { - "name": "BLACK HEART SUIT", - "unified": "2665-FE0F", - "non_qualified": "2665", - "docomo": "E68D", - "au": "EAA5", - "softbank": "E20C", - "google": "FEB1A", - "image": "2665-fe0f.png", - "sheet_x": 49, - "sheet_y": 49, - "short_name": "hearts", - "short_names": ["hearts"], - "text": null, - "texts": null, - "category": "Activities", - "sort_order": 65, - "added_in": "1.1", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "de": { - "char": "\ud83c\udde9\ud83c\uddea", - "key": "de", - "keywords": ["de", "Germany Flag"], - "category": "flags", - "lib": { - "name": "Germany Flag", - "unified": "1F1E9-1F1EA", - "non_qualified": null, - "docomo": null, - "au": "EB0E", - "softbank": "E50E", - "google": "FE4E8", - "image": "1f1e9-1f1ea.png", - "sheet_x": 1, - "sheet_y": 36, - "short_name": "de", - "short_names": ["de", "flag-de"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 66, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "oden": { - "char": "\ud83c\udf62", - "key": "oden", - "keywords": ["oden", "ODEN"], - "category": "food_and_drink", - "lib": { - "name": "ODEN", - "unified": "1F362", - "non_qualified": null, - "docomo": null, - "au": "EAB7", - "softbank": "E343", - "google": "FE96D", - "image": "1f362.png", - "sheet_x": 7, - "sheet_y": 29, - "short_name": "oden", - "short_names": ["oden"], - "text": null, - "texts": null, - "category": "Food & Drink", - "sort_order": 66, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "notebook": { - "char": "\ud83d\udcd3", - "key": "notebook", - "keywords": ["notebook", "NOTEBOOK"], - "category": "objects", - "lib": { - "name": "NOTEBOOK", - "unified": "1F4D3", - "non_qualified": null, - "docomo": "E683", - "au": "E56B", - "softbank": null, - "google": "FE545", - "image": "1f4d3.png", - "sheet_x": 26, - "sheet_y": 33, - "short_name": "notebook", - "short_names": ["notebook"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 66, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "bullettrain_front": { - "char": "\ud83d\ude85", - "key": "bullettrain_front", - "keywords": ["bullettrain_front", "HIGH-SPEED TRAIN WITH BULLET NOSE"], - "category": "travel_and_places", - "lib": { - "name": "HIGH-SPEED TRAIN WITH BULLET NOSE", - "unified": "1F685", - "non_qualified": null, - "docomo": "E65D", - "au": "E4B0", - "softbank": "E01F", - "google": "FE7E3", - "image": "1f685.png", - "sheet_x": 34, - "sheet_y": 28, - "short_name": "bullettrain_front", - "short_names": ["bullettrain_front"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 66, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "hot_face": { - "char": "\ud83e\udd75", - "key": "hot_face", - "keywords": ["hot_face", "OVERHEATED FACE"], - "category": "people", - "lib": { - "name": "OVERHEATED FACE", - "unified": "1F975", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f975.png", - "sheet_x": 42, - "sheet_y": 42, - "short_name": "hot_face", - "short_names": ["hot_face"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 66, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - } - }, - "owl": { - "char": "\ud83e\udd89", - "key": "owl", - "keywords": ["owl", "OWL"], - "category": "animals_and_nature", - "lib": { - "name": "OWL", - "unified": "1F989", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f989.png", - "sheet_x": 43, - "sheet_y": 5, - "short_name": "owl", - "short_names": ["owl"], - "text": null, - "texts": null, - "category": "Animals & Nature", - "sort_order": 66, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "libra": { - "char": "\u264e", - "key": "libra", - "keywords": ["libra", "LIBRA"], - "category": "symbols", - "lib": { - "name": "LIBRA", - "unified": "264E", - "non_qualified": null, - "docomo": "E64C", - "au": "E495", - "softbank": "E245", - "google": "FE031", - "image": "264e.png", - "sheet_x": 49, - "sheet_y": 40, - "short_name": "libra", - "short_names": ["libra"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 66, - "added_in": "1.1", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "diamonds": { - "char": "\u2666\ufe0f", - "key": "diamonds", - "keywords": ["diamonds", "BLACK DIAMOND SUIT"], - "category": "activity", - "lib": { - "name": "BLACK DIAMOND SUIT", - "unified": "2666-FE0F", - "non_qualified": "2666", - "docomo": "E68F", - "au": "E5A2", - "softbank": "E20D", - "google": "FEB1C", - "image": "2666-fe0f.png", - "sheet_x": 49, - "sheet_y": 50, - "short_name": "diamonds", - "short_names": ["diamonds"], - "text": null, - "texts": null, - "category": "Activities", - "sort_order": 66, - "added_in": "1.1", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-dg": { - "char": "\ud83c\udde9\ud83c\uddec", - "key": "flag-dg", - "keywords": ["flag-dg", "Diego Garcia Flag"], - "category": "flags", - "lib": { - "name": "Diego Garcia Flag", - "unified": "1F1E9-1F1EC", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1e9-1f1ec.png", - "sheet_x": 1, - "sheet_y": 37, - "short_name": "flag-dg", - "short_names": ["flag-dg"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 67, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "sushi": { - "char": "\ud83c\udf63", - "key": "sushi", - "keywords": ["sushi", "SUSHI"], - "category": "food_and_drink", - "lib": { - "name": "SUSHI", - "unified": "1F363", - "non_qualified": null, - "docomo": null, - "au": "EAB8", - "softbank": "E344", - "google": "FE96E", - "image": "1f363.png", - "sheet_x": 7, - "sheet_y": 30, - "short_name": "sushi", - "short_names": ["sushi"], - "text": null, - "texts": null, - "category": "Food & Drink", - "sort_order": 67, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "ledger": { - "char": "\ud83d\udcd2", - "key": "ledger", - "keywords": ["ledger", "LEDGER"], - "category": "objects", - "lib": { - "name": "LEDGER", - "unified": "1F4D2", - "non_qualified": null, - "docomo": "E683", - "au": "E56E", - "softbank": null, - "google": "FE54F", - "image": "1f4d2.png", - "sheet_x": 26, - "sheet_y": 32, - "short_name": "ledger", - "short_names": ["ledger"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 67, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "train2": { - "char": "\ud83d\ude86", - "key": "train2", - "keywords": ["train2", "TRAIN"], - "category": "travel_and_places", - "lib": { - "name": "TRAIN", - "unified": "1F686", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f686.png", - "sheet_x": 34, - "sheet_y": 29, - "short_name": "train2", - "short_names": ["train2"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 67, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "cold_face": { - "char": "\ud83e\udd76", - "key": "cold_face", - "keywords": ["cold_face", "FREEZING FACE"], - "category": "people", - "lib": { - "name": "FREEZING FACE", - "unified": "1F976", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f976.png", - "sheet_x": 42, - "sheet_y": 43, - "short_name": "cold_face", - "short_names": ["cold_face"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 67, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - } - }, - "peacock": { - "char": "\ud83e\udd9a", - "key": "peacock", - "keywords": ["peacock", "PEACOCK"], - "category": "animals_and_nature", - "lib": { - "name": "PEACOCK", - "unified": "1F99A", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f99a.png", - "sheet_x": 43, - "sheet_y": 22, - "short_name": "peacock", - "short_names": ["peacock"], - "text": null, - "texts": null, - "category": "Animals & Nature", - "sort_order": 67, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - } - }, - "scorpius": { - "char": "\u264f", - "key": "scorpius", - "keywords": ["scorpius", "SCORPIUS"], - "category": "symbols", - "lib": { - "name": "SCORPIUS", - "unified": "264F", - "non_qualified": null, - "docomo": "E64D", - "au": "E496", - "softbank": "E246", - "google": "FE032", - "image": "264f.png", - "sheet_x": 49, - "sheet_y": 41, - "short_name": "scorpius", - "short_names": ["scorpius"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 67, - "added_in": "1.1", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "clubs": { - "char": "\u2663\ufe0f", - "key": "clubs", - "keywords": ["clubs", "BLACK CLUB SUIT"], - "category": "activity", - "lib": { - "name": "BLACK CLUB SUIT", - "unified": "2663-FE0F", - "non_qualified": "2663", - "docomo": "E690", - "au": "E5A3", - "softbank": "E20F", - "google": "FEB1D", - "image": "2663-fe0f.png", - "sheet_x": 49, - "sheet_y": 48, - "short_name": "clubs", - "short_names": ["clubs"], - "text": null, - "texts": null, - "category": "Activities", - "sort_order": 67, - "added_in": "1.1", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-dj": { - "char": "\ud83c\udde9\ud83c\uddef", - "key": "flag-dj", - "keywords": ["flag-dj", "Djibouti Flag"], - "category": "flags", - "lib": { - "name": "Djibouti Flag", - "unified": "1F1E9-1F1EF", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1e9-1f1ef.png", - "sheet_x": 1, - "sheet_y": 38, - "short_name": "flag-dj", - "short_names": ["flag-dj"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 68, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "fried_shrimp": { - "char": "\ud83c\udf64", - "key": "fried_shrimp", - "keywords": ["fried_shrimp", "FRIED SHRIMP"], - "category": "food_and_drink", - "lib": { - "name": "FRIED SHRIMP", - "unified": "1F364", - "non_qualified": null, - "docomo": null, - "au": "EB70", - "softbank": null, - "google": "FE97F", - "image": "1f364.png", - "sheet_x": 7, - "sheet_y": 31, - "short_name": "fried_shrimp", - "short_names": ["fried_shrimp"], - "text": null, - "texts": null, - "category": "Food & Drink", - "sort_order": 68, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "page_with_curl": { - "char": "\ud83d\udcc3", - "key": "page_with_curl", - "keywords": ["page_with_curl", "PAGE WITH CURL"], - "category": "objects", - "lib": { - "name": "PAGE WITH CURL", - "unified": "1F4C3", - "non_qualified": null, - "docomo": "E689", - "au": "E561", - "softbank": null, - "google": "FE540", - "image": "1f4c3.png", - "sheet_x": 26, - "sheet_y": 17, - "short_name": "page_with_curl", - "short_names": ["page_with_curl"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 68, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flushed": { - "char": "\ud83d\ude33", - "key": "flushed", - "keywords": ["flushed", "FLUSHED FACE"], - "category": "people", - "lib": { - "name": "FLUSHED FACE", - "unified": "1F633", - "non_qualified": null, - "docomo": "E72A", - "au": "EAC8", - "softbank": "E40D", - "google": "FE32F", - "image": "1f633.png", - "sheet_x": 31, - "sheet_y": 41, - "short_name": "flushed", - "short_names": ["flushed"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 68, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "metro": { - "char": "\ud83d\ude87", - "key": "metro", - "keywords": ["metro", "METRO"], - "category": "travel_and_places", - "lib": { - "name": "METRO", - "unified": "1F687", - "non_qualified": null, - "docomo": "E65C", - "au": "E5BC", - "softbank": "E434", - "google": "FE7E0", - "image": "1f687.png", - "sheet_x": 34, - "sheet_y": 30, - "short_name": "metro", - "short_names": ["metro"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 68, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "parrot": { - "char": "\ud83e\udd9c", - "key": "parrot", - "keywords": ["parrot", "PARROT"], - "category": "animals_and_nature", - "lib": { - "name": "PARROT", - "unified": "1F99C", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f99c.png", - "sheet_x": 43, - "sheet_y": 24, - "short_name": "parrot", - "short_names": ["parrot"], - "text": null, - "texts": null, - "category": "Animals & Nature", - "sort_order": 68, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - } - }, - "sagittarius": { - "char": "\u2650", - "key": "sagittarius", - "keywords": ["sagittarius", "SAGITTARIUS"], - "category": "symbols", - "lib": { - "name": "SAGITTARIUS", - "unified": "2650", - "non_qualified": null, - "docomo": "E64E", - "au": "E497", - "softbank": "E247", - "google": "FE033", - "image": "2650.png", - "sheet_x": 49, - "sheet_y": 42, - "short_name": "sagittarius", - "short_names": ["sagittarius"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 68, - "added_in": "1.1", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "chess_pawn": { - "char": "\u265f\ufe0f", - "key": "chess_pawn", - "keywords": ["chess_pawn", ""], - "category": "activity", - "lib": { - "name": null, - "unified": "265F-FE0F", - "non_qualified": "265F", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "265f-fe0f.png", - "sheet_x": 49, - "sheet_y": 46, - "short_name": "chess_pawn", - "short_names": ["chess_pawn"], - "text": null, - "texts": null, - "category": "Activities", - "sort_order": 68, - "added_in": "1.1", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - } - }, - "black_joker": { - "char": "\ud83c\udccf", - "key": "black_joker", - "keywords": ["black_joker", "PLAYING CARD BLACK JOKER"], - "category": "activity", - "lib": { - "name": "PLAYING CARD BLACK JOKER", - "unified": "1F0CF", - "non_qualified": null, - "docomo": null, - "au": "EB6F", - "softbank": null, - "google": "FE812", - "image": "1f0cf.png", - "sheet_x": 0, - "sheet_y": 15, - "short_name": "black_joker", - "short_names": ["black_joker"], - "text": null, - "texts": null, - "category": "Activities", - "sort_order": 69, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-dk": { - "char": "\ud83c\udde9\ud83c\uddf0", - "key": "flag-dk", - "keywords": ["flag-dk", "Denmark Flag"], - "category": "flags", - "lib": { - "name": "Denmark Flag", - "unified": "1F1E9-1F1F0", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1e9-1f1f0.png", - "sheet_x": 1, - "sheet_y": 39, - "short_name": "flag-dk", - "short_names": ["flag-dk"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 69, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "fish_cake": { - "char": "\ud83c\udf65", - "key": "fish_cake", - "keywords": ["fish_cake", "FISH CAKE WITH SWIRL DESIGN"], - "category": "food_and_drink", - "lib": { - "name": "FISH CAKE WITH SWIRL DESIGN", - "unified": "1F365", - "non_qualified": null, - "docomo": "E643", - "au": "E4ED", - "softbank": null, - "google": "FE973", - "image": "1f365.png", - "sheet_x": 7, - "sheet_y": 32, - "short_name": "fish_cake", - "short_names": ["fish_cake"], - "text": null, - "texts": null, - "category": "Food & Drink", - "sort_order": 69, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "frog": { - "char": "\ud83d\udc38", - "key": "frog", - "keywords": ["frog", "FROG FACE"], - "category": "animals_and_nature", - "lib": { - "name": "FROG FACE", - "unified": "1F438", - "non_qualified": null, - "docomo": null, - "au": "E4DA", - "softbank": "E531", - "google": "FE1D7", - "image": "1f438.png", - "sheet_x": 13, - "sheet_y": 22, - "short_name": "frog", - "short_names": ["frog"], - "text": null, - "texts": null, - "category": "Animals & Nature", - "sort_order": 69, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "scroll": { - "char": "\ud83d\udcdc", - "key": "scroll", - "keywords": ["scroll", "SCROLL"], - "category": "objects", - "lib": { - "name": "SCROLL", - "unified": "1F4DC", - "non_qualified": null, - "docomo": "E70A", - "au": "E55F", - "softbank": null, - "google": "FE4FD", - "image": "1f4dc.png", - "sheet_x": 26, - "sheet_y": 42, - "short_name": "scroll", - "short_names": ["scroll"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 69, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "light_rail": { - "char": "\ud83d\ude88", - "key": "light_rail", - "keywords": ["light_rail", "LIGHT RAIL"], - "category": "travel_and_places", - "lib": { - "name": "LIGHT RAIL", - "unified": "1F688", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f688.png", - "sheet_x": 34, - "sheet_y": 31, - "short_name": "light_rail", - "short_names": ["light_rail"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 69, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "zany_face": { - "char": "\ud83e\udd2a", - "key": "zany_face", - "keywords": ["zany_face", "GRINNING FACE WITH ONE LARGE AND ONE SMALL EYE"], - "category": "people", - "lib": { - "name": "GRINNING FACE WITH ONE LARGE AND ONE SMALL EYE", - "unified": "1F92A", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f92a.png", - "sheet_x": 39, - "sheet_y": 9, - "short_name": "zany_face", - "short_names": ["zany_face", "grinning_face_with_one_large_and_one_small_eye"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 69, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "capricorn": { - "char": "\u2651", - "key": "capricorn", - "keywords": ["capricorn", "CAPRICORN"], - "category": "symbols", - "lib": { - "name": "CAPRICORN", - "unified": "2651", - "non_qualified": null, - "docomo": "E64F", - "au": "E498", - "softbank": "E248", - "google": "FE034", - "image": "2651.png", - "sheet_x": 49, - "sheet_y": 43, - "short_name": "capricorn", - "short_names": ["capricorn"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 69, - "added_in": "1.1", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "mahjong": { - "char": "\ud83c\udc04", - "key": "mahjong", - "keywords": ["mahjong", "MAHJONG TILE RED DRAGON"], - "category": "activity", - "lib": { - "name": "MAHJONG TILE RED DRAGON", - "unified": "1F004", - "non_qualified": null, - "docomo": null, - "au": "E5D1", - "softbank": "E12D", - "google": "FE80B", - "image": "1f004.png", - "sheet_x": 0, - "sheet_y": 14, - "short_name": "mahjong", - "short_names": ["mahjong"], - "text": null, - "texts": null, - "category": "Activities", - "sort_order": 70, - "added_in": "5.1", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-dm": { - "char": "\ud83c\udde9\ud83c\uddf2", - "key": "flag-dm", - "keywords": ["flag-dm", "Dominica Flag"], - "category": "flags", - "lib": { - "name": "Dominica Flag", - "unified": "1F1E9-1F1F2", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1e9-1f1f2.png", - "sheet_x": 1, - "sheet_y": 40, - "short_name": "flag-dm", - "short_names": ["flag-dm"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 70, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "crocodile": { - "char": "\ud83d\udc0a", - "key": "crocodile", - "keywords": ["crocodile", "CROCODILE"], - "category": "animals_and_nature", - "lib": { - "name": "CROCODILE", - "unified": "1F40A", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f40a.png", - "sheet_x": 12, - "sheet_y": 29, - "short_name": "crocodile", - "short_names": ["crocodile"], - "text": null, - "texts": null, - "category": "Animals & Nature", - "sort_order": 70, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "page_facing_up": { - "char": "\ud83d\udcc4", - "key": "page_facing_up", - "keywords": ["page_facing_up", "PAGE FACING UP"], - "category": "objects", - "lib": { - "name": "PAGE FACING UP", - "unified": "1F4C4", - "non_qualified": null, - "docomo": "E689", - "au": "E569", - "softbank": null, - "google": "FE541", - "image": "1f4c4.png", - "sheet_x": 26, - "sheet_y": 18, - "short_name": "page_facing_up", - "short_names": ["page_facing_up"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 70, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "dizzy_face": { - "char": "\ud83d\ude35", - "key": "dizzy_face", - "keywords": ["dizzy_face", "DIZZY FACE"], - "category": "people", - "lib": { - "name": "DIZZY FACE", - "unified": "1F635", - "non_qualified": null, - "docomo": "E6F4", - "au": "E5AE", - "softbank": null, - "google": "FE324", - "image": "1f635.png", - "sheet_x": 31, - "sheet_y": 43, - "short_name": "dizzy_face", - "short_names": ["dizzy_face"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 70, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "station": { - "char": "\ud83d\ude89", - "key": "station", - "keywords": ["station", "STATION"], - "category": "travel_and_places", - "lib": { - "name": "STATION", - "unified": "1F689", - "non_qualified": null, - "docomo": null, - "au": "EB6D", - "softbank": "E039", - "google": "FE7EC", - "image": "1f689.png", - "sheet_x": 34, - "sheet_y": 32, - "short_name": "station", - "short_names": ["station"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 70, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "moon_cake": { - "char": "\ud83e\udd6e", - "key": "moon_cake", - "keywords": ["moon_cake", "MOON CAKE"], - "category": "food_and_drink", - "lib": { - "name": "MOON CAKE", - "unified": "1F96E", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f96e.png", - "sheet_x": 42, - "sheet_y": 37, - "short_name": "moon_cake", - "short_names": ["moon_cake"], - "text": null, - "texts": null, - "category": "Food & Drink", - "sort_order": 70, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - } - }, - "aquarius": { - "char": "\u2652", - "key": "aquarius", - "keywords": ["aquarius", "AQUARIUS"], - "category": "symbols", - "lib": { - "name": "AQUARIUS", - "unified": "2652", - "non_qualified": null, - "docomo": "E650", - "au": "E499", - "softbank": "E249", - "google": "FE035", - "image": "2652.png", - "sheet_x": 49, - "sheet_y": 44, - "short_name": "aquarius", - "short_names": ["aquarius"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 70, - "added_in": "1.1", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-do": { - "char": "\ud83c\udde9\ud83c\uddf4", - "key": "flag-do", - "keywords": ["flag-do", "Dominican Republic Flag"], - "category": "flags", - "lib": { - "name": "Dominican Republic Flag", - "unified": "1F1E9-1F1F4", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1e9-1f1f4.png", - "sheet_x": 1, - "sheet_y": 41, - "short_name": "flag-do", - "short_names": ["flag-do"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 71, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "dango": { - "char": "\ud83c\udf61", - "key": "dango", - "keywords": ["dango", "DANGO"], - "category": "food_and_drink", - "lib": { - "name": "DANGO", - "unified": "1F361", - "non_qualified": null, - "docomo": null, - "au": "EAB2", - "softbank": "E33C", - "google": "FE968", - "image": "1f361.png", - "sheet_x": 7, - "sheet_y": 28, - "short_name": "dango", - "short_names": ["dango"], - "text": null, - "texts": null, - "category": "Food & Drink", - "sort_order": 71, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flower_playing_cards": { - "char": "\ud83c\udfb4", - "key": "flower_playing_cards", - "keywords": ["flower_playing_cards", "FLOWER PLAYING CARDS"], - "category": "activity", - "lib": { - "name": "FLOWER PLAYING CARDS", - "unified": "1F3B4", - "non_qualified": null, - "docomo": null, - "au": "EB6E", - "softbank": null, - "google": "FE811", - "image": "1f3b4.png", - "sheet_x": 9, - "sheet_y": 5, - "short_name": "flower_playing_cards", - "short_names": ["flower_playing_cards"], - "text": null, - "texts": null, - "category": "Activities", - "sort_order": 71, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "turtle": { - "char": "\ud83d\udc22", - "key": "turtle", - "keywords": ["turtle", "TURTLE"], - "category": "animals_and_nature", - "lib": { - "name": "TURTLE", - "unified": "1F422", - "non_qualified": null, - "docomo": null, - "au": "E5D4", - "softbank": null, - "google": "FE1DC", - "image": "1f422.png", - "sheet_x": 13, - "sheet_y": 0, - "short_name": "turtle", - "short_names": ["turtle"], - "text": null, - "texts": null, - "category": "Animals & Nature", - "sort_order": 71, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "newspaper": { - "char": "\ud83d\udcf0", - "key": "newspaper", - "keywords": ["newspaper", "NEWSPAPER"], - "category": "objects", - "lib": { - "name": "NEWSPAPER", - "unified": "1F4F0", - "non_qualified": null, - "docomo": null, - "au": "E58B", - "softbank": null, - "google": "FE822", - "image": "1f4f0.png", - "sheet_x": 27, - "sheet_y": 9, - "short_name": "newspaper", - "short_names": ["newspaper"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 71, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "rage": { - "char": "\ud83d\ude21", - "key": "rage", - "keywords": ["rage", "POUTING FACE"], - "category": "people", - "lib": { - "name": "POUTING FACE", - "unified": "1F621", - "non_qualified": null, - "docomo": "E724", - "au": "EB5D", - "softbank": "E416", - "google": "FE33D", - "image": "1f621.png", - "sheet_x": 31, - "sheet_y": 23, - "short_name": "rage", - "short_names": ["rage"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 71, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "tram": { - "char": "\ud83d\ude8a", - "key": "tram", - "keywords": ["tram", "TRAM"], - "category": "travel_and_places", - "lib": { - "name": "TRAM", - "unified": "1F68A", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f68a.png", - "sheet_x": 34, - "sheet_y": 33, - "short_name": "tram", - "short_names": ["tram"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 71, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "pisces": { - "char": "\u2653", - "key": "pisces", - "keywords": ["pisces", "PISCES"], - "category": "symbols", - "lib": { - "name": "PISCES", - "unified": "2653", - "non_qualified": null, - "docomo": "E651", - "au": "E49A", - "softbank": "E24A", - "google": "FE036", - "image": "2653.png", - "sheet_x": 49, - "sheet_y": 45, - "short_name": "pisces", - "short_names": ["pisces"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 71, - "added_in": "1.1", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-dz": { - "char": "\ud83c\udde9\ud83c\uddff", - "key": "flag-dz", - "keywords": ["flag-dz", "Algeria Flag"], - "category": "flags", - "lib": { - "name": "Algeria Flag", - "unified": "1F1E9-1F1FF", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1e9-1f1ff.png", - "sheet_x": 1, - "sheet_y": 42, - "short_name": "flag-dz", - "short_names": ["flag-dz"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 72, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "performing_arts": { - "char": "\ud83c\udfad", - "key": "performing_arts", - "keywords": ["performing_arts", "PERFORMING ARTS"], - "category": "activity", - "lib": { - "name": "PERFORMING ARTS", - "unified": "1F3AD", - "non_qualified": null, - "docomo": null, - "au": "E59D", - "softbank": null, - "google": "FE809", - "image": "1f3ad.png", - "sheet_x": 8, - "sheet_y": 51, - "short_name": "performing_arts", - "short_names": ["performing_arts"], - "text": null, - "texts": null, - "category": "Activities", - "sort_order": 72, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "rolled_up_newspaper": { - "char": "\ud83d\uddde\ufe0f", - "key": "rolled_up_newspaper", - "keywords": ["rolled_up_newspaper", ""], - "category": "objects", - "lib": { - "name": null, - "unified": "1F5DE-FE0F", - "non_qualified": "1F5DE", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f5de-fe0f.png", - "sheet_x": 30, - "sheet_y": 31, - "short_name": "rolled_up_newspaper", - "short_names": ["rolled_up_newspaper"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 72, - "added_in": "7.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "angry": { - "char": "\ud83d\ude20", - "key": "angry", - "keywords": ["angry", "ANGRY FACE"], - "category": "people", - "lib": { - "name": "ANGRY FACE", - "unified": "1F620", - "non_qualified": null, - "docomo": "E6F1", - "au": "E472", - "softbank": "E059", - "google": "FE320", - "image": "1f620.png", - "sheet_x": 31, - "sheet_y": 22, - "short_name": "angry", - "short_names": ["angry"], - "text": null, - "texts": [">:(", ">:-("], - "category": "Smileys & People", - "sort_order": 72, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "monorail": { - "char": "\ud83d\ude9d", - "key": "monorail", - "keywords": ["monorail", "MONORAIL"], - "category": "travel_and_places", - "lib": { - "name": "MONORAIL", - "unified": "1F69D", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f69d.png", - "sheet_x": 34, - "sheet_y": 52, - "short_name": "monorail", - "short_names": ["monorail"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 72, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "dumpling": { - "char": "\ud83e\udd5f", - "key": "dumpling", - "keywords": ["dumpling", "DUMPLING"], - "category": "food_and_drink", - "lib": { - "name": "DUMPLING", - "unified": "1F95F", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f95f.png", - "sheet_x": 42, - "sheet_y": 22, - "short_name": "dumpling", - "short_names": ["dumpling"], - "text": null, - "texts": null, - "category": "Food & Drink", - "sort_order": 72, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "lizard": { - "char": "\ud83e\udd8e", - "key": "lizard", - "keywords": ["lizard", "LIZARD"], - "category": "animals_and_nature", - "lib": { - "name": "LIZARD", - "unified": "1F98E", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f98e.png", - "sheet_x": 43, - "sheet_y": 10, - "short_name": "lizard", - "short_names": ["lizard"], - "text": null, - "texts": null, - "category": "Animals & Nature", - "sort_order": 72, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "ophiuchus": { - "char": "\u26ce", - "key": "ophiuchus", - "keywords": ["ophiuchus", "OPHIUCHUS"], - "category": "symbols", - "lib": { - "name": "OPHIUCHUS", - "unified": "26CE", - "non_qualified": null, - "docomo": null, - "au": "E49B", - "softbank": "E24B", - "google": "FE037", - "image": "26ce.png", - "sheet_x": 50, - "sheet_y": 22, - "short_name": "ophiuchus", - "short_names": ["ophiuchus"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 72, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-ea": { - "char": "\ud83c\uddea\ud83c\udde6", - "key": "flag-ea", - "keywords": ["flag-ea", "Ceuta & Melilla Flag"], - "category": "flags", - "lib": { - "name": "Ceuta & Melilla Flag", - "unified": "1F1EA-1F1E6", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1ea-1f1e6.png", - "sheet_x": 1, - "sheet_y": 43, - "short_name": "flag-ea", - "short_names": ["flag-ea"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 73, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "snake": { - "char": "\ud83d\udc0d", - "key": "snake", - "keywords": ["snake", "SNAKE"], - "category": "animals_and_nature", - "lib": { - "name": "SNAKE", - "unified": "1F40D", - "non_qualified": null, - "docomo": null, - "au": "EB22", - "softbank": "E52D", - "google": "FE1D3", - "image": "1f40d.png", - "sheet_x": 12, - "sheet_y": 32, - "short_name": "snake", - "short_names": ["snake"], - "text": null, - "texts": null, - "category": "Animals & Nature", - "sort_order": 73, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "bookmark_tabs": { - "char": "\ud83d\udcd1", - "key": "bookmark_tabs", - "keywords": ["bookmark_tabs", "BOOKMARK TABS"], - "category": "objects", - "lib": { - "name": "BOOKMARK TABS", - "unified": "1F4D1", - "non_qualified": null, - "docomo": "E689", - "au": "EB0B", - "softbank": null, - "google": "FE552", - "image": "1f4d1.png", - "sheet_x": 26, - "sheet_y": 31, - "short_name": "bookmark_tabs", - "short_names": ["bookmark_tabs"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 73, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "twisted_rightwards_arrows": { - "char": "\ud83d\udd00", - "key": "twisted_rightwards_arrows", - "keywords": ["twisted_rightwards_arrows", "TWISTED RIGHTWARDS ARROWS"], - "category": "symbols", - "lib": { - "name": "TWISTED RIGHTWARDS ARROWS", - "unified": "1F500", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f500.png", - "sheet_x": 27, - "sheet_y": 24, - "short_name": "twisted_rightwards_arrows", - "short_names": ["twisted_rightwards_arrows"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 73, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "frame_with_picture": { - "char": "\ud83d\uddbc\ufe0f", - "key": "frame_with_picture", - "keywords": ["frame_with_picture", ""], - "category": "activity", - "lib": { - "name": null, - "unified": "1F5BC-FE0F", - "non_qualified": "1F5BC", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f5bc-fe0f.png", - "sheet_x": 30, - "sheet_y": 22, - "short_name": "frame_with_picture", - "short_names": ["frame_with_picture"], - "text": null, - "texts": null, - "category": "Activities", - "sort_order": 73, - "added_in": "7.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "mountain_railway": { - "char": "\ud83d\ude9e", - "key": "mountain_railway", - "keywords": ["mountain_railway", "MOUNTAIN RAILWAY"], - "category": "travel_and_places", - "lib": { - "name": "MOUNTAIN RAILWAY", - "unified": "1F69E", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f69e.png", - "sheet_x": 35, - "sheet_y": 0, - "short_name": "mountain_railway", - "short_names": ["mountain_railway"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 73, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "face_with_symbols_on_mouth": { - "char": "\ud83e\udd2c", - "key": "face_with_symbols_on_mouth", - "keywords": ["face_with_symbols_on_mouth", "SERIOUS FACE WITH SYMBOLS COVERING MOUTH"], - "category": "people", - "lib": { - "name": "SERIOUS FACE WITH SYMBOLS COVERING MOUTH", - "unified": "1F92C", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f92c.png", - "sheet_x": 39, - "sheet_y": 11, - "short_name": "face_with_symbols_on_mouth", - "short_names": ["face_with_symbols_on_mouth", "serious_face_with_symbols_covering_mouth"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 73, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "fortune_cookie": { - "char": "\ud83e\udd60", - "key": "fortune_cookie", - "keywords": ["fortune_cookie", "FORTUNE COOKIE"], - "category": "food_and_drink", - "lib": { - "name": "FORTUNE COOKIE", - "unified": "1F960", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f960.png", - "sheet_x": 42, - "sheet_y": 23, - "short_name": "fortune_cookie", - "short_names": ["fortune_cookie"], - "text": null, - "texts": null, - "category": "Food & Drink", - "sort_order": 73, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "flag-ec": { - "char": "\ud83c\uddea\ud83c\udde8", - "key": "flag-ec", - "keywords": ["flag-ec", "Ecuador Flag"], - "category": "flags", - "lib": { - "name": "Ecuador Flag", - "unified": "1F1EA-1F1E8", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1ea-1f1e8.png", - "sheet_x": 1, - "sheet_y": 44, - "short_name": "flag-ec", - "short_names": ["flag-ec"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 74, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "art": { - "char": "\ud83c\udfa8", - "key": "art", - "keywords": ["art", "ARTIST PALETTE"], - "category": "activity", - "lib": { - "name": "ARTIST PALETTE", - "unified": "1F3A8", - "non_qualified": null, - "docomo": "E67B", - "au": "E59C", - "softbank": "E502", - "google": "FE804", - "image": "1f3a8.png", - "sheet_x": 8, - "sheet_y": 46, - "short_name": "art", - "short_names": ["art"], - "text": null, - "texts": null, - "category": "Activities", - "sort_order": 74, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "dragon_face": { - "char": "\ud83d\udc32", - "key": "dragon_face", - "keywords": ["dragon_face", "DRAGON FACE"], - "category": "animals_and_nature", - "lib": { - "name": "DRAGON FACE", - "unified": "1F432", - "non_qualified": null, - "docomo": null, - "au": "EB3F", - "softbank": null, - "google": "FE1DE", - "image": "1f432.png", - "sheet_x": 13, - "sheet_y": 16, - "short_name": "dragon_face", - "short_names": ["dragon_face"], - "text": null, - "texts": null, - "category": "Animals & Nature", - "sort_order": 74, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "repeat": { - "char": "\ud83d\udd01", - "key": "repeat", - "keywords": ["repeat", "CLOCKWISE RIGHTWARDS AND LEFTWARDS OPEN CIRCLE ARROWS"], - "category": "symbols", - "lib": { - "name": "CLOCKWISE RIGHTWARDS AND LEFTWARDS OPEN CIRCLE ARROWS", - "unified": "1F501", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f501.png", - "sheet_x": 27, - "sheet_y": 25, - "short_name": "repeat", - "short_names": ["repeat"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 74, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "bookmark": { - "char": "\ud83d\udd16", - "key": "bookmark", - "keywords": ["bookmark", "BOOKMARK"], - "category": "objects", - "lib": { - "name": "BOOKMARK", - "unified": "1F516", - "non_qualified": null, - "docomo": null, - "au": "EB07", - "softbank": null, - "google": "FEB8F", - "image": "1f516.png", - "sheet_x": 27, - "sheet_y": 46, - "short_name": "bookmark", - "short_names": ["bookmark"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 74, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "mask": { - "char": "\ud83d\ude37", - "key": "mask", - "keywords": ["mask", "FACE WITH MEDICAL MASK"], - "category": "people", - "lib": { - "name": "FACE WITH MEDICAL MASK", - "unified": "1F637", - "non_qualified": null, - "docomo": null, - "au": "EAC7", - "softbank": "E40C", - "google": "FE32E", - "image": "1f637.png", - "sheet_x": 31, - "sheet_y": 45, - "short_name": "mask", - "short_names": ["mask"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 74, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "train": { - "char": "\ud83d\ude8b", - "key": "train", - "keywords": ["train", "TRAM CAR"], - "category": "travel_and_places", - "lib": { - "name": "TRAM CAR", - "unified": "1F68B", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f68b.png", - "sheet_x": 34, - "sheet_y": 34, - "short_name": "train", - "short_names": ["train"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 74, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "takeout_box": { - "char": "\ud83e\udd61", - "key": "takeout_box", - "keywords": ["takeout_box", "TAKEOUT BOX"], - "category": "food_and_drink", - "lib": { - "name": "TAKEOUT BOX", - "unified": "1F961", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f961.png", - "sheet_x": 42, - "sheet_y": 24, - "short_name": "takeout_box", - "short_names": ["takeout_box"], - "text": null, - "texts": null, - "category": "Food & Drink", - "sort_order": 74, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "flag-ee": { - "char": "\ud83c\uddea\ud83c\uddea", - "key": "flag-ee", - "keywords": ["flag-ee", "Estonia Flag"], - "category": "flags", - "lib": { - "name": "Estonia Flag", - "unified": "1F1EA-1F1EA", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1ea-1f1ea.png", - "sheet_x": 1, - "sheet_y": 45, - "short_name": "flag-ee", - "short_names": ["flag-ee"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 75, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "icecream": { - "char": "\ud83c\udf66", - "key": "icecream", - "keywords": ["icecream", "SOFT ICE CREAM"], - "category": "food_and_drink", - "lib": { - "name": "SOFT ICE CREAM", - "unified": "1F366", - "non_qualified": null, - "docomo": null, - "au": "EAB0", - "softbank": "E33A", - "google": "FE966", - "image": "1f366.png", - "sheet_x": 7, - "sheet_y": 33, - "short_name": "icecream", - "short_names": ["icecream"], - "text": null, - "texts": null, - "category": "Food & Drink", - "sort_order": 75, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "label": { - "char": "\ud83c\udff7\ufe0f", - "key": "label", - "keywords": ["label", ""], - "category": "objects", - "lib": { - "name": null, - "unified": "1F3F7-FE0F", - "non_qualified": "1F3F7", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f3f7-fe0f.png", - "sheet_x": 12, - "sheet_y": 10, - "short_name": "label", - "short_names": ["label"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 75, - "added_in": "7.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "dragon": { - "char": "\ud83d\udc09", - "key": "dragon", - "keywords": ["dragon", "DRAGON"], - "category": "animals_and_nature", - "lib": { - "name": "DRAGON", - "unified": "1F409", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f409.png", - "sheet_x": 12, - "sheet_y": 28, - "short_name": "dragon", - "short_names": ["dragon"], - "text": null, - "texts": null, - "category": "Animals & Nature", - "sort_order": 75, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "repeat_one": { - "char": "\ud83d\udd02", - "key": "repeat_one", - "keywords": ["repeat_one", "CLOCKWISE RIGHTWARDS AND LEFTWARDS OPEN CIRCLE ARROWS WITH CIRCLED ONE OVERLAY"], - "category": "symbols", - "lib": { - "name": "CLOCKWISE RIGHTWARDS AND LEFTWARDS OPEN CIRCLE ARROWS WITH CIRCLED ONE OVERLAY", - "unified": "1F502", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f502.png", - "sheet_x": 27, - "sheet_y": 26, - "short_name": "repeat_one", - "short_names": ["repeat_one"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 75, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "bus": { - "char": "\ud83d\ude8c", - "key": "bus", - "keywords": ["bus", "BUS"], - "category": "travel_and_places", - "lib": { - "name": "BUS", - "unified": "1F68C", - "non_qualified": null, - "docomo": "E660", - "au": "E4AF", - "softbank": "E159", - "google": "FE7E6", - "image": "1f68c.png", - "sheet_x": 34, - "sheet_y": 35, - "short_name": "bus", - "short_names": ["bus"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 75, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "face_with_thermometer": { - "char": "\ud83e\udd12", - "key": "face_with_thermometer", - "keywords": ["face_with_thermometer", "FACE WITH THERMOMETER"], - "category": "people", - "lib": { - "name": "FACE WITH THERMOMETER", - "unified": "1F912", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f912.png", - "sheet_x": 37, - "sheet_y": 39, - "short_name": "face_with_thermometer", - "short_names": ["face_with_thermometer"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 75, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "thread": { - "char": "\ud83e\uddf5", - "key": "thread", - "keywords": ["thread", "SPOOL OF THREAD"], - "category": "activity", - "lib": { - "name": "SPOOL OF THREAD", - "unified": "1F9F5", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f9f5.png", - "sheet_x": 48, - "sheet_y": 9, - "short_name": "thread", - "short_names": ["thread"], - "text": null, - "texts": null, - "category": "Activities", - "sort_order": 75, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - } - }, - "flag-eg": { - "char": "\ud83c\uddea\ud83c\uddec", - "key": "flag-eg", - "keywords": ["flag-eg", "Egypt Flag"], - "category": "flags", - "lib": { - "name": "Egypt Flag", - "unified": "1F1EA-1F1EC", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1ea-1f1ec.png", - "sheet_x": 1, - "sheet_y": 46, - "short_name": "flag-eg", - "short_names": ["flag-eg"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 76, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "shaved_ice": { - "char": "\ud83c\udf67", - "key": "shaved_ice", - "keywords": ["shaved_ice", "SHAVED ICE"], - "category": "food_and_drink", - "lib": { - "name": "SHAVED ICE", - "unified": "1F367", - "non_qualified": null, - "docomo": null, - "au": "EAEA", - "softbank": "E43F", - "google": "FE971", - "image": "1f367.png", - "sheet_x": 7, - "sheet_y": 34, - "short_name": "shaved_ice", - "short_names": ["shaved_ice"], - "text": null, - "texts": null, - "category": "Food & Drink", - "sort_order": 76, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "moneybag": { - "char": "\ud83d\udcb0", - "key": "moneybag", - "keywords": ["moneybag", "MONEY BAG"], - "category": "objects", - "lib": { - "name": "MONEY BAG", - "unified": "1F4B0", - "non_qualified": null, - "docomo": "E715", - "au": "E4C7", - "softbank": "E12F", - "google": "FE4DD", - "image": "1f4b0.png", - "sheet_x": 25, - "sheet_y": 51, - "short_name": "moneybag", - "short_names": ["moneybag"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 76, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "oncoming_bus": { - "char": "\ud83d\ude8d", - "key": "oncoming_bus", - "keywords": ["oncoming_bus", "ONCOMING BUS"], - "category": "travel_and_places", - "lib": { - "name": "ONCOMING BUS", - "unified": "1F68D", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f68d.png", - "sheet_x": 34, - "sheet_y": 36, - "short_name": "oncoming_bus", - "short_names": ["oncoming_bus"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 76, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "face_with_head_bandage": { - "char": "\ud83e\udd15", - "key": "face_with_head_bandage", - "keywords": ["face_with_head_bandage", "FACE WITH HEAD-BANDAGE"], - "category": "people", - "lib": { - "name": "FACE WITH HEAD-BANDAGE", - "unified": "1F915", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f915.png", - "sheet_x": 37, - "sheet_y": 42, - "short_name": "face_with_head_bandage", - "short_names": ["face_with_head_bandage"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 76, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "sauropod": { - "char": "\ud83e\udd95", - "key": "sauropod", - "keywords": ["sauropod", "SAUROPOD"], - "category": "animals_and_nature", - "lib": { - "name": "SAUROPOD", - "unified": "1F995", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f995.png", - "sheet_x": 43, - "sheet_y": 17, - "short_name": "sauropod", - "short_names": ["sauropod"], - "text": null, - "texts": null, - "category": "Animals & Nature", - "sort_order": 76, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "yarn": { - "char": "\ud83e\uddf6", - "key": "yarn", - "keywords": ["yarn", "BALL OF YARN"], - "category": "activity", - "lib": { - "name": "BALL OF YARN", - "unified": "1F9F6", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f9f6.png", - "sheet_x": 48, - "sheet_y": 10, - "short_name": "yarn", - "short_names": ["yarn"], - "text": null, - "texts": null, - "category": "Activities", - "sort_order": 76, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - } - }, - "arrow_forward": { - "char": "\u25b6\ufe0f", - "key": "arrow_forward", - "keywords": ["arrow_forward", "BLACK RIGHT-POINTING TRIANGLE"], - "category": "symbols", - "lib": { - "name": "BLACK RIGHT-POINTING TRIANGLE", - "unified": "25B6-FE0F", - "non_qualified": "25B6", - "docomo": null, - "au": "E52E", - "softbank": "E23A", - "google": "FEAFC", - "image": "25b6-fe0f.png", - "sheet_x": 49, - "sheet_y": 0, - "short_name": "arrow_forward", - "short_names": ["arrow_forward"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 76, - "added_in": "1.1", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-eh": { - "char": "\ud83c\uddea\ud83c\udded", - "key": "flag-eh", - "keywords": ["flag-eh", "Western Sahara Flag"], - "category": "flags", - "lib": { - "name": "Western Sahara Flag", - "unified": "1F1EA-1F1ED", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1ea-1f1ed.png", - "sheet_x": 1, - "sheet_y": 47, - "short_name": "flag-eh", - "short_names": ["flag-eh"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 77, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "ice_cream": { - "char": "\ud83c\udf68", - "key": "ice_cream", - "keywords": ["ice_cream", "ICE CREAM"], - "category": "food_and_drink", - "lib": { - "name": "ICE CREAM", - "unified": "1F368", - "non_qualified": null, - "docomo": null, - "au": "EB4A", - "softbank": null, - "google": "FE977", - "image": "1f368.png", - "sheet_x": 7, - "sheet_y": 35, - "short_name": "ice_cream", - "short_names": ["ice_cream"], - "text": null, - "texts": null, - "category": "Food & Drink", - "sort_order": 77, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "yen": { - "char": "\ud83d\udcb4", - "key": "yen", - "keywords": ["yen", "BANKNOTE WITH YEN SIGN"], - "category": "objects", - "lib": { - "name": "BANKNOTE WITH YEN SIGN", - "unified": "1F4B4", - "non_qualified": null, - "docomo": "E6D6", - "au": "E57D", - "softbank": null, - "google": "FE4E2", - "image": "1f4b4.png", - "sheet_x": 26, - "sheet_y": 2, - "short_name": "yen", - "short_names": ["yen"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 77, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "trolleybus": { - "char": "\ud83d\ude8e", - "key": "trolleybus", - "keywords": ["trolleybus", "TROLLEYBUS"], - "category": "travel_and_places", - "lib": { - "name": "TROLLEYBUS", - "unified": "1F68E", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f68e.png", - "sheet_x": 34, - "sheet_y": 37, - "short_name": "trolleybus", - "short_names": ["trolleybus"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 77, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "nauseated_face": { - "char": "\ud83e\udd22", - "key": "nauseated_face", - "keywords": ["nauseated_face", "NAUSEATED FACE"], - "category": "people", - "lib": { - "name": "NAUSEATED FACE", - "unified": "1F922", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f922.png", - "sheet_x": 38, - "sheet_y": 37, - "short_name": "nauseated_face", - "short_names": ["nauseated_face"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 77, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "t-rex": { - "char": "\ud83e\udd96", - "key": "t-rex", - "keywords": ["t-rex", "T-REX"], - "category": "animals_and_nature", - "lib": { - "name": "T-REX", - "unified": "1F996", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f996.png", - "sheet_x": 43, - "sheet_y": 18, - "short_name": "t-rex", - "short_names": ["t-rex"], - "text": null, - "texts": null, - "category": "Animals & Nature", - "sort_order": 77, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "fast_forward": { - "char": "\u23e9", - "key": "fast_forward", - "keywords": ["fast_forward", "BLACK RIGHT-POINTING DOUBLE TRIANGLE"], - "category": "symbols", - "lib": { - "name": "BLACK RIGHT-POINTING DOUBLE TRIANGLE", - "unified": "23E9", - "non_qualified": null, - "docomo": null, - "au": "E530", - "softbank": "E23C", - "google": "FEAFE", - "image": "23e9.png", - "sheet_x": 48, - "sheet_y": 36, - "short_name": "fast_forward", - "short_names": ["fast_forward"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 77, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-er": { - "char": "\ud83c\uddea\ud83c\uddf7", - "key": "flag-er", - "keywords": ["flag-er", "Eritrea Flag"], - "category": "flags", - "lib": { - "name": "Eritrea Flag", - "unified": "1F1EA-1F1F7", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1ea-1f1f7.png", - "sheet_x": 1, - "sheet_y": 48, - "short_name": "flag-er", - "short_names": ["flag-er"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 78, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "doughnut": { - "char": "\ud83c\udf69", - "key": "doughnut", - "keywords": ["doughnut", "DOUGHNUT"], - "category": "food_and_drink", - "lib": { - "name": "DOUGHNUT", - "unified": "1F369", - "non_qualified": null, - "docomo": null, - "au": "EB4B", - "softbank": null, - "google": "FE978", - "image": "1f369.png", - "sheet_x": 7, - "sheet_y": 36, - "short_name": "doughnut", - "short_names": ["doughnut"], - "text": null, - "texts": null, - "category": "Food & Drink", - "sort_order": 78, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "whale": { - "char": "\ud83d\udc33", - "key": "whale", - "keywords": ["whale", "SPOUTING WHALE"], - "category": "animals_and_nature", - "lib": { - "name": "SPOUTING WHALE", - "unified": "1F433", - "non_qualified": null, - "docomo": null, - "au": "E470", - "softbank": "E054", - "google": "FE1C3", - "image": "1f433.png", - "sheet_x": 13, - "sheet_y": 17, - "short_name": "whale", - "short_names": ["whale"], - "text": null, - "texts": null, - "category": "Animals & Nature", - "sort_order": 78, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "dollar": { - "char": "\ud83d\udcb5", - "key": "dollar", - "keywords": ["dollar", "BANKNOTE WITH DOLLAR SIGN"], - "category": "objects", - "lib": { - "name": "BANKNOTE WITH DOLLAR SIGN", - "unified": "1F4B5", - "non_qualified": null, - "docomo": "E715", - "au": "E585", - "softbank": null, - "google": "FE4E3", - "image": "1f4b5.png", - "sheet_x": 26, - "sheet_y": 3, - "short_name": "dollar", - "short_names": ["dollar"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 78, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "minibus": { - "char": "\ud83d\ude90", - "key": "minibus", - "keywords": ["minibus", "MINIBUS"], - "category": "travel_and_places", - "lib": { - "name": "MINIBUS", - "unified": "1F690", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f690.png", - "sheet_x": 34, - "sheet_y": 39, - "short_name": "minibus", - "short_names": ["minibus"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 78, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "face_vomiting": { - "char": "\ud83e\udd2e", - "key": "face_vomiting", - "keywords": ["face_vomiting", "FACE WITH OPEN MOUTH VOMITING"], - "category": "people", - "lib": { - "name": "FACE WITH OPEN MOUTH VOMITING", - "unified": "1F92E", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f92e.png", - "sheet_x": 39, - "sheet_y": 13, - "short_name": "face_vomiting", - "short_names": ["face_vomiting", "face_with_open_mouth_vomiting"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 78, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "black_right_pointing_double_triangle_with_vertical_bar": { - "char": "\u23ed\ufe0f", - "key": "black_right_pointing_double_triangle_with_vertical_bar", - "keywords": ["black_right_pointing_double_triangle_with_vertical_bar", ""], - "category": "symbols", - "lib": { - "name": null, - "unified": "23ED-FE0F", - "non_qualified": "23ED", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "23ed-fe0f.png", - "sheet_x": 48, - "sheet_y": 40, - "short_name": "black_right_pointing_double_triangle_with_vertical_bar", - "short_names": ["black_right_pointing_double_triangle_with_vertical_bar"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 78, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "es": { - "char": "\ud83c\uddea\ud83c\uddf8", - "key": "es", - "keywords": ["es", "Spain Flag"], - "category": "flags", - "lib": { - "name": "Spain Flag", - "unified": "1F1EA-1F1F8", - "non_qualified": null, - "docomo": null, - "au": "E5D5", - "softbank": "E511", - "google": "FE4EB", - "image": "1f1ea-1f1f8.png", - "sheet_x": 1, - "sheet_y": 49, - "short_name": "es", - "short_names": ["es", "flag-es"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 79, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "cookie": { - "char": "\ud83c\udf6a", - "key": "cookie", - "keywords": ["cookie", "COOKIE"], - "category": "food_and_drink", - "lib": { - "name": "COOKIE", - "unified": "1F36A", - "non_qualified": null, - "docomo": null, - "au": "EB4C", - "softbank": null, - "google": "FE979", - "image": "1f36a.png", - "sheet_x": 7, - "sheet_y": 37, - "short_name": "cookie", - "short_names": ["cookie"], - "text": null, - "texts": null, - "category": "Food & Drink", - "sort_order": 79, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "whale2": { - "char": "\ud83d\udc0b", - "key": "whale2", - "keywords": ["whale2", "WHALE"], - "category": "animals_and_nature", - "lib": { - "name": "WHALE", - "unified": "1F40B", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f40b.png", - "sheet_x": 12, - "sheet_y": 30, - "short_name": "whale2", - "short_names": ["whale2"], - "text": null, - "texts": null, - "category": "Animals & Nature", - "sort_order": 79, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "euro": { - "char": "\ud83d\udcb6", - "key": "euro", - "keywords": ["euro", "BANKNOTE WITH EURO SIGN"], - "category": "objects", - "lib": { - "name": "BANKNOTE WITH EURO SIGN", - "unified": "1F4B6", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f4b6.png", - "sheet_x": 26, - "sheet_y": 4, - "short_name": "euro", - "short_names": ["euro"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 79, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "ambulance": { - "char": "\ud83d\ude91", - "key": "ambulance", - "keywords": ["ambulance", "AMBULANCE"], - "category": "travel_and_places", - "lib": { - "name": "AMBULANCE", - "unified": "1F691", - "non_qualified": null, - "docomo": null, - "au": "EAE0", - "softbank": "E431", - "google": "FE7F3", - "image": "1f691.png", - "sheet_x": 34, - "sheet_y": 40, - "short_name": "ambulance", - "short_names": ["ambulance"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 79, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "sneezing_face": { - "char": "\ud83e\udd27", - "key": "sneezing_face", - "keywords": ["sneezing_face", "SNEEZING FACE"], - "category": "people", - "lib": { - "name": "SNEEZING FACE", - "unified": "1F927", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f927.png", - "sheet_x": 39, - "sheet_y": 6, - "short_name": "sneezing_face", - "short_names": ["sneezing_face"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 79, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "black_right_pointing_triangle_with_double_vertical_bar": { - "char": "\u23ef\ufe0f", - "key": "black_right_pointing_triangle_with_double_vertical_bar", - "keywords": ["black_right_pointing_triangle_with_double_vertical_bar", ""], - "category": "symbols", - "lib": { - "name": null, - "unified": "23EF-FE0F", - "non_qualified": "23EF", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "23ef-fe0f.png", - "sheet_x": 48, - "sheet_y": 42, - "short_name": "black_right_pointing_triangle_with_double_vertical_bar", - "short_names": ["black_right_pointing_triangle_with_double_vertical_bar"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 79, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "flag-et": { - "char": "\ud83c\uddea\ud83c\uddf9", - "key": "flag-et", - "keywords": ["flag-et", "Ethiopia Flag"], - "category": "flags", - "lib": { - "name": "Ethiopia Flag", - "unified": "1F1EA-1F1F9", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1ea-1f1f9.png", - "sheet_x": 1, - "sheet_y": 50, - "short_name": "flag-et", - "short_names": ["flag-et"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 80, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "birthday": { - "char": "\ud83c\udf82", - "key": "birthday", - "keywords": ["birthday", "BIRTHDAY CAKE"], - "category": "food_and_drink", - "lib": { - "name": "BIRTHDAY CAKE", - "unified": "1F382", - "non_qualified": null, - "docomo": "E686", - "au": "E5A0", - "softbank": "E34B", - "google": "FE511", - "image": "1f382.png", - "sheet_x": 8, - "sheet_y": 8, - "short_name": "birthday", - "short_names": ["birthday"], - "text": null, - "texts": null, - "category": "Food & Drink", - "sort_order": 80, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "dolphin": { - "char": "\ud83d\udc2c", - "key": "dolphin", - "keywords": ["dolphin", "DOLPHIN"], - "category": "animals_and_nature", - "lib": { - "name": "DOLPHIN", - "unified": "1F42C", - "non_qualified": null, - "docomo": null, - "au": "EB1B", - "softbank": "E520", - "google": "FE1C7", - "image": "1f42c.png", - "sheet_x": 13, - "sheet_y": 10, - "short_name": "dolphin", - "short_names": ["dolphin", "flipper"], - "text": null, - "texts": null, - "category": "Animals & Nature", - "sort_order": 80, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "pound": { - "char": "\ud83d\udcb7", - "key": "pound", - "keywords": ["pound", "BANKNOTE WITH POUND SIGN"], - "category": "objects", - "lib": { - "name": "BANKNOTE WITH POUND SIGN", - "unified": "1F4B7", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f4b7.png", - "sheet_x": 26, - "sheet_y": 5, - "short_name": "pound", - "short_names": ["pound"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 80, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "innocent": { - "char": "\ud83d\ude07", - "key": "innocent", - "keywords": ["innocent", "SMILING FACE WITH HALO"], - "category": "people", - "lib": { - "name": "SMILING FACE WITH HALO", - "unified": "1F607", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f607.png", - "sheet_x": 30, - "sheet_y": 50, - "short_name": "innocent", - "short_names": ["innocent"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 80, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "fire_engine": { - "char": "\ud83d\ude92", - "key": "fire_engine", - "keywords": ["fire_engine", "FIRE ENGINE"], - "category": "travel_and_places", - "lib": { - "name": "FIRE ENGINE", - "unified": "1F692", - "non_qualified": null, - "docomo": null, - "au": "EADF", - "softbank": "E430", - "google": "FE7F2", - "image": "1f692.png", - "sheet_x": 34, - "sheet_y": 41, - "short_name": "fire_engine", - "short_names": ["fire_engine"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 80, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "arrow_backward": { - "char": "\u25c0\ufe0f", - "key": "arrow_backward", - "keywords": ["arrow_backward", "BLACK LEFT-POINTING TRIANGLE"], - "category": "symbols", - "lib": { - "name": "BLACK LEFT-POINTING TRIANGLE", - "unified": "25C0-FE0F", - "non_qualified": "25C0", - "docomo": null, - "au": "E52D", - "softbank": "E23B", - "google": "FEAFD", - "image": "25c0-fe0f.png", - "sheet_x": 49, - "sheet_y": 1, - "short_name": "arrow_backward", - "short_names": ["arrow_backward"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 80, - "added_in": "1.1", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-eu": { - "char": "\ud83c\uddea\ud83c\uddfa", - "key": "flag-eu", - "keywords": ["flag-eu", "European Union Flag"], - "category": "flags", - "lib": { - "name": "European Union Flag", - "unified": "1F1EA-1F1FA", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1ea-1f1fa.png", - "sheet_x": 1, - "sheet_y": 51, - "short_name": "flag-eu", - "short_names": ["flag-eu"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 81, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "cake": { - "char": "\ud83c\udf70", - "key": "cake", - "keywords": ["cake", "SHORTCAKE"], - "category": "food_and_drink", - "lib": { - "name": "SHORTCAKE", - "unified": "1F370", - "non_qualified": null, - "docomo": "E74A", - "au": "E4D0", - "softbank": "E046", - "google": "FE962", - "image": "1f370.png", - "sheet_x": 7, - "sheet_y": 43, - "short_name": "cake", - "short_names": ["cake"], - "text": null, - "texts": null, - "category": "Food & Drink", - "sort_order": 81, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "fish": { - "char": "\ud83d\udc1f", - "key": "fish", - "keywords": ["fish", "FISH"], - "category": "animals_and_nature", - "lib": { - "name": "FISH", - "unified": "1F41F", - "non_qualified": null, - "docomo": "E751", - "au": "E49A", - "softbank": "E019", - "google": "FE1BD", - "image": "1f41f.png", - "sheet_x": 12, - "sheet_y": 50, - "short_name": "fish", - "short_names": ["fish"], - "text": null, - "texts": null, - "category": "Animals & Nature", - "sort_order": 81, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "money_with_wings": { - "char": "\ud83d\udcb8", - "key": "money_with_wings", - "keywords": ["money_with_wings", "MONEY WITH WINGS"], - "category": "objects", - "lib": { - "name": "MONEY WITH WINGS", - "unified": "1F4B8", - "non_qualified": null, - "docomo": null, - "au": "EB5B", - "softbank": null, - "google": "FE4E4", - "image": "1f4b8.png", - "sheet_x": 26, - "sheet_y": 6, - "short_name": "money_with_wings", - "short_names": ["money_with_wings"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 81, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "police_car": { - "char": "\ud83d\ude93", - "key": "police_car", - "keywords": ["police_car", "POLICE CAR"], - "category": "travel_and_places", - "lib": { - "name": "POLICE CAR", - "unified": "1F693", - "non_qualified": null, - "docomo": null, - "au": "EAE1", - "softbank": "E432", - "google": "FE7F4", - "image": "1f693.png", - "sheet_x": 34, - "sheet_y": 42, - "short_name": "police_car", - "short_names": ["police_car"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 81, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "face_with_cowboy_hat": { - "char": "\ud83e\udd20", - "key": "face_with_cowboy_hat", - "keywords": ["face_with_cowboy_hat", "FACE WITH COWBOY HAT"], - "category": "people", - "lib": { - "name": "FACE WITH COWBOY HAT", - "unified": "1F920", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f920.png", - "sheet_x": 38, - "sheet_y": 35, - "short_name": "face_with_cowboy_hat", - "short_names": ["face_with_cowboy_hat"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 81, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "rewind": { - "char": "\u23ea", - "key": "rewind", - "keywords": ["rewind", "BLACK LEFT-POINTING DOUBLE TRIANGLE"], - "category": "symbols", - "lib": { - "name": "BLACK LEFT-POINTING DOUBLE TRIANGLE", - "unified": "23EA", - "non_qualified": null, - "docomo": null, - "au": "E52F", - "softbank": "E23D", - "google": "FEAFF", - "image": "23ea.png", - "sheet_x": 48, - "sheet_y": 37, - "short_name": "rewind", - "short_names": ["rewind"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 81, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-fi": { - "char": "\ud83c\uddeb\ud83c\uddee", - "key": "flag-fi", - "keywords": ["flag-fi", "Finland Flag"], - "category": "flags", - "lib": { - "name": "Finland Flag", - "unified": "1F1EB-1F1EE", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1eb-1f1ee.png", - "sheet_x": 1, - "sheet_y": 52, - "short_name": "flag-fi", - "short_names": ["flag-fi"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 82, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "tropical_fish": { - "char": "\ud83d\udc20", - "key": "tropical_fish", - "keywords": ["tropical_fish", "TROPICAL FISH"], - "category": "animals_and_nature", - "lib": { - "name": "TROPICAL FISH", - "unified": "1F420", - "non_qualified": null, - "docomo": "E751", - "au": "EB1D", - "softbank": "E522", - "google": "FE1C9", - "image": "1f420.png", - "sheet_x": 12, - "sheet_y": 51, - "short_name": "tropical_fish", - "short_names": ["tropical_fish"], - "text": null, - "texts": null, - "category": "Animals & Nature", - "sort_order": 82, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "credit_card": { - "char": "\ud83d\udcb3", - "key": "credit_card", - "keywords": ["credit_card", "CREDIT CARD"], - "category": "objects", - "lib": { - "name": "CREDIT CARD", - "unified": "1F4B3", - "non_qualified": null, - "docomo": null, - "au": "E57C", - "softbank": null, - "google": "FE4E1", - "image": "1f4b3.png", - "sheet_x": 26, - "sheet_y": 1, - "short_name": "credit_card", - "short_names": ["credit_card"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 82, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "oncoming_police_car": { - "char": "\ud83d\ude94", - "key": "oncoming_police_car", - "keywords": ["oncoming_police_car", "ONCOMING POLICE CAR"], - "category": "travel_and_places", - "lib": { - "name": "ONCOMING POLICE CAR", - "unified": "1F694", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f694.png", - "sheet_x": 34, - "sheet_y": 43, - "short_name": "oncoming_police_car", - "short_names": ["oncoming_police_car"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 82, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "partying_face": { - "char": "\ud83e\udd73", - "key": "partying_face", - "keywords": ["partying_face", "FACE WITH PARTY HORN AND PARTY HAT"], - "category": "people", - "lib": { - "name": "FACE WITH PARTY HORN AND PARTY HAT", - "unified": "1F973", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f973.png", - "sheet_x": 42, - "sheet_y": 40, - "short_name": "partying_face", - "short_names": ["partying_face"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 82, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - } - }, - "cupcake": { - "char": "\ud83e\uddc1", - "key": "cupcake", - "keywords": ["cupcake", "CUPCAKE"], - "category": "food_and_drink", - "lib": { - "name": "CUPCAKE", - "unified": "1F9C1", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f9c1.png", - "sheet_x": 44, - "sheet_y": 17, - "short_name": "cupcake", - "short_names": ["cupcake"], - "text": null, - "texts": null, - "category": "Food & Drink", - "sort_order": 82, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - } - }, - "black_left_pointing_double_triangle_with_vertical_bar": { - "char": "\u23ee\ufe0f", - "key": "black_left_pointing_double_triangle_with_vertical_bar", - "keywords": ["black_left_pointing_double_triangle_with_vertical_bar", ""], - "category": "symbols", - "lib": { - "name": null, - "unified": "23EE-FE0F", - "non_qualified": "23EE", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "23ee-fe0f.png", - "sheet_x": 48, - "sheet_y": 41, - "short_name": "black_left_pointing_double_triangle_with_vertical_bar", - "short_names": ["black_left_pointing_double_triangle_with_vertical_bar"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 82, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "flag-fj": { - "char": "\ud83c\uddeb\ud83c\uddef", - "key": "flag-fj", - "keywords": ["flag-fj", "Fiji Flag"], - "category": "flags", - "lib": { - "name": "Fiji Flag", - "unified": "1F1EB-1F1EF", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1eb-1f1ef.png", - "sheet_x": 2, - "sheet_y": 0, - "short_name": "flag-fj", - "short_names": ["flag-fj"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 83, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "blowfish": { - "char": "\ud83d\udc21", - "key": "blowfish", - "keywords": ["blowfish", "BLOWFISH"], - "category": "animals_and_nature", - "lib": { - "name": "BLOWFISH", - "unified": "1F421", - "non_qualified": null, - "docomo": "E751", - "au": "E4D3", - "softbank": null, - "google": "FE1D9", - "image": "1f421.png", - "sheet_x": 12, - "sheet_y": 52, - "short_name": "blowfish", - "short_names": ["blowfish"], - "text": null, - "texts": null, - "category": "Animals & Nature", - "sort_order": 83, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "arrow_up_small": { - "char": "\ud83d\udd3c", - "key": "arrow_up_small", - "keywords": ["arrow_up_small", "UP-POINTING SMALL RED TRIANGLE"], - "category": "symbols", - "lib": { - "name": "UP-POINTING SMALL RED TRIANGLE", - "unified": "1F53C", - "non_qualified": null, - "docomo": null, - "au": "E543", - "softbank": null, - "google": "FEB01", - "image": "1f53c.png", - "sheet_x": 28, - "sheet_y": 31, - "short_name": "arrow_up_small", - "short_names": ["arrow_up_small"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 83, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "taxi": { - "char": "\ud83d\ude95", - "key": "taxi", - "keywords": ["taxi", "TAXI"], - "category": "travel_and_places", - "lib": { - "name": "TAXI", - "unified": "1F695", - "non_qualified": null, - "docomo": "E65E", - "au": "E4B1", - "softbank": "E15A", - "google": "FE7EF", - "image": "1f695.png", - "sheet_x": 34, - "sheet_y": 44, - "short_name": "taxi", - "short_names": ["taxi"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 83, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "pie": { - "char": "\ud83e\udd67", - "key": "pie", - "keywords": ["pie", "PIE"], - "category": "food_and_drink", - "lib": { - "name": "PIE", - "unified": "1F967", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f967.png", - "sheet_x": 42, - "sheet_y": 30, - "short_name": "pie", - "short_names": ["pie"], - "text": null, - "texts": null, - "category": "Food & Drink", - "sort_order": 83, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "woozy_face": { - "char": "\ud83e\udd74", - "key": "woozy_face", - "keywords": ["woozy_face", "FACE WITH UNEVEN EYES AND WAVY MOUTH"], - "category": "people", - "lib": { - "name": "FACE WITH UNEVEN EYES AND WAVY MOUTH", - "unified": "1F974", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f974.png", - "sheet_x": 42, - "sheet_y": 41, - "short_name": "woozy_face", - "short_names": ["woozy_face"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 83, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - } - }, - "receipt": { - "char": "\ud83e\uddfe", - "key": "receipt", - "keywords": ["receipt", "RECEIPT"], - "category": "objects", - "lib": { - "name": "RECEIPT", - "unified": "1F9FE", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f9fe.png", - "sheet_x": 48, - "sheet_y": 18, - "short_name": "receipt", - "short_names": ["receipt"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 83, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - } - }, - "flag-fk": { - "char": "\ud83c\uddeb\ud83c\uddf0", - "key": "flag-fk", - "keywords": ["flag-fk", "Falkland Islands Flag"], - "category": "flags", - "lib": { - "name": "Falkland Islands Flag", - "unified": "1F1EB-1F1F0", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1eb-1f1f0.png", - "sheet_x": 2, - "sheet_y": 1, - "short_name": "flag-fk", - "short_names": ["flag-fk"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 84, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "chocolate_bar": { - "char": "\ud83c\udf6b", - "key": "chocolate_bar", - "keywords": ["chocolate_bar", "CHOCOLATE BAR"], - "category": "food_and_drink", - "lib": { - "name": "CHOCOLATE BAR", - "unified": "1F36B", - "non_qualified": null, - "docomo": null, - "au": "EB4D", - "softbank": null, - "google": "FE97A", - "image": "1f36b.png", - "sheet_x": 7, - "sheet_y": 38, - "short_name": "chocolate_bar", - "short_names": ["chocolate_bar"], - "text": null, - "texts": null, - "category": "Food & Drink", - "sort_order": 84, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "chart": { - "char": "\ud83d\udcb9", - "key": "chart", - "keywords": ["chart", "CHART WITH UPWARDS TREND AND YEN SIGN"], - "category": "objects", - "lib": { - "name": "CHART WITH UPWARDS TREND AND YEN SIGN", - "unified": "1F4B9", - "non_qualified": null, - "docomo": null, - "au": "E5DC", - "softbank": "E14A", - "google": "FE4DF", - "image": "1f4b9.png", - "sheet_x": 26, - "sheet_y": 7, - "short_name": "chart", - "short_names": ["chart"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 84, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "oncoming_taxi": { - "char": "\ud83d\ude96", - "key": "oncoming_taxi", - "keywords": ["oncoming_taxi", "ONCOMING TAXI"], - "category": "travel_and_places", - "lib": { - "name": "ONCOMING TAXI", - "unified": "1F696", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f696.png", - "sheet_x": 34, - "sheet_y": 45, - "short_name": "oncoming_taxi", - "short_names": ["oncoming_taxi"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 84, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "pleading_face": { - "char": "\ud83e\udd7a", - "key": "pleading_face", - "keywords": ["pleading_face", "FACE WITH PLEADING EYES"], - "category": "people", - "lib": { - "name": "FACE WITH PLEADING EYES", - "unified": "1F97A", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f97a.png", - "sheet_x": 42, - "sheet_y": 44, - "short_name": "pleading_face", - "short_names": ["pleading_face"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 84, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - } - }, - "shark": { - "char": "\ud83e\udd88", - "key": "shark", - "keywords": ["shark", "SHARK"], - "category": "animals_and_nature", - "lib": { - "name": "SHARK", - "unified": "1F988", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f988.png", - "sheet_x": 43, - "sheet_y": 4, - "short_name": "shark", - "short_names": ["shark"], - "text": null, - "texts": null, - "category": "Animals & Nature", - "sort_order": 84, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "arrow_double_up": { - "char": "\u23eb", - "key": "arrow_double_up", - "keywords": ["arrow_double_up", "BLACK UP-POINTING DOUBLE TRIANGLE"], - "category": "symbols", - "lib": { - "name": "BLACK UP-POINTING DOUBLE TRIANGLE", - "unified": "23EB", - "non_qualified": null, - "docomo": null, - "au": "E545", - "softbank": null, - "google": "FEB03", - "image": "23eb.png", - "sheet_x": 48, - "sheet_y": 38, - "short_name": "arrow_double_up", - "short_names": ["arrow_double_up"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 84, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-fm": { - "char": "\ud83c\uddeb\ud83c\uddf2", - "key": "flag-fm", - "keywords": ["flag-fm", "Micronesia Flag"], - "category": "flags", - "lib": { - "name": "Micronesia Flag", - "unified": "1F1EB-1F1F2", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1eb-1f1f2.png", - "sheet_x": 2, - "sheet_y": 2, - "short_name": "flag-fm", - "short_names": ["flag-fm"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 85, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "candy": { - "char": "\ud83c\udf6c", - "key": "candy", - "keywords": ["candy", "CANDY"], - "category": "food_and_drink", - "lib": { - "name": "CANDY", - "unified": "1F36C", - "non_qualified": null, - "docomo": null, - "au": "EB4E", - "softbank": null, - "google": "FE97B", - "image": "1f36c.png", - "sheet_x": 7, - "sheet_y": 39, - "short_name": "candy", - "short_names": ["candy"], - "text": null, - "texts": null, - "category": "Food & Drink", - "sort_order": 85, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "octopus": { - "char": "\ud83d\udc19", - "key": "octopus", - "keywords": ["octopus", "OCTOPUS"], - "category": "animals_and_nature", - "lib": { - "name": "OCTOPUS", - "unified": "1F419", - "non_qualified": null, - "docomo": null, - "au": "E5C7", - "softbank": "E10A", - "google": "FE1C5", - "image": "1f419.png", - "sheet_x": 12, - "sheet_y": 44, - "short_name": "octopus", - "short_names": ["octopus"], - "text": null, - "texts": null, - "category": "Animals & Nature", - "sort_order": 85, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "currency_exchange": { - "char": "\ud83d\udcb1", - "key": "currency_exchange", - "keywords": ["currency_exchange", "CURRENCY EXCHANGE"], - "category": "objects", - "lib": { - "name": "CURRENCY EXCHANGE", - "unified": "1F4B1", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": "E149", - "google": "FE4DE", - "image": "1f4b1.png", - "sheet_x": 25, - "sheet_y": 52, - "short_name": "currency_exchange", - "short_names": ["currency_exchange"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 85, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "arrow_down_small": { - "char": "\ud83d\udd3d", - "key": "arrow_down_small", - "keywords": ["arrow_down_small", "DOWN-POINTING SMALL RED TRIANGLE"], - "category": "symbols", - "lib": { - "name": "DOWN-POINTING SMALL RED TRIANGLE", - "unified": "1F53D", - "non_qualified": null, - "docomo": null, - "au": "E542", - "softbank": null, - "google": "FEB00", - "image": "1f53d.png", - "sheet_x": 28, - "sheet_y": 32, - "short_name": "arrow_down_small", - "short_names": ["arrow_down_small"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 85, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "car": { - "char": "\ud83d\ude97", - "key": "car", - "keywords": ["car", "AUTOMOBILE"], - "category": "travel_and_places", - "lib": { - "name": "AUTOMOBILE", - "unified": "1F697", - "non_qualified": null, - "docomo": "E65E", - "au": "E4B1", - "softbank": "E01B", - "google": "FE7E4", - "image": "1f697.png", - "sheet_x": 34, - "sheet_y": 46, - "short_name": "car", - "short_names": ["car", "red_car"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 85, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "lying_face": { - "char": "\ud83e\udd25", - "key": "lying_face", - "keywords": ["lying_face", "LYING FACE"], - "category": "people", - "lib": { - "name": "LYING FACE", - "unified": "1F925", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f925.png", - "sheet_x": 38, - "sheet_y": 40, - "short_name": "lying_face", - "short_names": ["lying_face"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 85, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "flag-fo": { - "char": "\ud83c\uddeb\ud83c\uddf4", - "key": "flag-fo", - "keywords": ["flag-fo", "Faroe Islands Flag"], - "category": "flags", - "lib": { - "name": "Faroe Islands Flag", - "unified": "1F1EB-1F1F4", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1eb-1f1f4.png", - "sheet_x": 2, - "sheet_y": 3, - "short_name": "flag-fo", - "short_names": ["flag-fo"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 86, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "lollipop": { - "char": "\ud83c\udf6d", - "key": "lollipop", - "keywords": ["lollipop", "LOLLIPOP"], - "category": "food_and_drink", - "lib": { - "name": "LOLLIPOP", - "unified": "1F36D", - "non_qualified": null, - "docomo": null, - "au": "EB4F", - "softbank": null, - "google": "FE97C", - "image": "1f36d.png", - "sheet_x": 7, - "sheet_y": 40, - "short_name": "lollipop", - "short_names": ["lollipop"], - "text": null, - "texts": null, - "category": "Food & Drink", - "sort_order": 86, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "shell": { - "char": "\ud83d\udc1a", - "key": "shell", - "keywords": ["shell", "SPIRAL SHELL"], - "category": "animals_and_nature", - "lib": { - "name": "SPIRAL SHELL", - "unified": "1F41A", - "non_qualified": null, - "docomo": null, - "au": "EAEC", - "softbank": "E441", - "google": "FE1C6", - "image": "1f41a.png", - "sheet_x": 12, - "sheet_y": 45, - "short_name": "shell", - "short_names": ["shell"], - "text": null, - "texts": null, - "category": "Animals & Nature", - "sort_order": 86, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "heavy_dollar_sign": { - "char": "\ud83d\udcb2", - "key": "heavy_dollar_sign", - "keywords": ["heavy_dollar_sign", "HEAVY DOLLAR SIGN"], - "category": "objects", - "lib": { - "name": "HEAVY DOLLAR SIGN", - "unified": "1F4B2", - "non_qualified": null, - "docomo": "E715", - "au": "E579", - "softbank": null, - "google": "FE4E0", - "image": "1f4b2.png", - "sheet_x": 26, - "sheet_y": 0, - "short_name": "heavy_dollar_sign", - "short_names": ["heavy_dollar_sign"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 86, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "oncoming_automobile": { - "char": "\ud83d\ude98", - "key": "oncoming_automobile", - "keywords": ["oncoming_automobile", "ONCOMING AUTOMOBILE"], - "category": "travel_and_places", - "lib": { - "name": "ONCOMING AUTOMOBILE", - "unified": "1F698", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f698.png", - "sheet_x": 34, - "sheet_y": 47, - "short_name": "oncoming_automobile", - "short_names": ["oncoming_automobile"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 86, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "shushing_face": { - "char": "\ud83e\udd2b", - "key": "shushing_face", - "keywords": ["shushing_face", "FACE WITH FINGER COVERING CLOSED LIPS"], - "category": "people", - "lib": { - "name": "FACE WITH FINGER COVERING CLOSED LIPS", - "unified": "1F92B", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f92b.png", - "sheet_x": 39, - "sheet_y": 10, - "short_name": "shushing_face", - "short_names": ["shushing_face", "face_with_finger_covering_closed_lips"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 86, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "arrow_double_down": { - "char": "\u23ec", - "key": "arrow_double_down", - "keywords": ["arrow_double_down", "BLACK DOWN-POINTING DOUBLE TRIANGLE"], - "category": "symbols", - "lib": { - "name": "BLACK DOWN-POINTING DOUBLE TRIANGLE", - "unified": "23EC", - "non_qualified": null, - "docomo": null, - "au": "E544", - "softbank": null, - "google": "FEB02", - "image": "23ec.png", - "sheet_x": 48, - "sheet_y": 39, - "short_name": "arrow_double_down", - "short_names": ["arrow_double_down"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 86, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "fr": { - "char": "\ud83c\uddeb\ud83c\uddf7", - "key": "fr", - "keywords": ["fr", "France Flag"], - "category": "flags", - "lib": { - "name": "France Flag", - "unified": "1F1EB-1F1F7", - "non_qualified": null, - "docomo": null, - "au": "EAFA", - "softbank": "E50D", - "google": "FE4E7", - "image": "1f1eb-1f1f7.png", - "sheet_x": 2, - "sheet_y": 4, - "short_name": "fr", - "short_names": ["fr", "flag-fr"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 87, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "custard": { - "char": "\ud83c\udf6e", - "key": "custard", - "keywords": ["custard", "CUSTARD"], - "category": "food_and_drink", - "lib": { - "name": "CUSTARD", - "unified": "1F36E", - "non_qualified": null, - "docomo": null, - "au": "EB56", - "softbank": null, - "google": "FE97D", - "image": "1f36e.png", - "sheet_x": 7, - "sheet_y": 41, - "short_name": "custard", - "short_names": ["custard"], - "text": null, - "texts": null, - "category": "Food & Drink", - "sort_order": 87, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "blue_car": { - "char": "\ud83d\ude99", - "key": "blue_car", - "keywords": ["blue_car", "RECREATIONAL VEHICLE"], - "category": "travel_and_places", - "lib": { - "name": "RECREATIONAL VEHICLE", - "unified": "1F699", - "non_qualified": null, - "docomo": "E65F", - "au": "E4B1", - "softbank": "E42E", - "google": "FE7E5", - "image": "1f699.png", - "sheet_x": 34, - "sheet_y": 48, - "short_name": "blue_car", - "short_names": ["blue_car"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 87, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "face_with_hand_over_mouth": { - "char": "\ud83e\udd2d", - "key": "face_with_hand_over_mouth", - "keywords": ["face_with_hand_over_mouth", "SMILING FACE WITH SMILING EYES AND HAND COVERING MOUTH"], - "category": "people", - "lib": { - "name": "SMILING FACE WITH SMILING EYES AND HAND COVERING MOUTH", - "unified": "1F92D", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f92d.png", - "sheet_x": 39, - "sheet_y": 12, - "short_name": "face_with_hand_over_mouth", - "short_names": ["face_with_hand_over_mouth", "smiling_face_with_smiling_eyes_and_hand_covering_mouth"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 87, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "crab": { - "char": "\ud83e\udd80", - "key": "crab", - "keywords": ["crab", "CRAB"], - "category": "animals_and_nature", - "lib": { - "name": "CRAB", - "unified": "1F980", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f980.png", - "sheet_x": 42, - "sheet_y": 49, - "short_name": "crab", - "short_names": ["crab"], - "text": null, - "texts": null, - "category": "Animals & Nature", - "sort_order": 87, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "double_vertical_bar": { - "char": "\u23f8\ufe0f", - "key": "double_vertical_bar", - "keywords": ["double_vertical_bar", ""], - "category": "symbols", - "lib": { - "name": null, - "unified": "23F8-FE0F", - "non_qualified": "23F8", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "23f8-fe0f.png", - "sheet_x": 48, - "sheet_y": 47, - "short_name": "double_vertical_bar", - "short_names": ["double_vertical_bar"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 87, - "added_in": "7.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "email": { - "char": "\u2709\ufe0f", - "key": "email", - "keywords": ["email", "ENVELOPE"], - "category": "objects", - "lib": { - "name": "ENVELOPE", - "unified": "2709-FE0F", - "non_qualified": "2709", - "docomo": "E6D3", - "au": "E521", - "softbank": null, - "google": "FE529", - "image": "2709-fe0f.png", - "sheet_x": 51, - "sheet_y": 7, - "short_name": "email", - "short_names": ["email", "envelope"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 87, - "added_in": "1.1", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-ga": { - "char": "\ud83c\uddec\ud83c\udde6", - "key": "flag-ga", - "keywords": ["flag-ga", "Gabon Flag"], - "category": "flags", - "lib": { - "name": "Gabon Flag", - "unified": "1F1EC-1F1E6", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1ec-1f1e6.png", - "sheet_x": 2, - "sheet_y": 5, - "short_name": "flag-ga", - "short_names": ["flag-ga"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 88, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "honey_pot": { - "char": "\ud83c\udf6f", - "key": "honey_pot", - "keywords": ["honey_pot", "HONEY POT"], - "category": "food_and_drink", - "lib": { - "name": "HONEY POT", - "unified": "1F36F", - "non_qualified": null, - "docomo": null, - "au": "EB59", - "softbank": null, - "google": "FE97E", - "image": "1f36f.png", - "sheet_x": 7, - "sheet_y": 42, - "short_name": "honey_pot", - "short_names": ["honey_pot"], - "text": null, - "texts": null, - "category": "Food & Drink", - "sort_order": 88, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "e-mail": { - "char": "\ud83d\udce7", - "key": "e-mail", - "keywords": ["e-mail", "E-MAIL SYMBOL"], - "category": "objects", - "lib": { - "name": "E-MAIL SYMBOL", - "unified": "1F4E7", - "non_qualified": null, - "docomo": "E6D3", - "au": "EB71", - "softbank": null, - "google": "FEB92", - "image": "1f4e7.png", - "sheet_x": 27, - "sheet_y": 0, - "short_name": "e-mail", - "short_names": ["e-mail"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 88, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "truck": { - "char": "\ud83d\ude9a", - "key": "truck", - "keywords": ["truck", "DELIVERY TRUCK"], - "category": "travel_and_places", - "lib": { - "name": "DELIVERY TRUCK", - "unified": "1F69A", - "non_qualified": null, - "docomo": null, - "au": "E4B2", - "softbank": "E42F", - "google": "FE7F1", - "image": "1f69a.png", - "sheet_x": 34, - "sheet_y": 49, - "short_name": "truck", - "short_names": ["truck"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 88, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "lobster": { - "char": "\ud83e\udd9e", - "key": "lobster", - "keywords": ["lobster", "LOBSTER"], - "category": "animals_and_nature", - "lib": { - "name": "LOBSTER", - "unified": "1F99E", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f99e.png", - "sheet_x": 43, - "sheet_y": 26, - "short_name": "lobster", - "short_names": ["lobster"], - "text": null, - "texts": null, - "category": "Animals & Nature", - "sort_order": 88, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - } - }, - "face_with_monocle": { - "char": "\ud83e\uddd0", - "key": "face_with_monocle", - "keywords": ["face_with_monocle", "FACE WITH MONOCLE"], - "category": "people", - "lib": { - "name": "FACE WITH MONOCLE", - "unified": "1F9D0", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f9d0.png", - "sheet_x": 44, - "sheet_y": 19, - "short_name": "face_with_monocle", - "short_names": ["face_with_monocle"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 88, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "black_square_for_stop": { - "char": "\u23f9\ufe0f", - "key": "black_square_for_stop", - "keywords": ["black_square_for_stop", ""], - "category": "symbols", - "lib": { - "name": null, - "unified": "23F9-FE0F", - "non_qualified": "23F9", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "23f9-fe0f.png", - "sheet_x": 48, - "sheet_y": 48, - "short_name": "black_square_for_stop", - "short_names": ["black_square_for_stop"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 88, - "added_in": "7.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "gb": { - "char": "\ud83c\uddec\ud83c\udde7", - "key": "gb", - "keywords": ["gb", "United Kingdom Flag"], - "category": "flags", - "lib": { - "name": "United Kingdom Flag", - "unified": "1F1EC-1F1E7", - "non_qualified": null, - "docomo": null, - "au": "EB10", - "softbank": "E510", - "google": "FE4EA", - "image": "1f1ec-1f1e7.png", - "sheet_x": 2, - "sheet_y": 6, - "short_name": "gb", - "short_names": ["gb", "uk", "flag-gb"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 89, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "baby_bottle": { - "char": "\ud83c\udf7c", - "key": "baby_bottle", - "keywords": ["baby_bottle", "BABY BOTTLE"], - "category": "food_and_drink", - "lib": { - "name": "BABY BOTTLE", - "unified": "1F37C", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f37c.png", - "sheet_x": 8, - "sheet_y": 2, - "short_name": "baby_bottle", - "short_names": ["baby_bottle"], - "text": null, - "texts": null, - "category": "Food & Drink", - "sort_order": 89, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "incoming_envelope": { - "char": "\ud83d\udce8", - "key": "incoming_envelope", - "keywords": ["incoming_envelope", "INCOMING ENVELOPE"], - "category": "objects", - "lib": { - "name": "INCOMING ENVELOPE", - "unified": "1F4E8", - "non_qualified": null, - "docomo": "E6CF", - "au": "E591", - "softbank": null, - "google": "FE52A", - "image": "1f4e8.png", - "sheet_x": 27, - "sheet_y": 1, - "short_name": "incoming_envelope", - "short_names": ["incoming_envelope"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 89, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "articulated_lorry": { - "char": "\ud83d\ude9b", - "key": "articulated_lorry", - "keywords": ["articulated_lorry", "ARTICULATED LORRY"], - "category": "travel_and_places", - "lib": { - "name": "ARTICULATED LORRY", - "unified": "1F69B", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f69b.png", - "sheet_x": 34, - "sheet_y": 50, - "short_name": "articulated_lorry", - "short_names": ["articulated_lorry"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 89, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "nerd_face": { - "char": "\ud83e\udd13", - "key": "nerd_face", - "keywords": ["nerd_face", "NERD FACE"], - "category": "people", - "lib": { - "name": "NERD FACE", - "unified": "1F913", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f913.png", - "sheet_x": 37, - "sheet_y": 40, - "short_name": "nerd_face", - "short_names": ["nerd_face"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 89, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "shrimp": { - "char": "\ud83e\udd90", - "key": "shrimp", - "keywords": ["shrimp", "SHRIMP"], - "category": "animals_and_nature", - "lib": { - "name": "SHRIMP", - "unified": "1F990", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f990.png", - "sheet_x": 43, - "sheet_y": 12, - "short_name": "shrimp", - "short_names": ["shrimp"], - "text": null, - "texts": null, - "category": "Animals & Nature", - "sort_order": 89, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "black_circle_for_record": { - "char": "\u23fa\ufe0f", - "key": "black_circle_for_record", - "keywords": ["black_circle_for_record", ""], - "category": "symbols", - "lib": { - "name": null, - "unified": "23FA-FE0F", - "non_qualified": "23FA", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "23fa-fe0f.png", - "sheet_x": 48, - "sheet_y": 49, - "short_name": "black_circle_for_record", - "short_names": ["black_circle_for_record"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 89, - "added_in": "7.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "flag-gd": { - "char": "\ud83c\uddec\ud83c\udde9", - "key": "flag-gd", - "keywords": ["flag-gd", "Grenada Flag"], - "category": "flags", - "lib": { - "name": "Grenada Flag", - "unified": "1F1EC-1F1E9", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1ec-1f1e9.png", - "sheet_x": 2, - "sheet_y": 7, - "short_name": "flag-gd", - "short_names": ["flag-gd"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 90, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "envelope_with_arrow": { - "char": "\ud83d\udce9", - "key": "envelope_with_arrow", - "keywords": ["envelope_with_arrow", "ENVELOPE WITH DOWNWARDS ARROW ABOVE"], - "category": "objects", - "lib": { - "name": "ENVELOPE WITH DOWNWARDS ARROW ABOVE", - "unified": "1F4E9", - "non_qualified": null, - "docomo": "E6CF", - "au": "EB62", - "softbank": "E103", - "google": "FE52B", - "image": "1f4e9.png", - "sheet_x": 27, - "sheet_y": 2, - "short_name": "envelope_with_arrow", - "short_names": ["envelope_with_arrow"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 90, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "smiling_imp": { - "char": "\ud83d\ude08", - "key": "smiling_imp", - "keywords": ["smiling_imp", "SMILING FACE WITH HORNS"], - "category": "people", - "lib": { - "name": "SMILING FACE WITH HORNS", - "unified": "1F608", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f608.png", - "sheet_x": 30, - "sheet_y": 51, - "short_name": "smiling_imp", - "short_names": ["smiling_imp"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 90, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "tractor": { - "char": "\ud83d\ude9c", - "key": "tractor", - "keywords": ["tractor", "TRACTOR"], - "category": "travel_and_places", - "lib": { - "name": "TRACTOR", - "unified": "1F69C", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f69c.png", - "sheet_x": 34, - "sheet_y": 51, - "short_name": "tractor", - "short_names": ["tractor"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 90, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "glass_of_milk": { - "char": "\ud83e\udd5b", - "key": "glass_of_milk", - "keywords": ["glass_of_milk", "GLASS OF MILK"], - "category": "food_and_drink", - "lib": { - "name": "GLASS OF MILK", - "unified": "1F95B", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f95b.png", - "sheet_x": 42, - "sheet_y": 18, - "short_name": "glass_of_milk", - "short_names": ["glass_of_milk"], - "text": null, - "texts": null, - "category": "Food & Drink", - "sort_order": 90, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "squid": { - "char": "\ud83e\udd91", - "key": "squid", - "keywords": ["squid", "SQUID"], - "category": "animals_and_nature", - "lib": { - "name": "SQUID", - "unified": "1F991", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f991.png", - "sheet_x": 43, - "sheet_y": 13, - "short_name": "squid", - "short_names": ["squid"], - "text": null, - "texts": null, - "category": "Animals & Nature", - "sort_order": 90, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "eject": { - "char": "\u23cf\ufe0f", - "key": "eject", - "keywords": ["eject", ""], - "category": "symbols", - "lib": { - "name": null, - "unified": "23CF-FE0F", - "non_qualified": "23CF", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "23cf-fe0f.png", - "sheet_x": 48, - "sheet_y": 35, - "short_name": "eject", - "short_names": ["eject"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 90, - "added_in": "4.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "flag-ge": { - "char": "\ud83c\uddec\ud83c\uddea", - "key": "flag-ge", - "keywords": ["flag-ge", "Georgia Flag"], - "category": "flags", - "lib": { - "name": "Georgia Flag", - "unified": "1F1EC-1F1EA", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1ec-1f1ea.png", - "sheet_x": 2, - "sheet_y": 8, - "short_name": "flag-ge", - "short_names": ["flag-ge"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 91, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "cinema": { - "char": "\ud83c\udfa6", - "key": "cinema", - "keywords": ["cinema", "CINEMA"], - "category": "symbols", - "lib": { - "name": "CINEMA", - "unified": "1F3A6", - "non_qualified": null, - "docomo": "E677", - "au": "E517", - "softbank": "E507", - "google": "FE802", - "image": "1f3a6.png", - "sheet_x": 8, - "sheet_y": 44, - "short_name": "cinema", - "short_names": ["cinema"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 91, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "snail": { - "char": "\ud83d\udc0c", - "key": "snail", - "keywords": ["snail", "SNAIL"], - "category": "animals_and_nature", - "lib": { - "name": "SNAIL", - "unified": "1F40C", - "non_qualified": null, - "docomo": "E74E", - "au": "EB7E", - "softbank": null, - "google": "FE1B9", - "image": "1f40c.png", - "sheet_x": 12, - "sheet_y": 31, - "short_name": "snail", - "short_names": ["snail"], - "text": null, - "texts": null, - "category": "Animals & Nature", - "sort_order": 91, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "imp": { - "char": "\ud83d\udc7f", - "key": "imp", - "keywords": ["imp", "IMP"], - "category": "people", - "lib": { - "name": "IMP", - "unified": "1F47F", - "non_qualified": null, - "docomo": null, - "au": "E4EF", - "softbank": "E11A", - "google": "FE1B2", - "image": "1f47f.png", - "sheet_x": 23, - "sheet_y": 25, - "short_name": "imp", - "short_names": ["imp"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 91, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "outbox_tray": { - "char": "\ud83d\udce4", - "key": "outbox_tray", - "keywords": ["outbox_tray", "OUTBOX TRAY"], - "category": "objects", - "lib": { - "name": "OUTBOX TRAY", - "unified": "1F4E4", - "non_qualified": null, - "docomo": null, - "au": "E592", - "softbank": null, - "google": "FE533", - "image": "1f4e4.png", - "sheet_x": 26, - "sheet_y": 50, - "short_name": "outbox_tray", - "short_names": ["outbox_tray"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 91, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "bike": { - "char": "\ud83d\udeb2", - "key": "bike", - "keywords": ["bike", "BICYCLE"], - "category": "travel_and_places", - "lib": { - "name": "BICYCLE", - "unified": "1F6B2", - "non_qualified": null, - "docomo": "E71D", - "au": "E4AE", - "softbank": "E136", - "google": "FE7EB", - "image": "1f6b2.png", - "sheet_x": 35, - "sheet_y": 37, - "short_name": "bike", - "short_names": ["bike"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 91, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "coffee": { - "char": "\u2615", - "key": "coffee", - "keywords": ["coffee", "HOT BEVERAGE"], - "category": "food_and_drink", - "lib": { - "name": "HOT BEVERAGE", - "unified": "2615", - "non_qualified": null, - "docomo": "E670", - "au": "E597", - "softbank": "E045", - "google": "FE981", - "image": "2615.png", - "sheet_x": 49, - "sheet_y": 14, - "short_name": "coffee", - "short_names": ["coffee"], - "text": null, - "texts": null, - "category": "Food & Drink", - "sort_order": 91, - "added_in": "4.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-gf": { - "char": "\ud83c\uddec\ud83c\uddeb", - "key": "flag-gf", - "keywords": ["flag-gf", "French Guiana Flag"], - "category": "flags", - "lib": { - "name": "French Guiana Flag", - "unified": "1F1EC-1F1EB", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1ec-1f1eb.png", - "sheet_x": 2, - "sheet_y": 9, - "short_name": "flag-gf", - "short_names": ["flag-gf"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 92, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "tea": { - "char": "\ud83c\udf75", - "key": "tea", - "keywords": ["tea", "TEACUP WITHOUT HANDLE"], - "category": "food_and_drink", - "lib": { - "name": "TEACUP WITHOUT HANDLE", - "unified": "1F375", - "non_qualified": null, - "docomo": "E71E", - "au": "EAAE", - "softbank": "E338", - "google": "FE984", - "image": "1f375.png", - "sheet_x": 7, - "sheet_y": 48, - "short_name": "tea", - "short_names": ["tea"], - "text": null, - "texts": null, - "category": "Food & Drink", - "sort_order": 92, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "inbox_tray": { - "char": "\ud83d\udce5", - "key": "inbox_tray", - "keywords": ["inbox_tray", "INBOX TRAY"], - "category": "objects", - "lib": { - "name": "INBOX TRAY", - "unified": "1F4E5", - "non_qualified": null, - "docomo": null, - "au": "E593", - "softbank": null, - "google": "FE534", - "image": "1f4e5.png", - "sheet_x": 26, - "sheet_y": 51, - "short_name": "inbox_tray", - "short_names": ["inbox_tray"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 92, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "low_brightness": { - "char": "\ud83d\udd05", - "key": "low_brightness", - "keywords": ["low_brightness", "LOW BRIGHTNESS SYMBOL"], - "category": "symbols", - "lib": { - "name": "LOW BRIGHTNESS SYMBOL", - "unified": "1F505", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f505.png", - "sheet_x": 27, - "sheet_y": 29, - "short_name": "low_brightness", - "short_names": ["low_brightness"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 92, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "scooter": { - "char": "\ud83d\udef4", - "key": "scooter", - "keywords": ["scooter", "SCOOTER"], - "category": "travel_and_places", - "lib": { - "name": "SCOOTER", - "unified": "1F6F4", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f6f4.png", - "sheet_x": 37, - "sheet_y": 31, - "short_name": "scooter", - "short_names": ["scooter"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 92, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "clown_face": { - "char": "\ud83e\udd21", - "key": "clown_face", - "keywords": ["clown_face", "CLOWN FACE"], - "category": "people", - "lib": { - "name": "CLOWN FACE", - "unified": "1F921", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f921.png", - "sheet_x": 38, - "sheet_y": 36, - "short_name": "clown_face", - "short_names": ["clown_face"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 92, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "butterfly": { - "char": "\ud83e\udd8b", - "key": "butterfly", - "keywords": ["butterfly", "BUTTERFLY"], - "category": "animals_and_nature", - "lib": { - "name": "BUTTERFLY", - "unified": "1F98B", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f98b.png", - "sheet_x": 43, - "sheet_y": 7, - "short_name": "butterfly", - "short_names": ["butterfly"], - "text": null, - "texts": null, - "category": "Animals & Nature", - "sort_order": 92, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "flag-gg": { - "char": "\ud83c\uddec\ud83c\uddec", - "key": "flag-gg", - "keywords": ["flag-gg", "Guernsey Flag"], - "category": "flags", - "lib": { - "name": "Guernsey Flag", - "unified": "1F1EC-1F1EC", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1ec-1f1ec.png", - "sheet_x": 2, - "sheet_y": 10, - "short_name": "flag-gg", - "short_names": ["flag-gg"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 93, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "sake": { - "char": "\ud83c\udf76", - "key": "sake", - "keywords": ["sake", "SAKE BOTTLE AND CUP"], - "category": "food_and_drink", - "lib": { - "name": "SAKE BOTTLE AND CUP", - "unified": "1F376", - "non_qualified": null, - "docomo": "E74B", - "au": "EA97", - "softbank": "E30B", - "google": "FE985", - "image": "1f376.png", - "sheet_x": 7, - "sheet_y": 49, - "short_name": "sake", - "short_names": ["sake"], - "text": null, - "texts": null, - "category": "Food & Drink", - "sort_order": 93, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "bug": { - "char": "\ud83d\udc1b", - "key": "bug", - "keywords": ["bug", "BUG"], - "category": "animals_and_nature", - "lib": { - "name": "BUG", - "unified": "1F41B", - "non_qualified": null, - "docomo": null, - "au": "EB1E", - "softbank": "E525", - "google": "FE1CB", - "image": "1f41b.png", - "sheet_x": 12, - "sheet_y": 46, - "short_name": "bug", - "short_names": ["bug"], - "text": null, - "texts": null, - "category": "Animals & Nature", - "sort_order": 93, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "japanese_ogre": { - "char": "\ud83d\udc79", - "key": "japanese_ogre", - "keywords": ["japanese_ogre", "JAPANESE OGRE"], - "category": "people", - "lib": { - "name": "JAPANESE OGRE", - "unified": "1F479", - "non_qualified": null, - "docomo": null, - "au": "EB44", - "softbank": null, - "google": "FE1AC", - "image": "1f479.png", - "sheet_x": 23, - "sheet_y": 14, - "short_name": "japanese_ogre", - "short_names": ["japanese_ogre"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 93, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "package": { - "char": "\ud83d\udce6", - "key": "package", - "keywords": ["package", "PACKAGE"], - "category": "objects", - "lib": { - "name": "PACKAGE", - "unified": "1F4E6", - "non_qualified": null, - "docomo": "E685", - "au": "E51F", - "softbank": null, - "google": "FE535", - "image": "1f4e6.png", - "sheet_x": 26, - "sheet_y": 52, - "short_name": "package", - "short_names": ["package"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 93, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "high_brightness": { - "char": "\ud83d\udd06", - "key": "high_brightness", - "keywords": ["high_brightness", "HIGH BRIGHTNESS SYMBOL"], - "category": "symbols", - "lib": { - "name": "HIGH BRIGHTNESS SYMBOL", - "unified": "1F506", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f506.png", - "sheet_x": 27, - "sheet_y": 30, - "short_name": "high_brightness", - "short_names": ["high_brightness"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 93, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "skateboard": { - "char": "\ud83d\udef9", - "key": "skateboard", - "keywords": ["skateboard", "SKATEBOARD"], - "category": "travel_and_places", - "lib": { - "name": "SKATEBOARD", - "unified": "1F6F9", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f6f9.png", - "sheet_x": 37, - "sheet_y": 36, - "short_name": "skateboard", - "short_names": ["skateboard"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 93, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - } - }, - "flag-gh": { - "char": "\ud83c\uddec\ud83c\udded", - "key": "flag-gh", - "keywords": ["flag-gh", "Ghana Flag"], - "category": "flags", - "lib": { - "name": "Ghana Flag", - "unified": "1F1EC-1F1ED", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1ec-1f1ed.png", - "sheet_x": 2, - "sheet_y": 11, - "short_name": "flag-gh", - "short_names": ["flag-gh"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 94, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "champagne": { - "char": "\ud83c\udf7e", - "key": "champagne", - "keywords": ["champagne", "BOTTLE WITH POPPING CORK"], - "category": "food_and_drink", - "lib": { - "name": "BOTTLE WITH POPPING CORK", - "unified": "1F37E", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f37e.png", - "sheet_x": 8, - "sheet_y": 4, - "short_name": "champagne", - "short_names": ["champagne"], - "text": null, - "texts": null, - "category": "Food & Drink", - "sort_order": 94, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "ant": { - "char": "\ud83d\udc1c", - "key": "ant", - "keywords": ["ant", "ANT"], - "category": "animals_and_nature", - "lib": { - "name": "ANT", - "unified": "1F41C", - "non_qualified": null, - "docomo": null, - "au": "E4DD", - "softbank": null, - "google": "FE1DA", - "image": "1f41c.png", - "sheet_x": 12, - "sheet_y": 47, - "short_name": "ant", - "short_names": ["ant"], - "text": null, - "texts": null, - "category": "Animals & Nature", - "sort_order": 94, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "japanese_goblin": { - "char": "\ud83d\udc7a", - "key": "japanese_goblin", - "keywords": ["japanese_goblin", "JAPANESE GOBLIN"], - "category": "people", - "lib": { - "name": "JAPANESE GOBLIN", - "unified": "1F47A", - "non_qualified": null, - "docomo": null, - "au": "EB45", - "softbank": null, - "google": "FE1AD", - "image": "1f47a.png", - "sheet_x": 23, - "sheet_y": 15, - "short_name": "japanese_goblin", - "short_names": ["japanese_goblin"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 94, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "mailbox": { - "char": "\ud83d\udceb", - "key": "mailbox", - "keywords": ["mailbox", "CLOSED MAILBOX WITH RAISED FLAG"], - "category": "objects", - "lib": { - "name": "CLOSED MAILBOX WITH RAISED FLAG", - "unified": "1F4EB", - "non_qualified": null, - "docomo": "E665", - "au": "EB0A", - "softbank": "E101", - "google": "FE52D", - "image": "1f4eb.png", - "sheet_x": 27, - "sheet_y": 4, - "short_name": "mailbox", - "short_names": ["mailbox"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 94, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "signal_strength": { - "char": "\ud83d\udcf6", - "key": "signal_strength", - "keywords": ["signal_strength", "ANTENNA WITH BARS"], - "category": "symbols", - "lib": { - "name": "ANTENNA WITH BARS", - "unified": "1F4F6", - "non_qualified": null, - "docomo": null, - "au": "EA84", - "softbank": "E20B", - "google": "FE838", - "image": "1f4f6.png", - "sheet_x": 27, - "sheet_y": 15, - "short_name": "signal_strength", - "short_names": ["signal_strength"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 94, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "motor_scooter": { - "char": "\ud83d\udef5", - "key": "motor_scooter", - "keywords": ["motor_scooter", "MOTOR SCOOTER"], - "category": "travel_and_places", - "lib": { - "name": "MOTOR SCOOTER", - "unified": "1F6F5", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f6f5.png", - "sheet_x": 37, - "sheet_y": 32, - "short_name": "motor_scooter", - "short_names": ["motor_scooter"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 94, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "flag-gi": { - "char": "\ud83c\uddec\ud83c\uddee", - "key": "flag-gi", - "keywords": ["flag-gi", "Gibraltar Flag"], - "category": "flags", - "lib": { - "name": "Gibraltar Flag", - "unified": "1F1EC-1F1EE", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1ec-1f1ee.png", - "sheet_x": 2, - "sheet_y": 12, - "short_name": "flag-gi", - "short_names": ["flag-gi"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 95, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "wine_glass": { - "char": "\ud83c\udf77", - "key": "wine_glass", - "keywords": ["wine_glass", "WINE GLASS"], - "category": "food_and_drink", - "lib": { - "name": "WINE GLASS", - "unified": "1F377", - "non_qualified": null, - "docomo": "E756", - "au": "E4C1", - "softbank": null, - "google": "FE986", - "image": "1f377.png", - "sheet_x": 7, - "sheet_y": 50, - "short_name": "wine_glass", - "short_names": ["wine_glass"], - "text": null, - "texts": null, - "category": "Food & Drink", - "sort_order": 95, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "bee": { - "char": "\ud83d\udc1d", - "key": "bee", - "keywords": ["bee", "HONEYBEE"], - "category": "animals_and_nature", - "lib": { - "name": "HONEYBEE", - "unified": "1F41D", - "non_qualified": null, - "docomo": null, - "au": "EB57", - "softbank": null, - "google": "FE1E1", - "image": "1f41d.png", - "sheet_x": 12, - "sheet_y": 48, - "short_name": "bee", - "short_names": ["bee", "honeybee"], - "text": null, - "texts": null, - "category": "Animals & Nature", - "sort_order": 95, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "skull": { - "char": "\ud83d\udc80", - "key": "skull", - "keywords": ["skull", "SKULL"], - "category": "people", - "lib": { - "name": "SKULL", - "unified": "1F480", - "non_qualified": null, - "docomo": null, - "au": "E4F8", - "softbank": "E11C", - "google": "FE1B3", - "image": "1f480.png", - "sheet_x": 23, - "sheet_y": 26, - "short_name": "skull", - "short_names": ["skull"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 95, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "mailbox_closed": { - "char": "\ud83d\udcea", - "key": "mailbox_closed", - "keywords": ["mailbox_closed", "CLOSED MAILBOX WITH LOWERED FLAG"], - "category": "objects", - "lib": { - "name": "CLOSED MAILBOX WITH LOWERED FLAG", - "unified": "1F4EA", - "non_qualified": null, - "docomo": "E665", - "au": "E51B", - "softbank": null, - "google": "FE52C", - "image": "1f4ea.png", - "sheet_x": 27, - "sheet_y": 3, - "short_name": "mailbox_closed", - "short_names": ["mailbox_closed"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 95, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "vibration_mode": { - "char": "\ud83d\udcf3", - "key": "vibration_mode", - "keywords": ["vibration_mode", "VIBRATION MODE"], - "category": "symbols", - "lib": { - "name": "VIBRATION MODE", - "unified": "1F4F3", - "non_qualified": null, - "docomo": null, - "au": "EA90", - "softbank": "E250", - "google": "FE839", - "image": "1f4f3.png", - "sheet_x": 27, - "sheet_y": 12, - "short_name": "vibration_mode", - "short_names": ["vibration_mode"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 95, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "busstop": { - "char": "\ud83d\ude8f", - "key": "busstop", - "keywords": ["busstop", "BUS STOP"], - "category": "travel_and_places", - "lib": { - "name": "BUS STOP", - "unified": "1F68F", - "non_qualified": null, - "docomo": null, - "au": "E4A7", - "softbank": "E150", - "google": "FE7E7", - "image": "1f68f.png", - "sheet_x": 34, - "sheet_y": 38, - "short_name": "busstop", - "short_names": ["busstop"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 95, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-gl": { - "char": "\ud83c\uddec\ud83c\uddf1", - "key": "flag-gl", - "keywords": ["flag-gl", "Greenland Flag"], - "category": "flags", - "lib": { - "name": "Greenland Flag", - "unified": "1F1EC-1F1F1", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1ec-1f1f1.png", - "sheet_x": 2, - "sheet_y": 13, - "short_name": "flag-gl", - "short_names": ["flag-gl"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 96, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "cocktail": { - "char": "\ud83c\udf78", - "key": "cocktail", - "keywords": ["cocktail", "COCKTAIL GLASS"], - "category": "food_and_drink", - "lib": { - "name": "COCKTAIL GLASS", - "unified": "1F378", - "non_qualified": null, - "docomo": "E671", - "au": "E4C2", - "softbank": "E044", - "google": "FE982", - "image": "1f378.png", - "sheet_x": 7, - "sheet_y": 51, - "short_name": "cocktail", - "short_names": ["cocktail"], - "text": null, - "texts": null, - "category": "Food & Drink", - "sort_order": 96, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "beetle": { - "char": "\ud83d\udc1e", - "key": "beetle", - "keywords": ["beetle", "LADY BEETLE"], - "category": "animals_and_nature", - "lib": { - "name": "LADY BEETLE", - "unified": "1F41E", - "non_qualified": null, - "docomo": null, - "au": "EB58", - "softbank": null, - "google": "FE1E2", - "image": "1f41e.png", - "sheet_x": 12, - "sheet_y": 49, - "short_name": "beetle", - "short_names": ["beetle"], - "text": null, - "texts": null, - "category": "Animals & Nature", - "sort_order": 96, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "mailbox_with_mail": { - "char": "\ud83d\udcec", - "key": "mailbox_with_mail", - "keywords": ["mailbox_with_mail", "OPEN MAILBOX WITH RAISED FLAG"], - "category": "objects", - "lib": { - "name": "OPEN MAILBOX WITH RAISED FLAG", - "unified": "1F4EC", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f4ec.png", - "sheet_x": 27, - "sheet_y": 5, - "short_name": "mailbox_with_mail", - "short_names": ["mailbox_with_mail"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 96, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "mobile_phone_off": { - "char": "\ud83d\udcf4", - "key": "mobile_phone_off", - "keywords": ["mobile_phone_off", "MOBILE PHONE OFF"], - "category": "symbols", - "lib": { - "name": "MOBILE PHONE OFF", - "unified": "1F4F4", - "non_qualified": null, - "docomo": null, - "au": "EA91", - "softbank": "E251", - "google": "FE83A", - "image": "1f4f4.png", - "sheet_x": 27, - "sheet_y": 13, - "short_name": "mobile_phone_off", - "short_names": ["mobile_phone_off"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 96, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "motorway": { - "char": "\ud83d\udee3\ufe0f", - "key": "motorway", - "keywords": ["motorway", ""], - "category": "travel_and_places", - "lib": { - "name": null, - "unified": "1F6E3-FE0F", - "non_qualified": "1F6E3", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f6e3-fe0f.png", - "sheet_x": 37, - "sheet_y": 23, - "short_name": "motorway", - "short_names": ["motorway"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 96, - "added_in": "7.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "skull_and_crossbones": { - "char": "\u2620\ufe0f", - "key": "skull_and_crossbones", - "keywords": ["skull_and_crossbones", ""], - "category": "people", - "lib": { - "name": null, - "unified": "2620-FE0F", - "non_qualified": "2620", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "2620-fe0f.png", - "sheet_x": 49, - "sheet_y": 22, - "short_name": "skull_and_crossbones", - "short_names": ["skull_and_crossbones"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 96, - "added_in": "1.1", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "flag-gm": { - "char": "\ud83c\uddec\ud83c\uddf2", - "key": "flag-gm", - "keywords": ["flag-gm", "Gambia Flag"], - "category": "flags", - "lib": { - "name": "Gambia Flag", - "unified": "1F1EC-1F1F2", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1ec-1f1f2.png", - "sheet_x": 2, - "sheet_y": 14, - "short_name": "flag-gm", - "short_names": ["flag-gm"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 97, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "tropical_drink": { - "char": "\ud83c\udf79", - "key": "tropical_drink", - "keywords": ["tropical_drink", "TROPICAL DRINK"], - "category": "food_and_drink", - "lib": { - "name": "TROPICAL DRINK", - "unified": "1F379", - "non_qualified": null, - "docomo": "E671", - "au": "EB3E", - "softbank": null, - "google": "FE988", - "image": "1f379.png", - "sheet_x": 7, - "sheet_y": 52, - "short_name": "tropical_drink", - "short_names": ["tropical_drink"], - "text": null, - "texts": null, - "category": "Food & Drink", - "sort_order": 97, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "ghost": { - "char": "\ud83d\udc7b", - "key": "ghost", - "keywords": ["ghost", "GHOST"], - "category": "people", - "lib": { - "name": "GHOST", - "unified": "1F47B", - "non_qualified": null, - "docomo": null, - "au": "E4CB", - "softbank": "E11B", - "google": "FE1AE", - "image": "1f47b.png", - "sheet_x": 23, - "sheet_y": 16, - "short_name": "ghost", - "short_names": ["ghost"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 97, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "mailbox_with_no_mail": { - "char": "\ud83d\udced", - "key": "mailbox_with_no_mail", - "keywords": ["mailbox_with_no_mail", "OPEN MAILBOX WITH LOWERED FLAG"], - "category": "objects", - "lib": { - "name": "OPEN MAILBOX WITH LOWERED FLAG", - "unified": "1F4ED", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f4ed.png", - "sheet_x": 27, - "sheet_y": 6, - "short_name": "mailbox_with_no_mail", - "short_names": ["mailbox_with_no_mail"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 97, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "railway_track": { - "char": "\ud83d\udee4\ufe0f", - "key": "railway_track", - "keywords": ["railway_track", ""], - "category": "travel_and_places", - "lib": { - "name": null, - "unified": "1F6E4-FE0F", - "non_qualified": "1F6E4", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f6e4-fe0f.png", - "sheet_x": 37, - "sheet_y": 24, - "short_name": "railway_track", - "short_names": ["railway_track"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 97, - "added_in": "7.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "cricket": { - "char": "\ud83e\udd97", - "key": "cricket", - "keywords": ["cricket", "CRICKET"], - "category": "animals_and_nature", - "lib": { - "name": "CRICKET", - "unified": "1F997", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f997.png", - "sheet_x": 43, - "sheet_y": 19, - "short_name": "cricket", - "short_names": ["cricket"], - "text": null, - "texts": null, - "category": "Animals & Nature", - "sort_order": 97, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "female_sign": { - "char": "\u2640\ufe0f", - "key": "female_sign", - "keywords": ["female_sign", ""], - "category": "symbols", - "lib": { - "name": null, - "unified": "2640-FE0F", - "non_qualified": "2640", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "2640-fe0f.png", - "sheet_x": 49, - "sheet_y": 32, - "short_name": "female_sign", - "short_names": ["female_sign"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 97, - "added_in": "1.1", - "has_img_apple": false, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "flag-gn": { - "char": "\ud83c\uddec\ud83c\uddf3", - "key": "flag-gn", - "keywords": ["flag-gn", "Guinea Flag"], - "category": "flags", - "lib": { - "name": "Guinea Flag", - "unified": "1F1EC-1F1F3", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1ec-1f1f3.png", - "sheet_x": 2, - "sheet_y": 15, - "short_name": "flag-gn", - "short_names": ["flag-gn"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 98, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "beer": { - "char": "\ud83c\udf7a", - "key": "beer", - "keywords": ["beer", "BEER MUG"], - "category": "food_and_drink", - "lib": { - "name": "BEER MUG", - "unified": "1F37A", - "non_qualified": null, - "docomo": "E672", - "au": "E4C3", - "softbank": "E047", - "google": "FE983", - "image": "1f37a.png", - "sheet_x": 8, - "sheet_y": 0, - "short_name": "beer", - "short_names": ["beer"], - "text": null, - "texts": null, - "category": "Food & Drink", - "sort_order": 98, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "alien": { - "char": "\ud83d\udc7d", - "key": "alien", - "keywords": ["alien", "EXTRATERRESTRIAL ALIEN"], - "category": "people", - "lib": { - "name": "EXTRATERRESTRIAL ALIEN", - "unified": "1F47D", - "non_qualified": null, - "docomo": null, - "au": "E50E", - "softbank": "E10C", - "google": "FE1B0", - "image": "1f47d.png", - "sheet_x": 23, - "sheet_y": 23, - "short_name": "alien", - "short_names": ["alien"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 98, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "postbox": { - "char": "\ud83d\udcee", - "key": "postbox", - "keywords": ["postbox", "POSTBOX"], - "category": "objects", - "lib": { - "name": "POSTBOX", - "unified": "1F4EE", - "non_qualified": null, - "docomo": "E665", - "au": "E51B", - "softbank": "E102", - "google": "FE52E", - "image": "1f4ee.png", - "sheet_x": 27, - "sheet_y": 7, - "short_name": "postbox", - "short_names": ["postbox"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 98, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "spider": { - "char": "\ud83d\udd77\ufe0f", - "key": "spider", - "keywords": ["spider", ""], - "category": "animals_and_nature", - "lib": { - "name": null, - "unified": "1F577-FE0F", - "non_qualified": "1F577", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f577-fe0f.png", - "sheet_x": 29, - "sheet_y": 38, - "short_name": "spider", - "short_names": ["spider"], - "text": null, - "texts": null, - "category": "Animals & Nature", - "sort_order": 98, - "added_in": "7.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "oil_drum": { - "char": "\ud83d\udee2\ufe0f", - "key": "oil_drum", - "keywords": ["oil_drum", ""], - "category": "travel_and_places", - "lib": { - "name": null, - "unified": "1F6E2-FE0F", - "non_qualified": "1F6E2", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f6e2-fe0f.png", - "sheet_x": 37, - "sheet_y": 22, - "short_name": "oil_drum", - "short_names": ["oil_drum"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 98, - "added_in": "7.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "male_sign": { - "char": "\u2642\ufe0f", - "key": "male_sign", - "keywords": ["male_sign", ""], - "category": "symbols", - "lib": { - "name": null, - "unified": "2642-FE0F", - "non_qualified": "2642", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "2642-fe0f.png", - "sheet_x": 49, - "sheet_y": 33, - "short_name": "male_sign", - "short_names": ["male_sign"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 98, - "added_in": "1.1", - "has_img_apple": false, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "flag-gp": { - "char": "\ud83c\uddec\ud83c\uddf5", - "key": "flag-gp", - "keywords": ["flag-gp", "Guadeloupe Flag"], - "category": "flags", - "lib": { - "name": "Guadeloupe Flag", - "unified": "1F1EC-1F1F5", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1ec-1f1f5.png", - "sheet_x": 2, - "sheet_y": 16, - "short_name": "flag-gp", - "short_names": ["flag-gp"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 99, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "beers": { - "char": "\ud83c\udf7b", - "key": "beers", - "keywords": ["beers", "CLINKING BEER MUGS"], - "category": "food_and_drink", - "lib": { - "name": "CLINKING BEER MUGS", - "unified": "1F37B", - "non_qualified": null, - "docomo": "E672", - "au": "EA98", - "softbank": "E30C", - "google": "FE987", - "image": "1f37b.png", - "sheet_x": 8, - "sheet_y": 1, - "short_name": "beers", - "short_names": ["beers"], - "text": null, - "texts": null, - "category": "Food & Drink", - "sort_order": 99, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "space_invader": { - "char": "\ud83d\udc7e", - "key": "space_invader", - "keywords": ["space_invader", "ALIEN MONSTER"], - "category": "people", - "lib": { - "name": "ALIEN MONSTER", - "unified": "1F47E", - "non_qualified": null, - "docomo": null, - "au": "E4EC", - "softbank": "E12B", - "google": "FE1B1", - "image": "1f47e.png", - "sheet_x": 23, - "sheet_y": 24, - "short_name": "space_invader", - "short_names": ["space_invader"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 99, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "spider_web": { - "char": "\ud83d\udd78\ufe0f", - "key": "spider_web", - "keywords": ["spider_web", ""], - "category": "animals_and_nature", - "lib": { - "name": null, - "unified": "1F578-FE0F", - "non_qualified": "1F578", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f578-fe0f.png", - "sheet_x": 29, - "sheet_y": 39, - "short_name": "spider_web", - "short_names": ["spider_web"], - "text": null, - "texts": null, - "category": "Animals & Nature", - "sort_order": 99, - "added_in": "7.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "ballot_box_with_ballot": { - "char": "\ud83d\uddf3\ufe0f", - "key": "ballot_box_with_ballot", - "keywords": ["ballot_box_with_ballot", ""], - "category": "objects", - "lib": { - "name": null, - "unified": "1F5F3-FE0F", - "non_qualified": "1F5F3", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f5f3-fe0f.png", - "sheet_x": 30, - "sheet_y": 36, - "short_name": "ballot_box_with_ballot", - "short_names": ["ballot_box_with_ballot"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 99, - "added_in": "7.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "medical_symbol": { - "char": "\u2695\ufe0f", - "key": "medical_symbol", - "keywords": ["medical_symbol", ""], - "category": "symbols", - "lib": { - "name": null, - "unified": "2695-FE0F", - "non_qualified": "2695", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "2695-fe0f.png", - "sheet_x": 50, - "sheet_y": 5, - "short_name": "medical_symbol", - "short_names": ["medical_symbol", "staff_of_aesculapius"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 99, - "added_in": "4.1", - "has_img_apple": false, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "fuelpump": { - "char": "\u26fd", - "key": "fuelpump", - "keywords": ["fuelpump", "FUEL PUMP"], - "category": "travel_and_places", - "lib": { - "name": "FUEL PUMP", - "unified": "26FD", - "non_qualified": null, - "docomo": "E66B", - "au": "E571", - "softbank": "E03A", - "google": "FE7F5", - "image": "26fd.png", - "sheet_x": 51, - "sheet_y": 3, - "short_name": "fuelpump", - "short_names": ["fuelpump"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 99, - "added_in": "5.2", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-gq": { - "char": "\ud83c\uddec\ud83c\uddf6", - "key": "flag-gq", - "keywords": ["flag-gq", "Equatorial Guinea Flag"], - "category": "flags", - "lib": { - "name": "Equatorial Guinea Flag", - "unified": "1F1EC-1F1F6", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1ec-1f1f6.png", - "sheet_x": 2, - "sheet_y": 17, - "short_name": "flag-gq", - "short_names": ["flag-gq"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 100, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "rotating_light": { - "char": "\ud83d\udea8", - "key": "rotating_light", - "keywords": ["rotating_light", "POLICE CARS REVOLVING LIGHT"], - "category": "travel_and_places", - "lib": { - "name": "POLICE CARS REVOLVING LIGHT", - "unified": "1F6A8", - "non_qualified": null, - "docomo": null, - "au": "EB73", - "softbank": null, - "google": "FE7F9", - "image": "1f6a8.png", - "sheet_x": 35, - "sheet_y": 27, - "short_name": "rotating_light", - "short_names": ["rotating_light"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 100, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "robot_face": { - "char": "\ud83e\udd16", - "key": "robot_face", - "keywords": ["robot_face", "ROBOT FACE"], - "category": "people", - "lib": { - "name": "ROBOT FACE", - "unified": "1F916", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f916.png", - "sheet_x": 37, - "sheet_y": 43, - "short_name": "robot_face", - "short_names": ["robot_face"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 100, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "clinking_glasses": { - "char": "\ud83e\udd42", - "key": "clinking_glasses", - "keywords": ["clinking_glasses", "CLINKING GLASSES"], - "category": "food_and_drink", - "lib": { - "name": "CLINKING GLASSES", - "unified": "1F942", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f942.png", - "sheet_x": 41, - "sheet_y": 47, - "short_name": "clinking_glasses", - "short_names": ["clinking_glasses"], - "text": null, - "texts": null, - "category": "Food & Drink", - "sort_order": 100, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "scorpion": { - "char": "\ud83e\udd82", - "key": "scorpion", - "keywords": ["scorpion", "SCORPION"], - "category": "animals_and_nature", - "lib": { - "name": "SCORPION", - "unified": "1F982", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f982.png", - "sheet_x": 42, - "sheet_y": 51, - "short_name": "scorpion", - "short_names": ["scorpion"], - "text": null, - "texts": null, - "category": "Animals & Nature", - "sort_order": 100, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "infinity": { - "char": "\u267e\ufe0f", - "key": "infinity", - "keywords": ["infinity", ""], - "category": "symbols", - "lib": { - "name": null, - "unified": "267E-FE0F", - "non_qualified": "267E", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "267e-fe0f.png", - "sheet_x": 50, - "sheet_y": 0, - "short_name": "infinity", - "short_names": ["infinity"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 100, - "added_in": "4.1", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - } - }, - "pencil2": { - "char": "\u270f\ufe0f", - "key": "pencil2", - "keywords": ["pencil2", "PENCIL"], - "category": "objects", - "lib": { - "name": "PENCIL", - "unified": "270F-FE0F", - "non_qualified": "270F", - "docomo": "E719", - "au": "E4A1", - "softbank": null, - "google": "FE539", - "image": "270f-fe0f.png", - "sheet_x": 51, - "sheet_y": 32, - "short_name": "pencil2", - "short_names": ["pencil2"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 100, - "added_in": "1.1", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-gr": { - "char": "\ud83c\uddec\ud83c\uddf7", - "key": "flag-gr", - "keywords": ["flag-gr", "Greece Flag"], - "category": "flags", - "lib": { - "name": "Greece Flag", - "unified": "1F1EC-1F1F7", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1ec-1f1f7.png", - "sheet_x": 2, - "sheet_y": 18, - "short_name": "flag-gr", - "short_names": ["flag-gr"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 101, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "hankey": { - "char": "\ud83d\udca9", - "key": "hankey", - "keywords": ["hankey", "PILE OF POO"], - "category": "people", - "lib": { - "name": "PILE OF POO", - "unified": "1F4A9", - "non_qualified": null, - "docomo": null, - "au": "E4F5", - "softbank": "E05A", - "google": "FE4F4", - "image": "1f4a9.png", - "sheet_x": 25, - "sheet_y": 39, - "short_name": "hankey", - "short_names": ["hankey", "poop", "shit"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 101, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "traffic_light": { - "char": "\ud83d\udea5", - "key": "traffic_light", - "keywords": ["traffic_light", "HORIZONTAL TRAFFIC LIGHT"], - "category": "travel_and_places", - "lib": { - "name": "HORIZONTAL TRAFFIC LIGHT", - "unified": "1F6A5", - "non_qualified": null, - "docomo": "E66D", - "au": "E46A", - "softbank": "E14E", - "google": "FE7F7", - "image": "1f6a5.png", - "sheet_x": 35, - "sheet_y": 24, - "short_name": "traffic_light", - "short_names": ["traffic_light"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 101, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "tumbler_glass": { - "char": "\ud83e\udd43", - "key": "tumbler_glass", - "keywords": ["tumbler_glass", "TUMBLER GLASS"], - "category": "food_and_drink", - "lib": { - "name": "TUMBLER GLASS", - "unified": "1F943", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f943.png", - "sheet_x": 41, - "sheet_y": 48, - "short_name": "tumbler_glass", - "short_names": ["tumbler_glass"], - "text": null, - "texts": null, - "category": "Food & Drink", - "sort_order": 101, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "mosquito": { - "char": "\ud83e\udd9f", - "key": "mosquito", - "keywords": ["mosquito", "MOSQUITO"], - "category": "animals_and_nature", - "lib": { - "name": "MOSQUITO", - "unified": "1F99F", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f99f.png", - "sheet_x": 43, - "sheet_y": 27, - "short_name": "mosquito", - "short_names": ["mosquito"], - "text": null, - "texts": null, - "category": "Animals & Nature", - "sort_order": 101, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - } - }, - "recycle": { - "char": "\u267b\ufe0f", - "key": "recycle", - "keywords": ["recycle", "BLACK UNIVERSAL RECYCLING SYMBOL"], - "category": "symbols", - "lib": { - "name": "BLACK UNIVERSAL RECYCLING SYMBOL", - "unified": "267B-FE0F", - "non_qualified": "267B", - "docomo": "E735", - "au": "EB79", - "softbank": null, - "google": "FEB2C", - "image": "267b-fe0f.png", - "sheet_x": 49, - "sheet_y": 52, - "short_name": "recycle", - "short_names": ["recycle"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 101, - "added_in": "3.2", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "black_nib": { - "char": "\u2712\ufe0f", - "key": "black_nib", - "keywords": ["black_nib", "BLACK NIB"], - "category": "objects", - "lib": { - "name": "BLACK NIB", - "unified": "2712-FE0F", - "non_qualified": "2712", - "docomo": "E6AE", - "au": "EB03", - "softbank": null, - "google": "FE536", - "image": "2712-fe0f.png", - "sheet_x": 51, - "sheet_y": 33, - "short_name": "black_nib", - "short_names": ["black_nib"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 101, - "added_in": "1.1", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-gs": { - "char": "\ud83c\uddec\ud83c\uddf8", - "key": "flag-gs", - "keywords": ["flag-gs", "South Georgia & South Sandwich Islands Flag"], - "category": "flags", - "lib": { - "name": "South Georgia & South Sandwich Islands Flag", - "unified": "1F1EC-1F1F8", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1ec-1f1f8.png", - "sheet_x": 2, - "sheet_y": 19, - "short_name": "flag-gs", - "short_names": ["flag-gs"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 102, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "lower_left_fountain_pen": { - "char": "\ud83d\udd8b\ufe0f", - "key": "lower_left_fountain_pen", - "keywords": ["lower_left_fountain_pen", ""], - "category": "objects", - "lib": { - "name": null, - "unified": "1F58B-FE0F", - "non_qualified": "1F58B", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f58b-fe0f.png", - "sheet_x": 29, - "sheet_y": 49, - "short_name": "lower_left_fountain_pen", - "short_names": ["lower_left_fountain_pen"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 102, - "added_in": "7.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "smiley_cat": { - "char": "\ud83d\ude3a", - "key": "smiley_cat", - "keywords": ["smiley_cat", "SMILING CAT FACE WITH OPEN MOUTH"], - "category": "people", - "lib": { - "name": "SMILING CAT FACE WITH OPEN MOUTH", - "unified": "1F63A", - "non_qualified": null, - "docomo": "E6F0", - "au": "EB61", - "softbank": null, - "google": "FE348", - "image": "1f63a.png", - "sheet_x": 31, - "sheet_y": 48, - "short_name": "smiley_cat", - "short_names": ["smiley_cat"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 102, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "vertical_traffic_light": { - "char": "\ud83d\udea6", - "key": "vertical_traffic_light", - "keywords": ["vertical_traffic_light", "VERTICAL TRAFFIC LIGHT"], - "category": "travel_and_places", - "lib": { - "name": "VERTICAL TRAFFIC LIGHT", - "unified": "1F6A6", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f6a6.png", - "sheet_x": 35, - "sheet_y": 25, - "short_name": "vertical_traffic_light", - "short_names": ["vertical_traffic_light"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 102, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "cup_with_straw": { - "char": "\ud83e\udd64", - "key": "cup_with_straw", - "keywords": ["cup_with_straw", "CUP WITH STRAW"], - "category": "food_and_drink", - "lib": { - "name": "CUP WITH STRAW", - "unified": "1F964", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f964.png", - "sheet_x": 42, - "sheet_y": 27, - "short_name": "cup_with_straw", - "short_names": ["cup_with_straw"], - "text": null, - "texts": null, - "category": "Food & Drink", - "sort_order": 102, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "microbe": { - "char": "\ud83e\udda0", - "key": "microbe", - "keywords": ["microbe", "MICROBE"], - "category": "animals_and_nature", - "lib": { - "name": "MICROBE", - "unified": "1F9A0", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f9a0.png", - "sheet_x": 43, - "sheet_y": 28, - "short_name": "microbe", - "short_names": ["microbe"], - "text": null, - "texts": null, - "category": "Animals & Nature", - "sort_order": 102, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - } - }, - "fleur_de_lis": { - "char": "\u269c\ufe0f", - "key": "fleur_de_lis", - "keywords": ["fleur_de_lis", ""], - "category": "symbols", - "lib": { - "name": null, - "unified": "269C-FE0F", - "non_qualified": "269C", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "269c-fe0f.png", - "sheet_x": 50, - "sheet_y": 10, - "short_name": "fleur_de_lis", - "short_names": ["fleur_de_lis"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 102, - "added_in": "4.1", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "flag-gt": { - "char": "\ud83c\uddec\ud83c\uddf9", - "key": "flag-gt", - "keywords": ["flag-gt", "Guatemala Flag"], - "category": "flags", - "lib": { - "name": "Guatemala Flag", - "unified": "1F1EC-1F1F9", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1ec-1f1f9.png", - "sheet_x": 2, - "sheet_y": 20, - "short_name": "flag-gt", - "short_names": ["flag-gt"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 103, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "bouquet": { - "char": "\ud83d\udc90", - "key": "bouquet", - "keywords": ["bouquet", "BOUQUET"], - "category": "animals_and_nature", - "lib": { - "name": "BOUQUET", - "unified": "1F490", - "non_qualified": null, - "docomo": null, - "au": "EA95", - "softbank": "E306", - "google": "FE828", - "image": "1f490.png", - "sheet_x": 25, - "sheet_y": 14, - "short_name": "bouquet", - "short_names": ["bouquet"], - "text": null, - "texts": null, - "category": "Animals & Nature", - "sort_order": 103, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "trident": { - "char": "\ud83d\udd31", - "key": "trident", - "keywords": ["trident", "TRIDENT EMBLEM"], - "category": "symbols", - "lib": { - "name": "TRIDENT EMBLEM", - "unified": "1F531", - "non_qualified": null, - "docomo": "E71A", - "au": "E5C9", - "softbank": "E031", - "google": "FE4D2", - "image": "1f531.png", - "sheet_x": 28, - "sheet_y": 20, - "short_name": "trident", - "short_names": ["trident"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 103, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "lower_left_ballpoint_pen": { - "char": "\ud83d\udd8a\ufe0f", - "key": "lower_left_ballpoint_pen", - "keywords": ["lower_left_ballpoint_pen", ""], - "category": "objects", - "lib": { - "name": null, - "unified": "1F58A-FE0F", - "non_qualified": "1F58A", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f58a-fe0f.png", - "sheet_x": 29, - "sheet_y": 48, - "short_name": "lower_left_ballpoint_pen", - "short_names": ["lower_left_ballpoint_pen"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 103, - "added_in": "7.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "smile_cat": { - "char": "\ud83d\ude38", - "key": "smile_cat", - "keywords": ["smile_cat", "GRINNING CAT FACE WITH SMILING EYES"], - "category": "people", - "lib": { - "name": "GRINNING CAT FACE WITH SMILING EYES", - "unified": "1F638", - "non_qualified": null, - "docomo": "E753", - "au": "EB7F", - "softbank": null, - "google": "FE349", - "image": "1f638.png", - "sheet_x": 31, - "sheet_y": 46, - "short_name": "smile_cat", - "short_names": ["smile_cat"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 103, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "octagonal_sign": { - "char": "\ud83d\uded1", - "key": "octagonal_sign", - "keywords": ["octagonal_sign", "OCTAGONAL SIGN"], - "category": "travel_and_places", - "lib": { - "name": "OCTAGONAL SIGN", - "unified": "1F6D1", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f6d1.png", - "sheet_x": 37, - "sheet_y": 18, - "short_name": "octagonal_sign", - "short_names": ["octagonal_sign"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 103, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "chopsticks": { - "char": "\ud83e\udd62", - "key": "chopsticks", - "keywords": ["chopsticks", "CHOPSTICKS"], - "category": "food_and_drink", - "lib": { - "name": "CHOPSTICKS", - "unified": "1F962", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f962.png", - "sheet_x": 42, - "sheet_y": 25, - "short_name": "chopsticks", - "short_names": ["chopsticks"], - "text": null, - "texts": null, - "category": "Food & Drink", - "sort_order": 103, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "flag-gu": { - "char": "\ud83c\uddec\ud83c\uddfa", - "key": "flag-gu", - "keywords": ["flag-gu", "Guam Flag"], - "category": "flags", - "lib": { - "name": "Guam Flag", - "unified": "1F1EC-1F1FA", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1ec-1f1fa.png", - "sheet_x": 2, - "sheet_y": 21, - "short_name": "flag-gu", - "short_names": ["flag-gu"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 104, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "cherry_blossom": { - "char": "\ud83c\udf38", - "key": "cherry_blossom", - "keywords": ["cherry_blossom", "CHERRY BLOSSOM"], - "category": "animals_and_nature", - "lib": { - "name": "CHERRY BLOSSOM", - "unified": "1F338", - "non_qualified": null, - "docomo": "E748", - "au": "E4CA", - "softbank": "E030", - "google": "FE040", - "image": "1f338.png", - "sheet_x": 6, - "sheet_y": 40, - "short_name": "cherry_blossom", - "short_names": ["cherry_blossom"], - "text": null, - "texts": null, - "category": "Animals & Nature", - "sort_order": 104, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "knife_fork_plate": { - "char": "\ud83c\udf7d\ufe0f", - "key": "knife_fork_plate", - "keywords": ["knife_fork_plate", ""], - "category": "food_and_drink", - "lib": { - "name": null, - "unified": "1F37D-FE0F", - "non_qualified": "1F37D", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f37d-fe0f.png", - "sheet_x": 8, - "sheet_y": 3, - "short_name": "knife_fork_plate", - "short_names": ["knife_fork_plate"], - "text": null, - "texts": null, - "category": "Food & Drink", - "sort_order": 104, - "added_in": "7.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "name_badge": { - "char": "\ud83d\udcdb", - "key": "name_badge", - "keywords": ["name_badge", "NAME BADGE"], - "category": "symbols", - "lib": { - "name": "NAME BADGE", - "unified": "1F4DB", - "non_qualified": null, - "docomo": null, - "au": "E51D", - "softbank": null, - "google": "FE504", - "image": "1f4db.png", - "sheet_x": 26, - "sheet_y": 41, - "short_name": "name_badge", - "short_names": ["name_badge"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 104, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "lower_left_paintbrush": { - "char": "\ud83d\udd8c\ufe0f", - "key": "lower_left_paintbrush", - "keywords": ["lower_left_paintbrush", ""], - "category": "objects", - "lib": { - "name": null, - "unified": "1F58C-FE0F", - "non_qualified": "1F58C", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f58c-fe0f.png", - "sheet_x": 29, - "sheet_y": 50, - "short_name": "lower_left_paintbrush", - "short_names": ["lower_left_paintbrush"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 104, - "added_in": "7.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "joy_cat": { - "char": "\ud83d\ude39", - "key": "joy_cat", - "keywords": ["joy_cat", "CAT FACE WITH TEARS OF JOY"], - "category": "people", - "lib": { - "name": "CAT FACE WITH TEARS OF JOY", - "unified": "1F639", - "non_qualified": null, - "docomo": "E72A", - "au": "EB63", - "softbank": null, - "google": "FE34A", - "image": "1f639.png", - "sheet_x": 31, - "sheet_y": 47, - "short_name": "joy_cat", - "short_names": ["joy_cat"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 104, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "construction": { - "char": "\ud83d\udea7", - "key": "construction", - "keywords": ["construction", "CONSTRUCTION SIGN"], - "category": "travel_and_places", - "lib": { - "name": "CONSTRUCTION SIGN", - "unified": "1F6A7", - "non_qualified": null, - "docomo": null, - "au": "E5D7", - "softbank": "E137", - "google": "FE7F8", - "image": "1f6a7.png", - "sheet_x": 35, - "sheet_y": 26, - "short_name": "construction", - "short_names": ["construction"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 104, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-gw": { - "char": "\ud83c\uddec\ud83c\uddfc", - "key": "flag-gw", - "keywords": ["flag-gw", "Guinea-Bissau Flag"], - "category": "flags", - "lib": { - "name": "Guinea-Bissau Flag", - "unified": "1F1EC-1F1FC", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1ec-1f1fc.png", - "sheet_x": 2, - "sheet_y": 22, - "short_name": "flag-gw", - "short_names": ["flag-gw"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 105, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "fork_and_knife": { - "char": "\ud83c\udf74", - "key": "fork_and_knife", - "keywords": ["fork_and_knife", "FORK AND KNIFE"], - "category": "food_and_drink", - "lib": { - "name": "FORK AND KNIFE", - "unified": "1F374", - "non_qualified": null, - "docomo": "E66F", - "au": "E4AC", - "softbank": "E043", - "google": "FE980", - "image": "1f374.png", - "sheet_x": 7, - "sheet_y": 47, - "short_name": "fork_and_knife", - "short_names": ["fork_and_knife"], - "text": null, - "texts": null, - "category": "Food & Drink", - "sort_order": 105, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "white_flower": { - "char": "\ud83d\udcae", - "key": "white_flower", - "keywords": ["white_flower", "WHITE FLOWER"], - "category": "animals_and_nature", - "lib": { - "name": "WHITE FLOWER", - "unified": "1F4AE", - "non_qualified": null, - "docomo": null, - "au": "E4F0", - "softbank": null, - "google": "FEB7A", - "image": "1f4ae.png", - "sheet_x": 25, - "sheet_y": 49, - "short_name": "white_flower", - "short_names": ["white_flower"], - "text": null, - "texts": null, - "category": "Animals & Nature", - "sort_order": 105, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "beginner": { - "char": "\ud83d\udd30", - "key": "beginner", - "keywords": ["beginner", "JAPANESE SYMBOL FOR BEGINNER"], - "category": "symbols", - "lib": { - "name": "JAPANESE SYMBOL FOR BEGINNER", - "unified": "1F530", - "non_qualified": null, - "docomo": null, - "au": "E480", - "softbank": "E209", - "google": "FE044", - "image": "1f530.png", - "sheet_x": 28, - "sheet_y": 19, - "short_name": "beginner", - "short_names": ["beginner"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 105, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "lower_left_crayon": { - "char": "\ud83d\udd8d\ufe0f", - "key": "lower_left_crayon", - "keywords": ["lower_left_crayon", ""], - "category": "objects", - "lib": { - "name": null, - "unified": "1F58D-FE0F", - "non_qualified": "1F58D", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f58d-fe0f.png", - "sheet_x": 29, - "sheet_y": 51, - "short_name": "lower_left_crayon", - "short_names": ["lower_left_crayon"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 105, - "added_in": "7.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "heart_eyes_cat": { - "char": "\ud83d\ude3b", - "key": "heart_eyes_cat", - "keywords": ["heart_eyes_cat", "SMILING CAT FACE WITH HEART-SHAPED EYES"], - "category": "people", - "lib": { - "name": "SMILING CAT FACE WITH HEART-SHAPED EYES", - "unified": "1F63B", - "non_qualified": null, - "docomo": "E726", - "au": "EB65", - "softbank": null, - "google": "FE34C", - "image": "1f63b.png", - "sheet_x": 31, - "sheet_y": 49, - "short_name": "heart_eyes_cat", - "short_names": ["heart_eyes_cat"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 105, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "anchor": { - "char": "\u2693", - "key": "anchor", - "keywords": ["anchor", "ANCHOR"], - "category": "travel_and_places", - "lib": { - "name": "ANCHOR", - "unified": "2693", - "non_qualified": null, - "docomo": "E661", - "au": "E4A9", - "softbank": null, - "google": "FE4C1", - "image": "2693.png", - "sheet_x": 50, - "sheet_y": 3, - "short_name": "anchor", - "short_names": ["anchor"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 105, - "added_in": "4.1", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-gy": { - "char": "\ud83c\uddec\ud83c\uddfe", - "key": "flag-gy", - "keywords": ["flag-gy", "Guyana Flag"], - "category": "flags", - "lib": { - "name": "Guyana Flag", - "unified": "1F1EC-1F1FE", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1ec-1f1fe.png", - "sheet_x": 2, - "sheet_y": 23, - "short_name": "flag-gy", - "short_names": ["flag-gy"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 106, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "rosette": { - "char": "\ud83c\udff5\ufe0f", - "key": "rosette", - "keywords": ["rosette", ""], - "category": "animals_and_nature", - "lib": { - "name": null, - "unified": "1F3F5-FE0F", - "non_qualified": "1F3F5", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f3f5-fe0f.png", - "sheet_x": 12, - "sheet_y": 9, - "short_name": "rosette", - "short_names": ["rosette"], - "text": null, - "texts": null, - "category": "Animals & Nature", - "sort_order": 106, - "added_in": "7.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "memo": { - "char": "\ud83d\udcdd", - "key": "memo", - "keywords": ["memo", "MEMO"], - "category": "objects", - "lib": { - "name": "MEMO", - "unified": "1F4DD", - "non_qualified": null, - "docomo": "E689", - "au": "EA92", - "softbank": "E301", - "google": "FE527", - "image": "1f4dd.png", - "sheet_x": 26, - "sheet_y": 43, - "short_name": "memo", - "short_names": ["memo", "pencil"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 106, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "smirk_cat": { - "char": "\ud83d\ude3c", - "key": "smirk_cat", - "keywords": ["smirk_cat", "CAT FACE WITH WRY SMILE"], - "category": "people", - "lib": { - "name": "CAT FACE WITH WRY SMILE", - "unified": "1F63C", - "non_qualified": null, - "docomo": "E753", - "au": "EB6A", - "softbank": null, - "google": "FE34F", - "image": "1f63c.png", - "sheet_x": 31, - "sheet_y": 50, - "short_name": "smirk_cat", - "short_names": ["smirk_cat"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 106, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "spoon": { - "char": "\ud83e\udd44", - "key": "spoon", - "keywords": ["spoon", "SPOON"], - "category": "food_and_drink", - "lib": { - "name": "SPOON", - "unified": "1F944", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f944.png", - "sheet_x": 41, - "sheet_y": 49, - "short_name": "spoon", - "short_names": ["spoon"], - "text": null, - "texts": null, - "category": "Food & Drink", - "sort_order": 106, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "boat": { - "char": "\u26f5", - "key": "boat", - "keywords": ["boat", "SAILBOAT"], - "category": "travel_and_places", - "lib": { - "name": "SAILBOAT", - "unified": "26F5", - "non_qualified": null, - "docomo": "E6A3", - "au": "E4B4", - "softbank": "E01C", - "google": "FE7EA", - "image": "26f5.png", - "sheet_x": 50, - "sheet_y": 34, - "short_name": "boat", - "short_names": ["boat", "sailboat"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 106, - "added_in": "5.2", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "o": { - "char": "\u2b55", - "key": "o", - "keywords": ["o", "HEAVY LARGE CIRCLE"], - "category": "symbols", - "lib": { - "name": "HEAVY LARGE CIRCLE", - "unified": "2B55", - "non_qualified": null, - "docomo": "E6A0", - "au": "EAAD", - "softbank": "E332", - "google": "FEB44", - "image": "2b55.png", - "sheet_x": 52, - "sheet_y": 12, - "short_name": "o", - "short_names": ["o"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 106, - "added_in": "5.2", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-hk": { - "char": "\ud83c\udded\ud83c\uddf0", - "key": "flag-hk", - "keywords": ["flag-hk", "Hong Kong SAR China Flag"], - "category": "flags", - "lib": { - "name": "Hong Kong SAR China Flag", - "unified": "1F1ED-1F1F0", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1ed-1f1f0.png", - "sheet_x": 2, - "sheet_y": 24, - "short_name": "flag-hk", - "short_names": ["flag-hk"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 107, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "rose": { - "char": "\ud83c\udf39", - "key": "rose", - "keywords": ["rose", "ROSE"], - "category": "animals_and_nature", - "lib": { - "name": "ROSE", - "unified": "1F339", - "non_qualified": null, - "docomo": null, - "au": "E5BA", - "softbank": "E032", - "google": "FE041", - "image": "1f339.png", - "sheet_x": 6, - "sheet_y": 41, - "short_name": "rose", - "short_names": ["rose"], - "text": null, - "texts": null, - "category": "Animals & Nature", - "sort_order": 107, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "briefcase": { - "char": "\ud83d\udcbc", - "key": "briefcase", - "keywords": ["briefcase", "BRIEFCASE"], - "category": "objects", - "lib": { - "name": "BRIEFCASE", - "unified": "1F4BC", - "non_qualified": null, - "docomo": "E682", - "au": "E5CE", - "softbank": "E11E", - "google": "FE53B", - "image": "1f4bc.png", - "sheet_x": 26, - "sheet_y": 10, - "short_name": "briefcase", - "short_names": ["briefcase"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 107, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "hocho": { - "char": "\ud83d\udd2a", - "key": "hocho", - "keywords": ["hocho", "HOCHO"], - "category": "food_and_drink", - "lib": { - "name": "HOCHO", - "unified": "1F52A", - "non_qualified": null, - "docomo": null, - "au": "E57F", - "softbank": null, - "google": "FE4FA", - "image": "1f52a.png", - "sheet_x": 28, - "sheet_y": 13, - "short_name": "hocho", - "short_names": ["hocho", "knife"], - "text": null, - "texts": null, - "category": "Food & Drink", - "sort_order": 107, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "kissing_cat": { - "char": "\ud83d\ude3d", - "key": "kissing_cat", - "keywords": ["kissing_cat", "KISSING CAT FACE WITH CLOSED EYES"], - "category": "people", - "lib": { - "name": "KISSING CAT FACE WITH CLOSED EYES", - "unified": "1F63D", - "non_qualified": null, - "docomo": "E726", - "au": "EB60", - "softbank": null, - "google": "FE34B", - "image": "1f63d.png", - "sheet_x": 31, - "sheet_y": 51, - "short_name": "kissing_cat", - "short_names": ["kissing_cat"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 107, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "canoe": { - "char": "\ud83d\udef6", - "key": "canoe", - "keywords": ["canoe", "CANOE"], - "category": "travel_and_places", - "lib": { - "name": "CANOE", - "unified": "1F6F6", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f6f6.png", - "sheet_x": 37, - "sheet_y": 33, - "short_name": "canoe", - "short_names": ["canoe"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 107, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "white_check_mark": { - "char": "\u2705", - "key": "white_check_mark", - "keywords": ["white_check_mark", "WHITE HEAVY CHECK MARK"], - "category": "symbols", - "lib": { - "name": "WHITE HEAVY CHECK MARK", - "unified": "2705", - "non_qualified": null, - "docomo": null, - "au": "E55E", - "softbank": null, - "google": "FEB4A", - "image": "2705.png", - "sheet_x": 51, - "sheet_y": 5, - "short_name": "white_check_mark", - "short_names": ["white_check_mark"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 107, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-hm": { - "char": "\ud83c\udded\ud83c\uddf2", - "key": "flag-hm", - "keywords": ["flag-hm", "Heard & McDonald Islands Flag"], - "category": "flags", - "lib": { - "name": "Heard & McDonald Islands Flag", - "unified": "1F1ED-1F1F2", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1ed-1f1f2.png", - "sheet_x": 2, - "sheet_y": 25, - "short_name": "flag-hm", - "short_names": ["flag-hm"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 108, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "amphora": { - "char": "\ud83c\udffa", - "key": "amphora", - "keywords": ["amphora", "AMPHORA"], - "category": "food_and_drink", - "lib": { - "name": "AMPHORA", - "unified": "1F3FA", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f3fa.png", - "sheet_x": 12, - "sheet_y": 13, - "short_name": "amphora", - "short_names": ["amphora"], - "text": null, - "texts": null, - "category": "Food & Drink", - "sort_order": 108, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "file_folder": { - "char": "\ud83d\udcc1", - "key": "file_folder", - "keywords": ["file_folder", "FILE FOLDER"], - "category": "objects", - "lib": { - "name": "FILE FOLDER", - "unified": "1F4C1", - "non_qualified": null, - "docomo": null, - "au": "E58F", - "softbank": null, - "google": "FE543", - "image": "1f4c1.png", - "sheet_x": 26, - "sheet_y": 15, - "short_name": "file_folder", - "short_names": ["file_folder"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 108, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "scream_cat": { - "char": "\ud83d\ude40", - "key": "scream_cat", - "keywords": ["scream_cat", "WEARY CAT FACE"], - "category": "people", - "lib": { - "name": "WEARY CAT FACE", - "unified": "1F640", - "non_qualified": null, - "docomo": "E6F3", - "au": "EB66", - "softbank": null, - "google": "FE350", - "image": "1f640.png", - "sheet_x": 32, - "sheet_y": 1, - "short_name": "scream_cat", - "short_names": ["scream_cat"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 108, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "speedboat": { - "char": "\ud83d\udea4", - "key": "speedboat", - "keywords": ["speedboat", "SPEEDBOAT"], - "category": "travel_and_places", - "lib": { - "name": "SPEEDBOAT", - "unified": "1F6A4", - "non_qualified": null, - "docomo": "E6A3", - "au": "E4B4", - "softbank": "E135", - "google": "FE7EE", - "image": "1f6a4.png", - "sheet_x": 35, - "sheet_y": 23, - "short_name": "speedboat", - "short_names": ["speedboat"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 108, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "wilted_flower": { - "char": "\ud83e\udd40", - "key": "wilted_flower", - "keywords": ["wilted_flower", "WILTED FLOWER"], - "category": "animals_and_nature", - "lib": { - "name": "WILTED FLOWER", - "unified": "1F940", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f940.png", - "sheet_x": 41, - "sheet_y": 45, - "short_name": "wilted_flower", - "short_names": ["wilted_flower"], - "text": null, - "texts": null, - "category": "Animals & Nature", - "sort_order": 108, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "ballot_box_with_check": { - "char": "\u2611\ufe0f", - "key": "ballot_box_with_check", - "keywords": ["ballot_box_with_check", "BALLOT BOX WITH CHECK"], - "category": "symbols", - "lib": { - "name": "BALLOT BOX WITH CHECK", - "unified": "2611-FE0F", - "non_qualified": "2611", - "docomo": null, - "au": "EB02", - "softbank": null, - "google": "FEB8B", - "image": "2611-fe0f.png", - "sheet_x": 49, - "sheet_y": 12, - "short_name": "ballot_box_with_check", - "short_names": ["ballot_box_with_check"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 108, - "added_in": "1.1", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-hn": { - "char": "\ud83c\udded\ud83c\uddf3", - "key": "flag-hn", - "keywords": ["flag-hn", "Honduras Flag"], - "category": "flags", - "lib": { - "name": "Honduras Flag", - "unified": "1F1ED-1F1F3", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1ed-1f1f3.png", - "sheet_x": 2, - "sheet_y": 26, - "short_name": "flag-hn", - "short_names": ["flag-hn"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 109, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "hibiscus": { - "char": "\ud83c\udf3a", - "key": "hibiscus", - "keywords": ["hibiscus", "HIBISCUS"], - "category": "animals_and_nature", - "lib": { - "name": "HIBISCUS", - "unified": "1F33A", - "non_qualified": null, - "docomo": null, - "au": "EA94", - "softbank": "E303", - "google": "FE045", - "image": "1f33a.png", - "sheet_x": 6, - "sheet_y": 42, - "short_name": "hibiscus", - "short_names": ["hibiscus"], - "text": null, - "texts": null, - "category": "Animals & Nature", - "sort_order": 109, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "open_file_folder": { - "char": "\ud83d\udcc2", - "key": "open_file_folder", - "keywords": ["open_file_folder", "OPEN FILE FOLDER"], - "category": "objects", - "lib": { - "name": "OPEN FILE FOLDER", - "unified": "1F4C2", - "non_qualified": null, - "docomo": null, - "au": "E590", - "softbank": null, - "google": "FE544", - "image": "1f4c2.png", - "sheet_x": 26, - "sheet_y": 16, - "short_name": "open_file_folder", - "short_names": ["open_file_folder"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 109, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "crying_cat_face": { - "char": "\ud83d\ude3f", - "key": "crying_cat_face", - "keywords": ["crying_cat_face", "CRYING CAT FACE"], - "category": "people", - "lib": { - "name": "CRYING CAT FACE", - "unified": "1F63F", - "non_qualified": null, - "docomo": "E72E", - "au": "EB68", - "softbank": null, - "google": "FE34D", - "image": "1f63f.png", - "sheet_x": 32, - "sheet_y": 0, - "short_name": "crying_cat_face", - "short_names": ["crying_cat_face"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 109, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "passenger_ship": { - "char": "\ud83d\udef3\ufe0f", - "key": "passenger_ship", - "keywords": ["passenger_ship", ""], - "category": "travel_and_places", - "lib": { - "name": null, - "unified": "1F6F3-FE0F", - "non_qualified": "1F6F3", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f6f3-fe0f.png", - "sheet_x": 37, - "sheet_y": 30, - "short_name": "passenger_ship", - "short_names": ["passenger_ship"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 109, - "added_in": "7.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "heavy_check_mark": { - "char": "\u2714\ufe0f", - "key": "heavy_check_mark", - "keywords": ["heavy_check_mark", "HEAVY CHECK MARK"], - "category": "symbols", - "lib": { - "name": "HEAVY CHECK MARK", - "unified": "2714-FE0F", - "non_qualified": "2714", - "docomo": null, - "au": "E557", - "softbank": null, - "google": "FEB49", - "image": "2714-fe0f.png", - "sheet_x": 51, - "sheet_y": 34, - "short_name": "heavy_check_mark", - "short_names": ["heavy_check_mark"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 109, - "added_in": "1.1", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-hr": { - "char": "\ud83c\udded\ud83c\uddf7", - "key": "flag-hr", - "keywords": ["flag-hr", "Croatia Flag"], - "category": "flags", - "lib": { - "name": "Croatia Flag", - "unified": "1F1ED-1F1F7", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1ed-1f1f7.png", - "sheet_x": 2, - "sheet_y": 27, - "short_name": "flag-hr", - "short_names": ["flag-hr"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 110, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "sunflower": { - "char": "\ud83c\udf3b", - "key": "sunflower", - "keywords": ["sunflower", "SUNFLOWER"], - "category": "animals_and_nature", - "lib": { - "name": "SUNFLOWER", - "unified": "1F33B", - "non_qualified": null, - "docomo": null, - "au": "E4E3", - "softbank": "E305", - "google": "FE046", - "image": "1f33b.png", - "sheet_x": 6, - "sheet_y": 43, - "short_name": "sunflower", - "short_names": ["sunflower"], - "text": null, - "texts": null, - "category": "Animals & Nature", - "sort_order": 110, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "card_index_dividers": { - "char": "\ud83d\uddc2\ufe0f", - "key": "card_index_dividers", - "keywords": ["card_index_dividers", ""], - "category": "objects", - "lib": { - "name": null, - "unified": "1F5C2-FE0F", - "non_qualified": "1F5C2", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f5c2-fe0f.png", - "sheet_x": 30, - "sheet_y": 23, - "short_name": "card_index_dividers", - "short_names": ["card_index_dividers"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 110, - "added_in": "7.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "pouting_cat": { - "char": "\ud83d\ude3e", - "key": "pouting_cat", - "keywords": ["pouting_cat", "POUTING CAT FACE"], - "category": "people", - "lib": { - "name": "POUTING CAT FACE", - "unified": "1F63E", - "non_qualified": null, - "docomo": "E724", - "au": "EB5E", - "softbank": null, - "google": "FE34E", - "image": "1f63e.png", - "sheet_x": 31, - "sheet_y": 52, - "short_name": "pouting_cat", - "short_names": ["pouting_cat"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 110, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "ferry": { - "char": "\u26f4\ufe0f", - "key": "ferry", - "keywords": ["ferry", ""], - "category": "travel_and_places", - "lib": { - "name": null, - "unified": "26F4-FE0F", - "non_qualified": "26F4", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "26f4-fe0f.png", - "sheet_x": 50, - "sheet_y": 33, - "short_name": "ferry", - "short_names": ["ferry"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 110, - "added_in": "5.2", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "heavy_multiplication_x": { - "char": "\u2716\ufe0f", - "key": "heavy_multiplication_x", - "keywords": ["heavy_multiplication_x", "HEAVY MULTIPLICATION X"], - "category": "symbols", - "lib": { - "name": "HEAVY MULTIPLICATION X", - "unified": "2716-FE0F", - "non_qualified": "2716", - "docomo": null, - "au": "E54F", - "softbank": null, - "google": "FEB53", - "image": "2716-fe0f.png", - "sheet_x": 51, - "sheet_y": 35, - "short_name": "heavy_multiplication_x", - "short_names": ["heavy_multiplication_x"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 110, - "added_in": "1.1", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-ht": { - "char": "\ud83c\udded\ud83c\uddf9", - "key": "flag-ht", - "keywords": ["flag-ht", "Haiti Flag"], - "category": "flags", - "lib": { - "name": "Haiti Flag", - "unified": "1F1ED-1F1F9", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1ed-1f1f9.png", - "sheet_x": 2, - "sheet_y": 28, - "short_name": "flag-ht", - "short_names": ["flag-ht"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 111, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "blossom": { - "char": "\ud83c\udf3c", - "key": "blossom", - "keywords": ["blossom", "BLOSSOM"], - "category": "animals_and_nature", - "lib": { - "name": "BLOSSOM", - "unified": "1F33C", - "non_qualified": null, - "docomo": null, - "au": "EB49", - "softbank": null, - "google": "FE04D", - "image": "1f33c.png", - "sheet_x": 6, - "sheet_y": 44, - "short_name": "blossom", - "short_names": ["blossom"], - "text": null, - "texts": null, - "category": "Animals & Nature", - "sort_order": 111, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "date": { - "char": "\ud83d\udcc5", - "key": "date", - "keywords": ["date", "CALENDAR"], - "category": "objects", - "lib": { - "name": "CALENDAR", - "unified": "1F4C5", - "non_qualified": null, - "docomo": null, - "au": "E563", - "softbank": null, - "google": "FE542", - "image": "1f4c5.png", - "sheet_x": 26, - "sheet_y": 19, - "short_name": "date", - "short_names": ["date"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 111, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "see_no_evil": { - "char": "\ud83d\ude48", - "key": "see_no_evil", - "keywords": ["see_no_evil", "SEE-NO-EVIL MONKEY"], - "category": "people", - "lib": { - "name": "SEE-NO-EVIL MONKEY", - "unified": "1F648", - "non_qualified": null, - "docomo": null, - "au": "EB50", - "softbank": null, - "google": "FE354", - "image": "1f648.png", - "sheet_x": 33, - "sheet_y": 7, - "short_name": "see_no_evil", - "short_names": ["see_no_evil"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 111, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "motor_boat": { - "char": "\ud83d\udee5\ufe0f", - "key": "motor_boat", - "keywords": ["motor_boat", ""], - "category": "travel_and_places", - "lib": { - "name": null, - "unified": "1F6E5-FE0F", - "non_qualified": "1F6E5", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f6e5-fe0f.png", - "sheet_x": 37, - "sheet_y": 25, - "short_name": "motor_boat", - "short_names": ["motor_boat"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 111, - "added_in": "7.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "x": { - "char": "\u274c", - "key": "x", - "keywords": ["x", "CROSS MARK"], - "category": "symbols", - "lib": { - "name": "CROSS MARK", - "unified": "274C", - "non_qualified": null, - "docomo": null, - "au": "E550", - "softbank": "E333", - "google": "FEB45", - "image": "274c.png", - "sheet_x": 51, - "sheet_y": 43, - "short_name": "x", - "short_names": ["x"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 111, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-hu": { - "char": "\ud83c\udded\ud83c\uddfa", - "key": "flag-hu", - "keywords": ["flag-hu", "Hungary Flag"], - "category": "flags", - "lib": { - "name": "Hungary Flag", - "unified": "1F1ED-1F1FA", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1ed-1f1fa.png", - "sheet_x": 2, - "sheet_y": 29, - "short_name": "flag-hu", - "short_names": ["flag-hu"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 112, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "tulip": { - "char": "\ud83c\udf37", - "key": "tulip", - "keywords": ["tulip", "TULIP"], - "category": "animals_and_nature", - "lib": { - "name": "TULIP", - "unified": "1F337", - "non_qualified": null, - "docomo": "E743", - "au": "E4E4", - "softbank": "E304", - "google": "FE03D", - "image": "1f337.png", - "sheet_x": 6, - "sheet_y": 39, - "short_name": "tulip", - "short_names": ["tulip"], - "text": null, - "texts": null, - "category": "Animals & Nature", - "sort_order": 112, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "calendar": { - "char": "\ud83d\udcc6", - "key": "calendar", - "keywords": ["calendar", "TEAR-OFF CALENDAR"], - "category": "objects", - "lib": { - "name": "TEAR-OFF CALENDAR", - "unified": "1F4C6", - "non_qualified": null, - "docomo": null, - "au": "E56A", - "softbank": null, - "google": "FE549", - "image": "1f4c6.png", - "sheet_x": 26, - "sheet_y": 20, - "short_name": "calendar", - "short_names": ["calendar"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 112, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "hear_no_evil": { - "char": "\ud83d\ude49", - "key": "hear_no_evil", - "keywords": ["hear_no_evil", "HEAR-NO-EVIL MONKEY"], - "category": "people", - "lib": { - "name": "HEAR-NO-EVIL MONKEY", - "unified": "1F649", - "non_qualified": null, - "docomo": null, - "au": "EB52", - "softbank": null, - "google": "FE356", - "image": "1f649.png", - "sheet_x": 33, - "sheet_y": 8, - "short_name": "hear_no_evil", - "short_names": ["hear_no_evil"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 112, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "ship": { - "char": "\ud83d\udea2", - "key": "ship", - "keywords": ["ship", "SHIP"], - "category": "travel_and_places", - "lib": { - "name": "SHIP", - "unified": "1F6A2", - "non_qualified": null, - "docomo": "E661", - "au": "EA82", - "softbank": "E202", - "google": "FE7E8", - "image": "1f6a2.png", - "sheet_x": 35, - "sheet_y": 4, - "short_name": "ship", - "short_names": ["ship"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 112, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "negative_squared_cross_mark": { - "char": "\u274e", - "key": "negative_squared_cross_mark", - "keywords": ["negative_squared_cross_mark", "NEGATIVE SQUARED CROSS MARK"], - "category": "symbols", - "lib": { - "name": "NEGATIVE SQUARED CROSS MARK", - "unified": "274E", - "non_qualified": null, - "docomo": null, - "au": "E551", - "softbank": null, - "google": "FEB46", - "image": "274e.png", - "sheet_x": 51, - "sheet_y": 44, - "short_name": "negative_squared_cross_mark", - "short_names": ["negative_squared_cross_mark"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 112, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-ic": { - "char": "\ud83c\uddee\ud83c\udde8", - "key": "flag-ic", - "keywords": ["flag-ic", "Canary Islands Flag"], - "category": "flags", - "lib": { - "name": "Canary Islands Flag", - "unified": "1F1EE-1F1E8", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1ee-1f1e8.png", - "sheet_x": 2, - "sheet_y": 30, - "short_name": "flag-ic", - "short_names": ["flag-ic"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 113, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "seedling": { - "char": "\ud83c\udf31", - "key": "seedling", - "keywords": ["seedling", "SEEDLING"], - "category": "animals_and_nature", - "lib": { - "name": "SEEDLING", - "unified": "1F331", - "non_qualified": null, - "docomo": "E746", - "au": "EB7D", - "softbank": null, - "google": "FE03E", - "image": "1f331.png", - "sheet_x": 6, - "sheet_y": 33, - "short_name": "seedling", - "short_names": ["seedling"], - "text": null, - "texts": null, - "category": "Animals & Nature", - "sort_order": 113, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "spiral_note_pad": { - "char": "\ud83d\uddd2\ufe0f", - "key": "spiral_note_pad", - "keywords": ["spiral_note_pad", ""], - "category": "objects", - "lib": { - "name": null, - "unified": "1F5D2-FE0F", - "non_qualified": "1F5D2", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f5d2-fe0f.png", - "sheet_x": 30, - "sheet_y": 27, - "short_name": "spiral_note_pad", - "short_names": ["spiral_note_pad"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 113, - "added_in": "7.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "speak_no_evil": { - "char": "\ud83d\ude4a", - "key": "speak_no_evil", - "keywords": ["speak_no_evil", "SPEAK-NO-EVIL MONKEY"], - "category": "people", - "lib": { - "name": "SPEAK-NO-EVIL MONKEY", - "unified": "1F64A", - "non_qualified": null, - "docomo": null, - "au": "EB51", - "softbank": null, - "google": "FE355", - "image": "1f64a.png", - "sheet_x": 33, - "sheet_y": 9, - "short_name": "speak_no_evil", - "short_names": ["speak_no_evil"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 113, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "airplane": { - "char": "\u2708\ufe0f", - "key": "airplane", - "keywords": ["airplane", "AIRPLANE"], - "category": "travel_and_places", - "lib": { - "name": "AIRPLANE", - "unified": "2708-FE0F", - "non_qualified": "2708", - "docomo": "E662", - "au": "E4B3", - "softbank": "E01D", - "google": "FE7E9", - "image": "2708-fe0f.png", - "sheet_x": 51, - "sheet_y": 6, - "short_name": "airplane", - "short_names": ["airplane"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 113, - "added_in": "1.1", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "heavy_plus_sign": { - "char": "\u2795", - "key": "heavy_plus_sign", - "keywords": ["heavy_plus_sign", "HEAVY PLUS SIGN"], - "category": "symbols", - "lib": { - "name": "HEAVY PLUS SIGN", - "unified": "2795", - "non_qualified": null, - "docomo": null, - "au": "E53C", - "softbank": null, - "google": "FEB51", - "image": "2795.png", - "sheet_x": 51, - "sheet_y": 51, - "short_name": "heavy_plus_sign", - "short_names": ["heavy_plus_sign"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 113, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-id": { - "char": "\ud83c\uddee\ud83c\udde9", - "key": "flag-id", - "keywords": ["flag-id", "Indonesia Flag"], - "category": "flags", - "lib": { - "name": "Indonesia Flag", - "unified": "1F1EE-1F1E9", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1ee-1f1e9.png", - "sheet_x": 2, - "sheet_y": 31, - "short_name": "flag-id", - "short_names": ["flag-id"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 114, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "evergreen_tree": { - "char": "\ud83c\udf32", - "key": "evergreen_tree", - "keywords": ["evergreen_tree", "EVERGREEN TREE"], - "category": "animals_and_nature", - "lib": { - "name": "EVERGREEN TREE", - "unified": "1F332", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f332.png", - "sheet_x": 6, - "sheet_y": 34, - "short_name": "evergreen_tree", - "short_names": ["evergreen_tree"], - "text": null, - "texts": null, - "category": "Animals & Nature", - "sort_order": 114, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "baby": { - "char": "\ud83d\udc76", - "key": "baby", - "keywords": ["baby", "BABY"], - "category": "people", - "lib": { - "name": "BABY", - "unified": "1F476", - "non_qualified": null, - "docomo": null, - "au": "EB18", - "softbank": "E51A", - "google": "FE1A9", - "image": "1f476.png", - "sheet_x": 22, - "sheet_y": 37, - "short_name": "baby", - "short_names": ["baby"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 114, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true, - "skin_variations": { - "1F3FB": { - "unified": "1F476-1F3FB", - "non_qualified": null, - "image": "1f476-1f3fb.png", - "sheet_x": 22, - "sheet_y": 38, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FC": { - "unified": "1F476-1F3FC", - "non_qualified": null, - "image": "1f476-1f3fc.png", - "sheet_x": 22, - "sheet_y": 39, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FD": { - "unified": "1F476-1F3FD", - "non_qualified": null, - "image": "1f476-1f3fd.png", - "sheet_x": 22, - "sheet_y": 40, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FE": { - "unified": "1F476-1F3FE", - "non_qualified": null, - "image": "1f476-1f3fe.png", - "sheet_x": 22, - "sheet_y": 41, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FF": { - "unified": "1F476-1F3FF", - "non_qualified": null, - "image": "1f476-1f3ff.png", - "sheet_x": 22, - "sheet_y": 42, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - } - } - }, - "spiral_calendar_pad": { - "char": "\ud83d\uddd3\ufe0f", - "key": "spiral_calendar_pad", - "keywords": ["spiral_calendar_pad", ""], - "category": "objects", - "lib": { - "name": null, - "unified": "1F5D3-FE0F", - "non_qualified": "1F5D3", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f5d3-fe0f.png", - "sheet_x": 30, - "sheet_y": 28, - "short_name": "spiral_calendar_pad", - "short_names": ["spiral_calendar_pad"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 114, - "added_in": "7.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "small_airplane": { - "char": "\ud83d\udee9\ufe0f", - "key": "small_airplane", - "keywords": ["small_airplane", ""], - "category": "travel_and_places", - "lib": { - "name": null, - "unified": "1F6E9-FE0F", - "non_qualified": "1F6E9", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f6e9-fe0f.png", - "sheet_x": 37, - "sheet_y": 26, - "short_name": "small_airplane", - "short_names": ["small_airplane"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 114, - "added_in": "7.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "heavy_minus_sign": { - "char": "\u2796", - "key": "heavy_minus_sign", - "keywords": ["heavy_minus_sign", "HEAVY MINUS SIGN"], - "category": "symbols", - "lib": { - "name": "HEAVY MINUS SIGN", - "unified": "2796", - "non_qualified": null, - "docomo": null, - "au": "E53D", - "softbank": null, - "google": "FEB52", - "image": "2796.png", - "sheet_x": 51, - "sheet_y": 52, - "short_name": "heavy_minus_sign", - "short_names": ["heavy_minus_sign"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 114, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-ie": { - "char": "\ud83c\uddee\ud83c\uddea", - "key": "flag-ie", - "keywords": ["flag-ie", "Ireland Flag"], - "category": "flags", - "lib": { - "name": "Ireland Flag", - "unified": "1F1EE-1F1EA", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1ee-1f1ea.png", - "sheet_x": 2, - "sheet_y": 32, - "short_name": "flag-ie", - "short_names": ["flag-ie"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 115, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "deciduous_tree": { - "char": "\ud83c\udf33", - "key": "deciduous_tree", - "keywords": ["deciduous_tree", "DECIDUOUS TREE"], - "category": "animals_and_nature", - "lib": { - "name": "DECIDUOUS TREE", - "unified": "1F333", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f333.png", - "sheet_x": 6, - "sheet_y": 35, - "short_name": "deciduous_tree", - "short_names": ["deciduous_tree"], - "text": null, - "texts": null, - "category": "Animals & Nature", - "sort_order": 115, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "card_index": { - "char": "\ud83d\udcc7", - "key": "card_index", - "keywords": ["card_index", "CARD INDEX"], - "category": "objects", - "lib": { - "name": "CARD INDEX", - "unified": "1F4C7", - "non_qualified": null, - "docomo": "E683", - "au": "E56C", - "softbank": null, - "google": "FE54D", - "image": "1f4c7.png", - "sheet_x": 26, - "sheet_y": 21, - "short_name": "card_index", - "short_names": ["card_index"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 115, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "airplane_departure": { - "char": "\ud83d\udeeb", - "key": "airplane_departure", - "keywords": ["airplane_departure", "AIRPLANE DEPARTURE"], - "category": "travel_and_places", - "lib": { - "name": "AIRPLANE DEPARTURE", - "unified": "1F6EB", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f6eb.png", - "sheet_x": 37, - "sheet_y": 27, - "short_name": "airplane_departure", - "short_names": ["airplane_departure"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 115, - "added_in": "7.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "child": { - "char": "\ud83e\uddd2", - "key": "child", - "keywords": ["child", "CHILD"], - "category": "people", - "lib": { - "name": "CHILD", - "unified": "1F9D2", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f9d2.png", - "sheet_x": 44, - "sheet_y": 26, - "short_name": "child", - "short_names": ["child"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 115, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F9D2-1F3FB", - "non_qualified": null, - "image": "1f9d2-1f3fb.png", - "sheet_x": 44, - "sheet_y": 27, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F9D2-1F3FC", - "non_qualified": null, - "image": "1f9d2-1f3fc.png", - "sheet_x": 44, - "sheet_y": 28, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F9D2-1F3FD", - "non_qualified": null, - "image": "1f9d2-1f3fd.png", - "sheet_x": 44, - "sheet_y": 29, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F9D2-1F3FE", - "non_qualified": null, - "image": "1f9d2-1f3fe.png", - "sheet_x": 44, - "sheet_y": 30, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F9D2-1F3FF", - "non_qualified": null, - "image": "1f9d2-1f3ff.png", - "sheet_x": 44, - "sheet_y": 31, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - } - } - }, - "heavy_division_sign": { - "char": "\u2797", - "key": "heavy_division_sign", - "keywords": ["heavy_division_sign", "HEAVY DIVISION SIGN"], - "category": "symbols", - "lib": { - "name": "HEAVY DIVISION SIGN", - "unified": "2797", - "non_qualified": null, - "docomo": null, - "au": "E554", - "softbank": null, - "google": "FEB54", - "image": "2797.png", - "sheet_x": 52, - "sheet_y": 0, - "short_name": "heavy_division_sign", - "short_names": ["heavy_division_sign"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 115, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-il": { - "char": "\ud83c\uddee\ud83c\uddf1", - "key": "flag-il", - "keywords": ["flag-il", "Israel Flag"], - "category": "flags", - "lib": { - "name": "Israel Flag", - "unified": "1F1EE-1F1F1", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1ee-1f1f1.png", - "sheet_x": 2, - "sheet_y": 33, - "short_name": "flag-il", - "short_names": ["flag-il"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 116, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "palm_tree": { - "char": "\ud83c\udf34", - "key": "palm_tree", - "keywords": ["palm_tree", "PALM TREE"], - "category": "animals_and_nature", - "lib": { - "name": "PALM TREE", - "unified": "1F334", - "non_qualified": null, - "docomo": null, - "au": "E4E2", - "softbank": "E307", - "google": "FE047", - "image": "1f334.png", - "sheet_x": 6, - "sheet_y": 36, - "short_name": "palm_tree", - "short_names": ["palm_tree"], - "text": null, - "texts": null, - "category": "Animals & Nature", - "sort_order": 116, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "boy": { - "char": "\ud83d\udc66", - "key": "boy", - "keywords": ["boy", "BOY"], - "category": "people", - "lib": { - "name": "BOY", - "unified": "1F466", - "non_qualified": null, - "docomo": "E6F0", - "au": "E4FC", - "softbank": "E001", - "google": "FE19B", - "image": "1f466.png", - "sheet_x": 15, - "sheet_y": 28, - "short_name": "boy", - "short_names": ["boy"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 116, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true, - "skin_variations": { - "1F3FB": { - "unified": "1F466-1F3FB", - "non_qualified": null, - "image": "1f466-1f3fb.png", - "sheet_x": 15, - "sheet_y": 29, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FC": { - "unified": "1F466-1F3FC", - "non_qualified": null, - "image": "1f466-1f3fc.png", - "sheet_x": 15, - "sheet_y": 30, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FD": { - "unified": "1F466-1F3FD", - "non_qualified": null, - "image": "1f466-1f3fd.png", - "sheet_x": 15, - "sheet_y": 31, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FE": { - "unified": "1F466-1F3FE", - "non_qualified": null, - "image": "1f466-1f3fe.png", - "sheet_x": 15, - "sheet_y": 32, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FF": { - "unified": "1F466-1F3FF", - "non_qualified": null, - "image": "1f466-1f3ff.png", - "sheet_x": 15, - "sheet_y": 33, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - } - } - }, - "chart_with_upwards_trend": { - "char": "\ud83d\udcc8", - "key": "chart_with_upwards_trend", - "keywords": ["chart_with_upwards_trend", "CHART WITH UPWARDS TREND"], - "category": "objects", - "lib": { - "name": "CHART WITH UPWARDS TREND", - "unified": "1F4C8", - "non_qualified": null, - "docomo": null, - "au": "E575", - "softbank": null, - "google": "FE54B", - "image": "1f4c8.png", - "sheet_x": 26, - "sheet_y": 22, - "short_name": "chart_with_upwards_trend", - "short_names": ["chart_with_upwards_trend"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 116, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "airplane_arriving": { - "char": "\ud83d\udeec", - "key": "airplane_arriving", - "keywords": ["airplane_arriving", "AIRPLANE ARRIVING"], - "category": "travel_and_places", - "lib": { - "name": "AIRPLANE ARRIVING", - "unified": "1F6EC", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f6ec.png", - "sheet_x": 37, - "sheet_y": 28, - "short_name": "airplane_arriving", - "short_names": ["airplane_arriving"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 116, - "added_in": "7.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "curly_loop": { - "char": "\u27b0", - "key": "curly_loop", - "keywords": ["curly_loop", "CURLY LOOP"], - "category": "symbols", - "lib": { - "name": "CURLY LOOP", - "unified": "27B0", - "non_qualified": null, - "docomo": "E70A", - "au": "EB31", - "softbank": null, - "google": "FEB08", - "image": "27b0.png", - "sheet_x": 52, - "sheet_y": 2, - "short_name": "curly_loop", - "short_names": ["curly_loop"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 116, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-im": { - "char": "\ud83c\uddee\ud83c\uddf2", - "key": "flag-im", - "keywords": ["flag-im", "Isle of Man Flag"], - "category": "flags", - "lib": { - "name": "Isle of Man Flag", - "unified": "1F1EE-1F1F2", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1ee-1f1f2.png", - "sheet_x": 2, - "sheet_y": 34, - "short_name": "flag-im", - "short_names": ["flag-im"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 117, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "cactus": { - "char": "\ud83c\udf35", - "key": "cactus", - "keywords": ["cactus", "CACTUS"], - "category": "animals_and_nature", - "lib": { - "name": "CACTUS", - "unified": "1F335", - "non_qualified": null, - "docomo": null, - "au": "EA96", - "softbank": "E308", - "google": "FE048", - "image": "1f335.png", - "sheet_x": 6, - "sheet_y": 37, - "short_name": "cactus", - "short_names": ["cactus"], - "text": null, - "texts": null, - "category": "Animals & Nature", - "sort_order": 117, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "girl": { - "char": "\ud83d\udc67", - "key": "girl", - "keywords": ["girl", "GIRL"], - "category": "people", - "lib": { - "name": "GIRL", - "unified": "1F467", - "non_qualified": null, - "docomo": "E6F0", - "au": "E4FA", - "softbank": "E002", - "google": "FE19C", - "image": "1f467.png", - "sheet_x": 15, - "sheet_y": 34, - "short_name": "girl", - "short_names": ["girl"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 117, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true, - "skin_variations": { - "1F3FB": { - "unified": "1F467-1F3FB", - "non_qualified": null, - "image": "1f467-1f3fb.png", - "sheet_x": 15, - "sheet_y": 35, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FC": { - "unified": "1F467-1F3FC", - "non_qualified": null, - "image": "1f467-1f3fc.png", - "sheet_x": 15, - "sheet_y": 36, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FD": { - "unified": "1F467-1F3FD", - "non_qualified": null, - "image": "1f467-1f3fd.png", - "sheet_x": 15, - "sheet_y": 37, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FE": { - "unified": "1F467-1F3FE", - "non_qualified": null, - "image": "1f467-1f3fe.png", - "sheet_x": 15, - "sheet_y": 38, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FF": { - "unified": "1F467-1F3FF", - "non_qualified": null, - "image": "1f467-1f3ff.png", - "sheet_x": 15, - "sheet_y": 39, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - } - } - }, - "seat": { - "char": "\ud83d\udcba", - "key": "seat", - "keywords": ["seat", "SEAT"], - "category": "travel_and_places", - "lib": { - "name": "SEAT", - "unified": "1F4BA", - "non_qualified": null, - "docomo": "E6B2", - "au": null, - "softbank": "E11F", - "google": "FE537", - "image": "1f4ba.png", - "sheet_x": 26, - "sheet_y": 8, - "short_name": "seat", - "short_names": ["seat"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 117, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "chart_with_downwards_trend": { - "char": "\ud83d\udcc9", - "key": "chart_with_downwards_trend", - "keywords": ["chart_with_downwards_trend", "CHART WITH DOWNWARDS TREND"], - "category": "objects", - "lib": { - "name": "CHART WITH DOWNWARDS TREND", - "unified": "1F4C9", - "non_qualified": null, - "docomo": null, - "au": "E576", - "softbank": null, - "google": "FE54C", - "image": "1f4c9.png", - "sheet_x": 26, - "sheet_y": 23, - "short_name": "chart_with_downwards_trend", - "short_names": ["chart_with_downwards_trend"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 117, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "loop": { - "char": "\u27bf", - "key": "loop", - "keywords": ["loop", "DOUBLE CURLY LOOP"], - "category": "symbols", - "lib": { - "name": "DOUBLE CURLY LOOP", - "unified": "27BF", - "non_qualified": null, - "docomo": "E6DF", - "au": null, - "softbank": "E211", - "google": "FE82B", - "image": "27bf.png", - "sheet_x": 52, - "sheet_y": 3, - "short_name": "loop", - "short_names": ["loop"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 117, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-in": { - "char": "\ud83c\uddee\ud83c\uddf3", - "key": "flag-in", - "keywords": ["flag-in", "India Flag"], - "category": "flags", - "lib": { - "name": "India Flag", - "unified": "1F1EE-1F1F3", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1ee-1f1f3.png", - "sheet_x": 2, - "sheet_y": 35, - "short_name": "flag-in", - "short_names": ["flag-in"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 118, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "ear_of_rice": { - "char": "\ud83c\udf3e", - "key": "ear_of_rice", - "keywords": ["ear_of_rice", "EAR OF RICE"], - "category": "animals_and_nature", - "lib": { - "name": "EAR OF RICE", - "unified": "1F33E", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": "E444", - "google": "FE049", - "image": "1f33e.png", - "sheet_x": 6, - "sheet_y": 46, - "short_name": "ear_of_rice", - "short_names": ["ear_of_rice"], - "text": null, - "texts": null, - "category": "Animals & Nature", - "sort_order": 118, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "bar_chart": { - "char": "\ud83d\udcca", - "key": "bar_chart", - "keywords": ["bar_chart", "BAR CHART"], - "category": "objects", - "lib": { - "name": "BAR CHART", - "unified": "1F4CA", - "non_qualified": null, - "docomo": null, - "au": "E574", - "softbank": null, - "google": "FE54A", - "image": "1f4ca.png", - "sheet_x": 26, - "sheet_y": 24, - "short_name": "bar_chart", - "short_names": ["bar_chart"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 118, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "helicopter": { - "char": "\ud83d\ude81", - "key": "helicopter", - "keywords": ["helicopter", "HELICOPTER"], - "category": "travel_and_places", - "lib": { - "name": "HELICOPTER", - "unified": "1F681", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f681.png", - "sheet_x": 34, - "sheet_y": 24, - "short_name": "helicopter", - "short_names": ["helicopter"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 118, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "adult": { - "char": "\ud83e\uddd1", - "key": "adult", - "keywords": ["adult", "ADULT"], - "category": "people", - "lib": { - "name": "ADULT", - "unified": "1F9D1", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f9d1.png", - "sheet_x": 44, - "sheet_y": 20, - "short_name": "adult", - "short_names": ["adult"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 118, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F9D1-1F3FB", - "non_qualified": null, - "image": "1f9d1-1f3fb.png", - "sheet_x": 44, - "sheet_y": 21, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F9D1-1F3FC", - "non_qualified": null, - "image": "1f9d1-1f3fc.png", - "sheet_x": 44, - "sheet_y": 22, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F9D1-1F3FD", - "non_qualified": null, - "image": "1f9d1-1f3fd.png", - "sheet_x": 44, - "sheet_y": 23, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F9D1-1F3FE", - "non_qualified": null, - "image": "1f9d1-1f3fe.png", - "sheet_x": 44, - "sheet_y": 24, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F9D1-1F3FF", - "non_qualified": null, - "image": "1f9d1-1f3ff.png", - "sheet_x": 44, - "sheet_y": 25, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - } - } - }, - "part_alternation_mark": { - "char": "\u303d\ufe0f", - "key": "part_alternation_mark", - "keywords": ["part_alternation_mark", "PART ALTERNATION MARK"], - "category": "symbols", - "lib": { - "name": "PART ALTERNATION MARK", - "unified": "303D-FE0F", - "non_qualified": "303D", - "docomo": null, - "au": null, - "softbank": "E12C", - "google": "FE81B", - "image": "303d-fe0f.png", - "sheet_x": 52, - "sheet_y": 14, - "short_name": "part_alternation_mark", - "short_names": ["part_alternation_mark"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 118, - "added_in": "3.2", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-io": { - "char": "\ud83c\uddee\ud83c\uddf4", - "key": "flag-io", - "keywords": ["flag-io", "British Indian Ocean Territory Flag"], - "category": "flags", - "lib": { - "name": "British Indian Ocean Territory Flag", - "unified": "1F1EE-1F1F4", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1ee-1f1f4.png", - "sheet_x": 2, - "sheet_y": 36, - "short_name": "flag-io", - "short_names": ["flag-io"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 119, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "herb": { - "char": "\ud83c\udf3f", - "key": "herb", - "keywords": ["herb", "HERB"], - "category": "animals_and_nature", - "lib": { - "name": "HERB", - "unified": "1F33F", - "non_qualified": null, - "docomo": "E741", - "au": "EB82", - "softbank": null, - "google": "FE04E", - "image": "1f33f.png", - "sheet_x": 6, - "sheet_y": 47, - "short_name": "herb", - "short_names": ["herb"], - "text": null, - "texts": null, - "category": "Animals & Nature", - "sort_order": 119, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "man": { - "char": "\ud83d\udc68", - "key": "man", - "keywords": ["man", "MAN"], - "category": "people", - "lib": { - "name": "MAN", - "unified": "1F468", - "non_qualified": null, - "docomo": "E6F0", - "au": "E4FC", - "softbank": "E004", - "google": "FE19D", - "image": "1f468.png", - "sheet_x": 18, - "sheet_y": 18, - "short_name": "man", - "short_names": ["man"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 119, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true, - "skin_variations": { - "1F3FB": { - "unified": "1F468-1F3FB", - "non_qualified": null, - "image": "1f468-1f3fb.png", - "sheet_x": 18, - "sheet_y": 19, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FC": { - "unified": "1F468-1F3FC", - "non_qualified": null, - "image": "1f468-1f3fc.png", - "sheet_x": 18, - "sheet_y": 20, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FD": { - "unified": "1F468-1F3FD", - "non_qualified": null, - "image": "1f468-1f3fd.png", - "sheet_x": 18, - "sheet_y": 21, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FE": { - "unified": "1F468-1F3FE", - "non_qualified": null, - "image": "1f468-1f3fe.png", - "sheet_x": 18, - "sheet_y": 22, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FF": { - "unified": "1F468-1F3FF", - "non_qualified": null, - "image": "1f468-1f3ff.png", - "sheet_x": 18, - "sheet_y": 23, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - } - } - }, - "clipboard": { - "char": "\ud83d\udccb", - "key": "clipboard", - "keywords": ["clipboard", "CLIPBOARD"], - "category": "objects", - "lib": { - "name": "CLIPBOARD", - "unified": "1F4CB", - "non_qualified": null, - "docomo": "E689", - "au": "E564", - "softbank": null, - "google": "FE548", - "image": "1f4cb.png", - "sheet_x": 26, - "sheet_y": 25, - "short_name": "clipboard", - "short_names": ["clipboard"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 119, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "suspension_railway": { - "char": "\ud83d\ude9f", - "key": "suspension_railway", - "keywords": ["suspension_railway", "SUSPENSION RAILWAY"], - "category": "travel_and_places", - "lib": { - "name": "SUSPENSION RAILWAY", - "unified": "1F69F", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f69f.png", - "sheet_x": 35, - "sheet_y": 1, - "short_name": "suspension_railway", - "short_names": ["suspension_railway"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 119, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "eight_spoked_asterisk": { - "char": "\u2733\ufe0f", - "key": "eight_spoked_asterisk", - "keywords": ["eight_spoked_asterisk", "EIGHT SPOKED ASTERISK"], - "category": "symbols", - "lib": { - "name": "EIGHT SPOKED ASTERISK", - "unified": "2733-FE0F", - "non_qualified": "2733", - "docomo": "E6F8", - "au": "E53E", - "softbank": "E206", - "google": "FEB62", - "image": "2733-fe0f.png", - "sheet_x": 51, - "sheet_y": 39, - "short_name": "eight_spoked_asterisk", - "short_names": ["eight_spoked_asterisk"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 119, - "added_in": "1.1", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-iq": { - "char": "\ud83c\uddee\ud83c\uddf6", - "key": "flag-iq", - "keywords": ["flag-iq", "Iraq Flag"], - "category": "flags", - "lib": { - "name": "Iraq Flag", - "unified": "1F1EE-1F1F6", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1ee-1f1f6.png", - "sheet_x": 2, - "sheet_y": 37, - "short_name": "flag-iq", - "short_names": ["flag-iq"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 120, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "woman": { - "char": "\ud83d\udc69", - "key": "woman", - "keywords": ["woman", "WOMAN"], - "category": "people", - "lib": { - "name": "WOMAN", - "unified": "1F469", - "non_qualified": null, - "docomo": "E6F0", - "au": "E4FA", - "softbank": "E005", - "google": "FE19E", - "image": "1f469.png", - "sheet_x": 20, - "sheet_y": 52, - "short_name": "woman", - "short_names": ["woman"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 120, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true, - "skin_variations": { - "1F3FB": { - "unified": "1F469-1F3FB", - "non_qualified": null, - "image": "1f469-1f3fb.png", - "sheet_x": 21, - "sheet_y": 0, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FC": { - "unified": "1F469-1F3FC", - "non_qualified": null, - "image": "1f469-1f3fc.png", - "sheet_x": 21, - "sheet_y": 1, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FD": { - "unified": "1F469-1F3FD", - "non_qualified": null, - "image": "1f469-1f3fd.png", - "sheet_x": 21, - "sheet_y": 2, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FE": { - "unified": "1F469-1F3FE", - "non_qualified": null, - "image": "1f469-1f3fe.png", - "sheet_x": 21, - "sheet_y": 3, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FF": { - "unified": "1F469-1F3FF", - "non_qualified": null, - "image": "1f469-1f3ff.png", - "sheet_x": 21, - "sheet_y": 4, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - } - } - }, - "pushpin": { - "char": "\ud83d\udccc", - "key": "pushpin", - "keywords": ["pushpin", "PUSHPIN"], - "category": "objects", - "lib": { - "name": "PUSHPIN", - "unified": "1F4CC", - "non_qualified": null, - "docomo": null, - "au": "E56D", - "softbank": null, - "google": "FE54E", - "image": "1f4cc.png", - "sheet_x": 26, - "sheet_y": 26, - "short_name": "pushpin", - "short_names": ["pushpin"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 120, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "mountain_cableway": { - "char": "\ud83d\udea0", - "key": "mountain_cableway", - "keywords": ["mountain_cableway", "MOUNTAIN CABLEWAY"], - "category": "travel_and_places", - "lib": { - "name": "MOUNTAIN CABLEWAY", - "unified": "1F6A0", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f6a0.png", - "sheet_x": 35, - "sheet_y": 2, - "short_name": "mountain_cableway", - "short_names": ["mountain_cableway"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 120, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "shamrock": { - "char": "\u2618\ufe0f", - "key": "shamrock", - "keywords": ["shamrock", ""], - "category": "animals_and_nature", - "lib": { - "name": null, - "unified": "2618-FE0F", - "non_qualified": "2618", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "2618-fe0f.png", - "sheet_x": 49, - "sheet_y": 15, - "short_name": "shamrock", - "short_names": ["shamrock"], - "text": null, - "texts": null, - "category": "Animals & Nature", - "sort_order": 120, - "added_in": "4.1", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "eight_pointed_black_star": { - "char": "\u2734\ufe0f", - "key": "eight_pointed_black_star", - "keywords": ["eight_pointed_black_star", "EIGHT POINTED BLACK STAR"], - "category": "symbols", - "lib": { - "name": "EIGHT POINTED BLACK STAR", - "unified": "2734-FE0F", - "non_qualified": "2734", - "docomo": "E6F8", - "au": "E479", - "softbank": "E205", - "google": "FEB61", - "image": "2734-fe0f.png", - "sheet_x": 51, - "sheet_y": 40, - "short_name": "eight_pointed_black_star", - "short_names": ["eight_pointed_black_star"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 120, - "added_in": "1.1", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-ir": { - "char": "\ud83c\uddee\ud83c\uddf7", - "key": "flag-ir", - "keywords": ["flag-ir", "Iran Flag"], - "category": "flags", - "lib": { - "name": "Iran Flag", - "unified": "1F1EE-1F1F7", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1ee-1f1f7.png", - "sheet_x": 2, - "sheet_y": 38, - "short_name": "flag-ir", - "short_names": ["flag-ir"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 121, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "four_leaf_clover": { - "char": "\ud83c\udf40", - "key": "four_leaf_clover", - "keywords": ["four_leaf_clover", "FOUR LEAF CLOVER"], - "category": "animals_and_nature", - "lib": { - "name": "FOUR LEAF CLOVER", - "unified": "1F340", - "non_qualified": null, - "docomo": "E741", - "au": "E513", - "softbank": "E110", - "google": "FE03C", - "image": "1f340.png", - "sheet_x": 6, - "sheet_y": 48, - "short_name": "four_leaf_clover", - "short_names": ["four_leaf_clover"], - "text": null, - "texts": null, - "category": "Animals & Nature", - "sort_order": 121, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "round_pushpin": { - "char": "\ud83d\udccd", - "key": "round_pushpin", - "keywords": ["round_pushpin", "ROUND PUSHPIN"], - "category": "objects", - "lib": { - "name": "ROUND PUSHPIN", - "unified": "1F4CD", - "non_qualified": null, - "docomo": null, - "au": "E560", - "softbank": null, - "google": "FE53F", - "image": "1f4cd.png", - "sheet_x": 26, - "sheet_y": 27, - "short_name": "round_pushpin", - "short_names": ["round_pushpin"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 121, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "aerial_tramway": { - "char": "\ud83d\udea1", - "key": "aerial_tramway", - "keywords": ["aerial_tramway", "AERIAL TRAMWAY"], - "category": "travel_and_places", - "lib": { - "name": "AERIAL TRAMWAY", - "unified": "1F6A1", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f6a1.png", - "sheet_x": 35, - "sheet_y": 3, - "short_name": "aerial_tramway", - "short_names": ["aerial_tramway"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 121, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "older_adult": { - "char": "\ud83e\uddd3", - "key": "older_adult", - "keywords": ["older_adult", "OLDER ADULT"], - "category": "people", - "lib": { - "name": "OLDER ADULT", - "unified": "1F9D3", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f9d3.png", - "sheet_x": 44, - "sheet_y": 32, - "short_name": "older_adult", - "short_names": ["older_adult"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 121, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F9D3-1F3FB", - "non_qualified": null, - "image": "1f9d3-1f3fb.png", - "sheet_x": 44, - "sheet_y": 33, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F9D3-1F3FC", - "non_qualified": null, - "image": "1f9d3-1f3fc.png", - "sheet_x": 44, - "sheet_y": 34, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F9D3-1F3FD", - "non_qualified": null, - "image": "1f9d3-1f3fd.png", - "sheet_x": 44, - "sheet_y": 35, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F9D3-1F3FE", - "non_qualified": null, - "image": "1f9d3-1f3fe.png", - "sheet_x": 44, - "sheet_y": 36, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F9D3-1F3FF", - "non_qualified": null, - "image": "1f9d3-1f3ff.png", - "sheet_x": 44, - "sheet_y": 37, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - } - } - }, - "sparkle": { - "char": "\u2747\ufe0f", - "key": "sparkle", - "keywords": ["sparkle", "SPARKLE"], - "category": "symbols", - "lib": { - "name": "SPARKLE", - "unified": "2747-FE0F", - "non_qualified": "2747", - "docomo": "E6FA", - "au": "E46C", - "softbank": null, - "google": "FEB77", - "image": "2747-fe0f.png", - "sheet_x": 51, - "sheet_y": 42, - "short_name": "sparkle", - "short_names": ["sparkle"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 121, - "added_in": "1.1", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-is": { - "char": "\ud83c\uddee\ud83c\uddf8", - "key": "flag-is", - "keywords": ["flag-is", "Iceland Flag"], - "category": "flags", - "lib": { - "name": "Iceland Flag", - "unified": "1F1EE-1F1F8", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1ee-1f1f8.png", - "sheet_x": 2, - "sheet_y": 39, - "short_name": "flag-is", - "short_names": ["flag-is"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 122, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "maple_leaf": { - "char": "\ud83c\udf41", - "key": "maple_leaf", - "keywords": ["maple_leaf", "MAPLE LEAF"], - "category": "animals_and_nature", - "lib": { - "name": "MAPLE LEAF", - "unified": "1F341", - "non_qualified": null, - "docomo": "E747", - "au": "E4CE", - "softbank": "E118", - "google": "FE03F", - "image": "1f341.png", - "sheet_x": 6, - "sheet_y": 49, - "short_name": "maple_leaf", - "short_names": ["maple_leaf"], - "text": null, - "texts": null, - "category": "Animals & Nature", - "sort_order": 122, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "older_man": { - "char": "\ud83d\udc74", - "key": "older_man", - "keywords": ["older_man", "OLDER MAN"], - "category": "people", - "lib": { - "name": "OLDER MAN", - "unified": "1F474", - "non_qualified": null, - "docomo": null, - "au": "EB16", - "softbank": "E518", - "google": "FE1A7", - "image": "1f474.png", - "sheet_x": 22, - "sheet_y": 25, - "short_name": "older_man", - "short_names": ["older_man"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 122, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true, - "skin_variations": { - "1F3FB": { - "unified": "1F474-1F3FB", - "non_qualified": null, - "image": "1f474-1f3fb.png", - "sheet_x": 22, - "sheet_y": 26, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FC": { - "unified": "1F474-1F3FC", - "non_qualified": null, - "image": "1f474-1f3fc.png", - "sheet_x": 22, - "sheet_y": 27, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FD": { - "unified": "1F474-1F3FD", - "non_qualified": null, - "image": "1f474-1f3fd.png", - "sheet_x": 22, - "sheet_y": 28, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FE": { - "unified": "1F474-1F3FE", - "non_qualified": null, - "image": "1f474-1f3fe.png", - "sheet_x": 22, - "sheet_y": 29, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FF": { - "unified": "1F474-1F3FF", - "non_qualified": null, - "image": "1f474-1f3ff.png", - "sheet_x": 22, - "sheet_y": 30, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - } - } - }, - "paperclip": { - "char": "\ud83d\udcce", - "key": "paperclip", - "keywords": ["paperclip", "PAPERCLIP"], - "category": "objects", - "lib": { - "name": "PAPERCLIP", - "unified": "1F4CE", - "non_qualified": null, - "docomo": "E730", - "au": "E4A0", - "softbank": null, - "google": "FE53A", - "image": "1f4ce.png", - "sheet_x": 26, - "sheet_y": 28, - "short_name": "paperclip", - "short_names": ["paperclip"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 122, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "satellite": { - "char": "\ud83d\udef0\ufe0f", - "key": "satellite", - "keywords": ["satellite", ""], - "category": "travel_and_places", - "lib": { - "name": null, - "unified": "1F6F0-FE0F", - "non_qualified": "1F6F0", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f6f0-fe0f.png", - "sheet_x": 37, - "sheet_y": 29, - "short_name": "satellite", - "short_names": ["satellite"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 122, - "added_in": "7.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "bangbang": { - "char": "\u203c\ufe0f", - "key": "bangbang", - "keywords": ["bangbang", "DOUBLE EXCLAMATION MARK"], - "category": "symbols", - "lib": { - "name": "DOUBLE EXCLAMATION MARK", - "unified": "203C-FE0F", - "non_qualified": "203C", - "docomo": "E704", - "au": "EB30", - "softbank": null, - "google": "FEB06", - "image": "203c-fe0f.png", - "sheet_x": 48, - "sheet_y": 20, - "short_name": "bangbang", - "short_names": ["bangbang"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 122, - "added_in": "1.1", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "it": { - "char": "\ud83c\uddee\ud83c\uddf9", - "key": "it", - "keywords": ["it", "Italy Flag"], - "category": "flags", - "lib": { - "name": "Italy Flag", - "unified": "1F1EE-1F1F9", - "non_qualified": null, - "docomo": null, - "au": "EB0F", - "softbank": "E50F", - "google": "FE4E9", - "image": "1f1ee-1f1f9.png", - "sheet_x": 2, - "sheet_y": 40, - "short_name": "it", - "short_names": ["it", "flag-it"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 123, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "fallen_leaf": { - "char": "\ud83c\udf42", - "key": "fallen_leaf", - "keywords": ["fallen_leaf", "FALLEN LEAF"], - "category": "animals_and_nature", - "lib": { - "name": "FALLEN LEAF", - "unified": "1F342", - "non_qualified": null, - "docomo": "E747", - "au": "E5CD", - "softbank": "E119", - "google": "FE042", - "image": "1f342.png", - "sheet_x": 6, - "sheet_y": 50, - "short_name": "fallen_leaf", - "short_names": ["fallen_leaf"], - "text": null, - "texts": null, - "category": "Animals & Nature", - "sort_order": 123, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "older_woman": { - "char": "\ud83d\udc75", - "key": "older_woman", - "keywords": ["older_woman", "OLDER WOMAN"], - "category": "people", - "lib": { - "name": "OLDER WOMAN", - "unified": "1F475", - "non_qualified": null, - "docomo": null, - "au": "EB17", - "softbank": "E519", - "google": "FE1A8", - "image": "1f475.png", - "sheet_x": 22, - "sheet_y": 31, - "short_name": "older_woman", - "short_names": ["older_woman"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 123, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true, - "skin_variations": { - "1F3FB": { - "unified": "1F475-1F3FB", - "non_qualified": null, - "image": "1f475-1f3fb.png", - "sheet_x": 22, - "sheet_y": 32, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FC": { - "unified": "1F475-1F3FC", - "non_qualified": null, - "image": "1f475-1f3fc.png", - "sheet_x": 22, - "sheet_y": 33, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FD": { - "unified": "1F475-1F3FD", - "non_qualified": null, - "image": "1f475-1f3fd.png", - "sheet_x": 22, - "sheet_y": 34, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FE": { - "unified": "1F475-1F3FE", - "non_qualified": null, - "image": "1f475-1f3fe.png", - "sheet_x": 22, - "sheet_y": 35, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FF": { - "unified": "1F475-1F3FF", - "non_qualified": null, - "image": "1f475-1f3ff.png", - "sheet_x": 22, - "sheet_y": 36, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - } - } - }, - "linked_paperclips": { - "char": "\ud83d\udd87\ufe0f", - "key": "linked_paperclips", - "keywords": ["linked_paperclips", ""], - "category": "objects", - "lib": { - "name": null, - "unified": "1F587-FE0F", - "non_qualified": "1F587", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f587-fe0f.png", - "sheet_x": 29, - "sheet_y": 47, - "short_name": "linked_paperclips", - "short_names": ["linked_paperclips"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 123, - "added_in": "7.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "rocket": { - "char": "\ud83d\ude80", - "key": "rocket", - "keywords": ["rocket", "ROCKET"], - "category": "travel_and_places", - "lib": { - "name": "ROCKET", - "unified": "1F680", - "non_qualified": null, - "docomo": null, - "au": "E5C8", - "softbank": "E10D", - "google": "FE7ED", - "image": "1f680.png", - "sheet_x": 34, - "sheet_y": 23, - "short_name": "rocket", - "short_names": ["rocket"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 123, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "interrobang": { - "char": "\u2049\ufe0f", - "key": "interrobang", - "keywords": ["interrobang", "EXCLAMATION QUESTION MARK"], - "category": "symbols", - "lib": { - "name": "EXCLAMATION QUESTION MARK", - "unified": "2049-FE0F", - "non_qualified": "2049", - "docomo": "E703", - "au": "EB2F", - "softbank": null, - "google": "FEB05", - "image": "2049-fe0f.png", - "sheet_x": 48, - "sheet_y": 21, - "short_name": "interrobang", - "short_names": ["interrobang"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 123, - "added_in": "3.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-je": { - "char": "\ud83c\uddef\ud83c\uddea", - "key": "flag-je", - "keywords": ["flag-je", "Jersey Flag"], - "category": "flags", - "lib": { - "name": "Jersey Flag", - "unified": "1F1EF-1F1EA", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1ef-1f1ea.png", - "sheet_x": 2, - "sheet_y": 41, - "short_name": "flag-je", - "short_names": ["flag-je"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 124, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "leaves": { - "char": "\ud83c\udf43", - "key": "leaves", - "keywords": ["leaves", "LEAF FLUTTERING IN WIND"], - "category": "animals_and_nature", - "lib": { - "name": "LEAF FLUTTERING IN WIND", - "unified": "1F343", - "non_qualified": null, - "docomo": null, - "au": "E5CD", - "softbank": "E447", - "google": "FE043", - "image": "1f343.png", - "sheet_x": 6, - "sheet_y": 51, - "short_name": "leaves", - "short_names": ["leaves"], - "text": null, - "texts": null, - "category": "Animals & Nature", - "sort_order": 124, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "male-doctor": { - "char": "\ud83d\udc68\u200d\u2695\ufe0f", - "key": "male-doctor", - "keywords": ["male-doctor", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F468-200D-2695-FE0F", - "non_qualified": "1F468-200D-2695", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f468-200d-2695-fe0f.png", - "sheet_x": 17, - "sheet_y": 51, - "short_name": "male-doctor", - "short_names": ["male-doctor"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 124, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F468-1F3FB-200D-2695-FE0F", - "non_qualified": "1F468-1F3FB-200D-2695", - "image": "1f468-1f3fb-200d-2695-fe0f.png", - "sheet_x": 17, - "sheet_y": 52, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F468-1F3FC-200D-2695-FE0F", - "non_qualified": "1F468-1F3FC-200D-2695", - "image": "1f468-1f3fc-200d-2695-fe0f.png", - "sheet_x": 18, - "sheet_y": 0, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F468-1F3FD-200D-2695-FE0F", - "non_qualified": "1F468-1F3FD-200D-2695", - "image": "1f468-1f3fd-200d-2695-fe0f.png", - "sheet_x": 18, - "sheet_y": 1, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F468-1F3FE-200D-2695-FE0F", - "non_qualified": "1F468-1F3FE-200D-2695", - "image": "1f468-1f3fe-200d-2695-fe0f.png", - "sheet_x": 18, - "sheet_y": 2, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F468-1F3FF-200D-2695-FE0F", - "non_qualified": "1F468-1F3FF-200D-2695", - "image": "1f468-1f3ff-200d-2695-fe0f.png", - "sheet_x": 18, - "sheet_y": 3, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - } - } - } - }, - "straight_ruler": { - "char": "\ud83d\udccf", - "key": "straight_ruler", - "keywords": ["straight_ruler", "STRAIGHT RULER"], - "category": "objects", - "lib": { - "name": "STRAIGHT RULER", - "unified": "1F4CF", - "non_qualified": null, - "docomo": null, - "au": "E570", - "softbank": null, - "google": "FE550", - "image": "1f4cf.png", - "sheet_x": 26, - "sheet_y": 29, - "short_name": "straight_ruler", - "short_names": ["straight_ruler"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 124, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flying_saucer": { - "char": "\ud83d\udef8", - "key": "flying_saucer", - "keywords": ["flying_saucer", "FLYING SAUCER"], - "category": "travel_and_places", - "lib": { - "name": "FLYING SAUCER", - "unified": "1F6F8", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f6f8.png", - "sheet_x": 37, - "sheet_y": 35, - "short_name": "flying_saucer", - "short_names": ["flying_saucer"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 124, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "question": { - "char": "\u2753", - "key": "question", - "keywords": ["question", "BLACK QUESTION MARK ORNAMENT"], - "category": "symbols", - "lib": { - "name": "BLACK QUESTION MARK ORNAMENT", - "unified": "2753", - "non_qualified": null, - "docomo": null, - "au": "E483", - "softbank": "E020", - "google": "FEB09", - "image": "2753.png", - "sheet_x": 51, - "sheet_y": 45, - "short_name": "question", - "short_names": ["question"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 124, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-jm": { - "char": "\ud83c\uddef\ud83c\uddf2", - "key": "flag-jm", - "keywords": ["flag-jm", "Jamaica Flag"], - "category": "flags", - "lib": { - "name": "Jamaica Flag", - "unified": "1F1EF-1F1F2", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1ef-1f1f2.png", - "sheet_x": 2, - "sheet_y": 42, - "short_name": "flag-jm", - "short_names": ["flag-jm"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 125, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "female-doctor": { - "char": "\ud83d\udc69\u200d\u2695\ufe0f", - "key": "female-doctor", - "keywords": ["female-doctor", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F469-200D-2695-FE0F", - "non_qualified": "1F469-200D-2695", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f469-200d-2695-fe0f.png", - "sheet_x": 20, - "sheet_y": 30, - "short_name": "female-doctor", - "short_names": ["female-doctor"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 125, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F469-1F3FB-200D-2695-FE0F", - "non_qualified": "1F469-1F3FB-200D-2695", - "image": "1f469-1f3fb-200d-2695-fe0f.png", - "sheet_x": 20, - "sheet_y": 31, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F469-1F3FC-200D-2695-FE0F", - "non_qualified": "1F469-1F3FC-200D-2695", - "image": "1f469-1f3fc-200d-2695-fe0f.png", - "sheet_x": 20, - "sheet_y": 32, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F469-1F3FD-200D-2695-FE0F", - "non_qualified": "1F469-1F3FD-200D-2695", - "image": "1f469-1f3fd-200d-2695-fe0f.png", - "sheet_x": 20, - "sheet_y": 33, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F469-1F3FE-200D-2695-FE0F", - "non_qualified": "1F469-1F3FE-200D-2695", - "image": "1f469-1f3fe-200d-2695-fe0f.png", - "sheet_x": 20, - "sheet_y": 34, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F469-1F3FF-200D-2695-FE0F", - "non_qualified": "1F469-1F3FF-200D-2695", - "image": "1f469-1f3ff-200d-2695-fe0f.png", - "sheet_x": 20, - "sheet_y": 35, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - } - } - } - }, - "triangular_ruler": { - "char": "\ud83d\udcd0", - "key": "triangular_ruler", - "keywords": ["triangular_ruler", "TRIANGULAR RULER"], - "category": "objects", - "lib": { - "name": "TRIANGULAR RULER", - "unified": "1F4D0", - "non_qualified": null, - "docomo": null, - "au": "E4A2", - "softbank": null, - "google": "FE551", - "image": "1f4d0.png", - "sheet_x": 26, - "sheet_y": 30, - "short_name": "triangular_ruler", - "short_names": ["triangular_ruler"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 125, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "bellhop_bell": { - "char": "\ud83d\udece\ufe0f", - "key": "bellhop_bell", - "keywords": ["bellhop_bell", ""], - "category": "travel_and_places", - "lib": { - "name": null, - "unified": "1F6CE-FE0F", - "non_qualified": "1F6CE", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f6ce-fe0f.png", - "sheet_x": 37, - "sheet_y": 15, - "short_name": "bellhop_bell", - "short_names": ["bellhop_bell"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 125, - "added_in": "7.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "grey_question": { - "char": "\u2754", - "key": "grey_question", - "keywords": ["grey_question", "WHITE QUESTION MARK ORNAMENT"], - "category": "symbols", - "lib": { - "name": "WHITE QUESTION MARK ORNAMENT", - "unified": "2754", - "non_qualified": null, - "docomo": null, - "au": "E483", - "softbank": "E336", - "google": "FEB0A", - "image": "2754.png", - "sheet_x": 51, - "sheet_y": 46, - "short_name": "grey_question", - "short_names": ["grey_question"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 125, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-jo": { - "char": "\ud83c\uddef\ud83c\uddf4", - "key": "flag-jo", - "keywords": ["flag-jo", "Jordan Flag"], - "category": "flags", - "lib": { - "name": "Jordan Flag", - "unified": "1F1EF-1F1F4", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1ef-1f1f4.png", - "sheet_x": 2, - "sheet_y": 43, - "short_name": "flag-jo", - "short_names": ["flag-jo"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 126, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "male-student": { - "char": "\ud83d\udc68\u200d\ud83c\udf93", - "key": "male-student", - "keywords": ["male-student", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F468-200D-1F393", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f468-200d-1f393.png", - "sheet_x": 15, - "sheet_y": 52, - "short_name": "male-student", - "short_names": ["male-student"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 126, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F468-1F3FB-200D-1F393", - "non_qualified": null, - "image": "1f468-1f3fb-200d-1f393.png", - "sheet_x": 16, - "sheet_y": 0, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F468-1F3FC-200D-1F393", - "non_qualified": null, - "image": "1f468-1f3fc-200d-1f393.png", - "sheet_x": 16, - "sheet_y": 1, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F468-1F3FD-200D-1F393", - "non_qualified": null, - "image": "1f468-1f3fd-200d-1f393.png", - "sheet_x": 16, - "sheet_y": 2, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F468-1F3FE-200D-1F393", - "non_qualified": null, - "image": "1f468-1f3fe-200d-1f393.png", - "sheet_x": 16, - "sheet_y": 3, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F468-1F3FF-200D-1F393", - "non_qualified": null, - "image": "1f468-1f3ff-200d-1f393.png", - "sheet_x": 16, - "sheet_y": 4, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - } - } - }, - "luggage": { - "char": "\ud83e\uddf3", - "key": "luggage", - "keywords": ["luggage", "LUGGAGE"], - "category": "travel_and_places", - "lib": { - "name": "LUGGAGE", - "unified": "1F9F3", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f9f3.png", - "sheet_x": 48, - "sheet_y": 7, - "short_name": "luggage", - "short_names": ["luggage"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 126, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - } - }, - "scissors": { - "char": "\u2702\ufe0f", - "key": "scissors", - "keywords": ["scissors", "BLACK SCISSORS"], - "category": "objects", - "lib": { - "name": "BLACK SCISSORS", - "unified": "2702-FE0F", - "non_qualified": "2702", - "docomo": "E675", - "au": "E516", - "softbank": "E313", - "google": "FE53E", - "image": "2702-fe0f.png", - "sheet_x": 51, - "sheet_y": 4, - "short_name": "scissors", - "short_names": ["scissors"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 126, - "added_in": "1.1", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "grey_exclamation": { - "char": "\u2755", - "key": "grey_exclamation", - "keywords": ["grey_exclamation", "WHITE EXCLAMATION MARK ORNAMENT"], - "category": "symbols", - "lib": { - "name": "WHITE EXCLAMATION MARK ORNAMENT", - "unified": "2755", - "non_qualified": null, - "docomo": "E702", - "au": "E482", - "softbank": "E337", - "google": "FEB0B", - "image": "2755.png", - "sheet_x": 51, - "sheet_y": 47, - "short_name": "grey_exclamation", - "short_names": ["grey_exclamation"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 126, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "jp": { - "char": "\ud83c\uddef\ud83c\uddf5", - "key": "jp", - "keywords": ["jp", "Japan Flag"], - "category": "flags", - "lib": { - "name": "Japan Flag", - "unified": "1F1EF-1F1F5", - "non_qualified": null, - "docomo": null, - "au": "E4CC", - "softbank": "E50B", - "google": "FE4E5", - "image": "1f1ef-1f1f5.png", - "sheet_x": 2, - "sheet_y": 44, - "short_name": "jp", - "short_names": ["jp", "flag-jp"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 127, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "female-student": { - "char": "\ud83d\udc69\u200d\ud83c\udf93", - "key": "female-student", - "keywords": ["female-student", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F469-200D-1F393", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f469-200d-1f393.png", - "sheet_x": 18, - "sheet_y": 36, - "short_name": "female-student", - "short_names": ["female-student"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 127, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F469-1F3FB-200D-1F393", - "non_qualified": null, - "image": "1f469-1f3fb-200d-1f393.png", - "sheet_x": 18, - "sheet_y": 37, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F469-1F3FC-200D-1F393", - "non_qualified": null, - "image": "1f469-1f3fc-200d-1f393.png", - "sheet_x": 18, - "sheet_y": 38, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F469-1F3FD-200D-1F393", - "non_qualified": null, - "image": "1f469-1f3fd-200d-1f393.png", - "sheet_x": 18, - "sheet_y": 39, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F469-1F3FE-200D-1F393", - "non_qualified": null, - "image": "1f469-1f3fe-200d-1f393.png", - "sheet_x": 18, - "sheet_y": 40, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F469-1F3FF-200D-1F393", - "non_qualified": null, - "image": "1f469-1f3ff-200d-1f393.png", - "sheet_x": 18, - "sheet_y": 41, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - } - } - }, - "card_file_box": { - "char": "\ud83d\uddc3\ufe0f", - "key": "card_file_box", - "keywords": ["card_file_box", ""], - "category": "objects", - "lib": { - "name": null, - "unified": "1F5C3-FE0F", - "non_qualified": "1F5C3", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f5c3-fe0f.png", - "sheet_x": 30, - "sheet_y": 24, - "short_name": "card_file_box", - "short_names": ["card_file_box"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 127, - "added_in": "7.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "hourglass": { - "char": "\u231b", - "key": "hourglass", - "keywords": ["hourglass", "HOURGLASS"], - "category": "travel_and_places", - "lib": { - "name": "HOURGLASS", - "unified": "231B", - "non_qualified": null, - "docomo": "E71C", - "au": "E57B", - "softbank": null, - "google": "FE01C", - "image": "231b.png", - "sheet_x": 48, - "sheet_y": 33, - "short_name": "hourglass", - "short_names": ["hourglass"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 127, - "added_in": "1.1", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "exclamation": { - "char": "\u2757", - "key": "exclamation", - "keywords": ["exclamation", "HEAVY EXCLAMATION MARK SYMBOL"], - "category": "symbols", - "lib": { - "name": "HEAVY EXCLAMATION MARK SYMBOL", - "unified": "2757", - "non_qualified": null, - "docomo": "E702", - "au": "E482", - "softbank": "E021", - "google": "FEB04", - "image": "2757.png", - "sheet_x": 51, - "sheet_y": 48, - "short_name": "exclamation", - "short_names": ["exclamation", "heavy_exclamation_mark"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 127, - "added_in": "5.2", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-ke": { - "char": "\ud83c\uddf0\ud83c\uddea", - "key": "flag-ke", - "keywords": ["flag-ke", "Kenya Flag"], - "category": "flags", - "lib": { - "name": "Kenya Flag", - "unified": "1F1F0-1F1EA", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1f0-1f1ea.png", - "sheet_x": 2, - "sheet_y": 45, - "short_name": "flag-ke", - "short_names": ["flag-ke"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 128, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "male-teacher": { - "char": "\ud83d\udc68\u200d\ud83c\udfeb", - "key": "male-teacher", - "keywords": ["male-teacher", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F468-200D-1F3EB", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f468-200d-1f3eb.png", - "sheet_x": 16, - "sheet_y": 17, - "short_name": "male-teacher", - "short_names": ["male-teacher"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 128, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F468-1F3FB-200D-1F3EB", - "non_qualified": null, - "image": "1f468-1f3fb-200d-1f3eb.png", - "sheet_x": 16, - "sheet_y": 18, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F468-1F3FC-200D-1F3EB", - "non_qualified": null, - "image": "1f468-1f3fc-200d-1f3eb.png", - "sheet_x": 16, - "sheet_y": 19, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F468-1F3FD-200D-1F3EB", - "non_qualified": null, - "image": "1f468-1f3fd-200d-1f3eb.png", - "sheet_x": 16, - "sheet_y": 20, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F468-1F3FE-200D-1F3EB", - "non_qualified": null, - "image": "1f468-1f3fe-200d-1f3eb.png", - "sheet_x": 16, - "sheet_y": 21, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F468-1F3FF-200D-1F3EB", - "non_qualified": null, - "image": "1f468-1f3ff-200d-1f3eb.png", - "sheet_x": 16, - "sheet_y": 22, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - } - } - }, - "file_cabinet": { - "char": "\ud83d\uddc4\ufe0f", - "key": "file_cabinet", - "keywords": ["file_cabinet", ""], - "category": "objects", - "lib": { - "name": null, - "unified": "1F5C4-FE0F", - "non_qualified": "1F5C4", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f5c4-fe0f.png", - "sheet_x": 30, - "sheet_y": 25, - "short_name": "file_cabinet", - "short_names": ["file_cabinet"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 128, - "added_in": "7.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "hourglass_flowing_sand": { - "char": "\u23f3", - "key": "hourglass_flowing_sand", - "keywords": ["hourglass_flowing_sand", "HOURGLASS WITH FLOWING SAND"], - "category": "travel_and_places", - "lib": { - "name": "HOURGLASS WITH FLOWING SAND", - "unified": "23F3", - "non_qualified": null, - "docomo": "E71C", - "au": "E47C", - "softbank": null, - "google": "FE01B", - "image": "23f3.png", - "sheet_x": 48, - "sheet_y": 46, - "short_name": "hourglass_flowing_sand", - "short_names": ["hourglass_flowing_sand"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 128, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "wavy_dash": { - "char": "\u3030\ufe0f", - "key": "wavy_dash", - "keywords": ["wavy_dash", "WAVY DASH"], - "category": "symbols", - "lib": { - "name": "WAVY DASH", - "unified": "3030-FE0F", - "non_qualified": "3030", - "docomo": "E709", - "au": null, - "softbank": null, - "google": "FEB07", - "image": "3030-fe0f.png", - "sheet_x": 52, - "sheet_y": 13, - "short_name": "wavy_dash", - "short_names": ["wavy_dash"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 128, - "added_in": "1.1", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "copyright": { - "char": "\u00a9\ufe0f", - "key": "copyright", - "keywords": ["copyright", "COPYRIGHT SIGN"], - "category": "symbols", - "lib": { - "name": "COPYRIGHT SIGN", - "unified": "00A9-FE0F", - "non_qualified": "00A9", - "docomo": "E731", - "au": "E558", - "softbank": "E24E", - "google": "FEB29", - "image": "00a9-fe0f.png", - "sheet_x": 0, - "sheet_y": 12, - "short_name": "copyright", - "short_names": ["copyright"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 129, - "added_in": "1.1", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - } - }, - "flag-kg": { - "char": "\ud83c\uddf0\ud83c\uddec", - "key": "flag-kg", - "keywords": ["flag-kg", "Kyrgyzstan Flag"], - "category": "flags", - "lib": { - "name": "Kyrgyzstan Flag", - "unified": "1F1F0-1F1EC", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1f0-1f1ec.png", - "sheet_x": 2, - "sheet_y": 46, - "short_name": "flag-kg", - "short_names": ["flag-kg"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 129, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "female-teacher": { - "char": "\ud83d\udc69\u200d\ud83c\udfeb", - "key": "female-teacher", - "keywords": ["female-teacher", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F469-200D-1F3EB", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f469-200d-1f3eb.png", - "sheet_x": 19, - "sheet_y": 1, - "short_name": "female-teacher", - "short_names": ["female-teacher"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 129, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F469-1F3FB-200D-1F3EB", - "non_qualified": null, - "image": "1f469-1f3fb-200d-1f3eb.png", - "sheet_x": 19, - "sheet_y": 2, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F469-1F3FC-200D-1F3EB", - "non_qualified": null, - "image": "1f469-1f3fc-200d-1f3eb.png", - "sheet_x": 19, - "sheet_y": 3, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F469-1F3FD-200D-1F3EB", - "non_qualified": null, - "image": "1f469-1f3fd-200d-1f3eb.png", - "sheet_x": 19, - "sheet_y": 4, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F469-1F3FE-200D-1F3EB", - "non_qualified": null, - "image": "1f469-1f3fe-200d-1f3eb.png", - "sheet_x": 19, - "sheet_y": 5, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F469-1F3FF-200D-1F3EB", - "non_qualified": null, - "image": "1f469-1f3ff-200d-1f3eb.png", - "sheet_x": 19, - "sheet_y": 6, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - } - } - }, - "wastebasket": { - "char": "\ud83d\uddd1\ufe0f", - "key": "wastebasket", - "keywords": ["wastebasket", ""], - "category": "objects", - "lib": { - "name": null, - "unified": "1F5D1-FE0F", - "non_qualified": "1F5D1", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f5d1-fe0f.png", - "sheet_x": 30, - "sheet_y": 26, - "short_name": "wastebasket", - "short_names": ["wastebasket"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 129, - "added_in": "7.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "watch": { - "char": "\u231a", - "key": "watch", - "keywords": ["watch", "WATCH"], - "category": "travel_and_places", - "lib": { - "name": "WATCH", - "unified": "231A", - "non_qualified": null, - "docomo": "E71F", - "au": "E57A", - "softbank": null, - "google": "FE01D", - "image": "231a.png", - "sheet_x": 48, - "sheet_y": 32, - "short_name": "watch", - "short_names": ["watch"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 129, - "added_in": "1.1", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "registered": { - "char": "\u00ae\ufe0f", - "key": "registered", - "keywords": ["registered", "REGISTERED SIGN"], - "category": "symbols", - "lib": { - "name": "REGISTERED SIGN", - "unified": "00AE-FE0F", - "non_qualified": "00AE", - "docomo": "E736", - "au": "E559", - "softbank": "E24F", - "google": "FEB2D", - "image": "00ae-fe0f.png", - "sheet_x": 0, - "sheet_y": 13, - "short_name": "registered", - "short_names": ["registered"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 130, - "added_in": "1.1", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - } - }, - "flag-kh": { - "char": "\ud83c\uddf0\ud83c\udded", - "key": "flag-kh", - "keywords": ["flag-kh", "Cambodia Flag"], - "category": "flags", - "lib": { - "name": "Cambodia Flag", - "unified": "1F1F0-1F1ED", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1f0-1f1ed.png", - "sheet_x": 2, - "sheet_y": 47, - "short_name": "flag-kh", - "short_names": ["flag-kh"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 130, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "male-judge": { - "char": "\ud83d\udc68\u200d\u2696\ufe0f", - "key": "male-judge", - "keywords": ["male-judge", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F468-200D-2696-FE0F", - "non_qualified": "1F468-200D-2696", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f468-200d-2696-fe0f.png", - "sheet_x": 18, - "sheet_y": 4, - "short_name": "male-judge", - "short_names": ["male-judge"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 130, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F468-1F3FB-200D-2696-FE0F", - "non_qualified": "1F468-1F3FB-200D-2696", - "image": "1f468-1f3fb-200d-2696-fe0f.png", - "sheet_x": 18, - "sheet_y": 5, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F468-1F3FC-200D-2696-FE0F", - "non_qualified": "1F468-1F3FC-200D-2696", - "image": "1f468-1f3fc-200d-2696-fe0f.png", - "sheet_x": 18, - "sheet_y": 6, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F468-1F3FD-200D-2696-FE0F", - "non_qualified": "1F468-1F3FD-200D-2696", - "image": "1f468-1f3fd-200d-2696-fe0f.png", - "sheet_x": 18, - "sheet_y": 7, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F468-1F3FE-200D-2696-FE0F", - "non_qualified": "1F468-1F3FE-200D-2696", - "image": "1f468-1f3fe-200d-2696-fe0f.png", - "sheet_x": 18, - "sheet_y": 8, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F468-1F3FF-200D-2696-FE0F", - "non_qualified": "1F468-1F3FF-200D-2696", - "image": "1f468-1f3ff-200d-2696-fe0f.png", - "sheet_x": 18, - "sheet_y": 9, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - } - } - } - }, - "lock": { - "char": "\ud83d\udd12", - "key": "lock", - "keywords": ["lock", "LOCK"], - "category": "objects", - "lib": { - "name": "LOCK", - "unified": "1F512", - "non_qualified": null, - "docomo": "E6D9", - "au": "E51C", - "softbank": "E144", - "google": "FEB86", - "image": "1f512.png", - "sheet_x": 27, - "sheet_y": 42, - "short_name": "lock", - "short_names": ["lock"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 130, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "alarm_clock": { - "char": "\u23f0", - "key": "alarm_clock", - "keywords": ["alarm_clock", "ALARM CLOCK"], - "category": "travel_and_places", - "lib": { - "name": "ALARM CLOCK", - "unified": "23F0", - "non_qualified": null, - "docomo": "E6BA", - "au": "E594", - "softbank": null, - "google": "FE02A", - "image": "23f0.png", - "sheet_x": 48, - "sheet_y": 43, - "short_name": "alarm_clock", - "short_names": ["alarm_clock"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 130, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-ki": { - "char": "\ud83c\uddf0\ud83c\uddee", - "key": "flag-ki", - "keywords": ["flag-ki", "Kiribati Flag"], - "category": "flags", - "lib": { - "name": "Kiribati Flag", - "unified": "1F1F0-1F1EE", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1f0-1f1ee.png", - "sheet_x": 2, - "sheet_y": 48, - "short_name": "flag-ki", - "short_names": ["flag-ki"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 131, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "female-judge": { - "char": "\ud83d\udc69\u200d\u2696\ufe0f", - "key": "female-judge", - "keywords": ["female-judge", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F469-200D-2696-FE0F", - "non_qualified": "1F469-200D-2696", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f469-200d-2696-fe0f.png", - "sheet_x": 20, - "sheet_y": 36, - "short_name": "female-judge", - "short_names": ["female-judge"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 131, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F469-1F3FB-200D-2696-FE0F", - "non_qualified": "1F469-1F3FB-200D-2696", - "image": "1f469-1f3fb-200d-2696-fe0f.png", - "sheet_x": 20, - "sheet_y": 37, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F469-1F3FC-200D-2696-FE0F", - "non_qualified": "1F469-1F3FC-200D-2696", - "image": "1f469-1f3fc-200d-2696-fe0f.png", - "sheet_x": 20, - "sheet_y": 38, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F469-1F3FD-200D-2696-FE0F", - "non_qualified": "1F469-1F3FD-200D-2696", - "image": "1f469-1f3fd-200d-2696-fe0f.png", - "sheet_x": 20, - "sheet_y": 39, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F469-1F3FE-200D-2696-FE0F", - "non_qualified": "1F469-1F3FE-200D-2696", - "image": "1f469-1f3fe-200d-2696-fe0f.png", - "sheet_x": 20, - "sheet_y": 40, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F469-1F3FF-200D-2696-FE0F", - "non_qualified": "1F469-1F3FF-200D-2696", - "image": "1f469-1f3ff-200d-2696-fe0f.png", - "sheet_x": 20, - "sheet_y": 41, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - } - } - } - }, - "unlock": { - "char": "\ud83d\udd13", - "key": "unlock", - "keywords": ["unlock", "OPEN LOCK"], - "category": "objects", - "lib": { - "name": "OPEN LOCK", - "unified": "1F513", - "non_qualified": null, - "docomo": "E6D9", - "au": "E51C", - "softbank": "E145", - "google": "FEB87", - "image": "1f513.png", - "sheet_x": 27, - "sheet_y": 43, - "short_name": "unlock", - "short_names": ["unlock"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 131, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "tm": { - "char": "\u2122\ufe0f", - "key": "tm", - "keywords": ["tm", "TRADE MARK SIGN"], - "category": "symbols", - "lib": { - "name": "TRADE MARK SIGN", - "unified": "2122-FE0F", - "non_qualified": "2122", - "docomo": "E732", - "au": "E54E", - "softbank": "E537", - "google": "FEB2A", - "image": "2122-fe0f.png", - "sheet_x": 48, - "sheet_y": 22, - "short_name": "tm", - "short_names": ["tm"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 131, - "added_in": "1.1", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "stopwatch": { - "char": "\u23f1\ufe0f", - "key": "stopwatch", - "keywords": ["stopwatch", ""], - "category": "travel_and_places", - "lib": { - "name": null, - "unified": "23F1-FE0F", - "non_qualified": "23F1", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "23f1-fe0f.png", - "sheet_x": 48, - "sheet_y": 44, - "short_name": "stopwatch", - "short_names": ["stopwatch"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 131, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "hash": { - "char": "#\ufe0f\u20e3", - "key": "hash", - "keywords": ["hash", "HASH KEY"], - "category": "symbols", - "lib": { - "name": "HASH KEY", - "unified": "0023-FE0F-20E3", - "non_qualified": "0023-20E3", - "docomo": "E6E0", - "au": "EB84", - "softbank": "E210", - "google": "FE82C", - "image": "0023-fe0f-20e3.png", - "sheet_x": 0, - "sheet_y": 0, - "short_name": "hash", - "short_names": ["hash"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 132, - "added_in": "3.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - } - }, - "flag-km": { - "char": "\ud83c\uddf0\ud83c\uddf2", - "key": "flag-km", - "keywords": ["flag-km", "Comoros Flag"], - "category": "flags", - "lib": { - "name": "Comoros Flag", - "unified": "1F1F0-1F1F2", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1f0-1f1f2.png", - "sheet_x": 2, - "sheet_y": 49, - "short_name": "flag-km", - "short_names": ["flag-km"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 132, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "male-farmer": { - "char": "\ud83d\udc68\u200d\ud83c\udf3e", - "key": "male-farmer", - "keywords": ["male-farmer", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F468-200D-1F33E", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f468-200d-1f33e.png", - "sheet_x": 15, - "sheet_y": 40, - "short_name": "male-farmer", - "short_names": ["male-farmer"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 132, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F468-1F3FB-200D-1F33E", - "non_qualified": null, - "image": "1f468-1f3fb-200d-1f33e.png", - "sheet_x": 15, - "sheet_y": 41, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F468-1F3FC-200D-1F33E", - "non_qualified": null, - "image": "1f468-1f3fc-200d-1f33e.png", - "sheet_x": 15, - "sheet_y": 42, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F468-1F3FD-200D-1F33E", - "non_qualified": null, - "image": "1f468-1f3fd-200d-1f33e.png", - "sheet_x": 15, - "sheet_y": 43, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F468-1F3FE-200D-1F33E", - "non_qualified": null, - "image": "1f468-1f3fe-200d-1f33e.png", - "sheet_x": 15, - "sheet_y": 44, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F468-1F3FF-200D-1F33E", - "non_qualified": null, - "image": "1f468-1f3ff-200d-1f33e.png", - "sheet_x": 15, - "sheet_y": 45, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - } - } - }, - "lock_with_ink_pen": { - "char": "\ud83d\udd0f", - "key": "lock_with_ink_pen", - "keywords": ["lock_with_ink_pen", "LOCK WITH INK PEN"], - "category": "objects", - "lib": { - "name": "LOCK WITH INK PEN", - "unified": "1F50F", - "non_qualified": null, - "docomo": "E6D9", - "au": "EB0C", - "softbank": null, - "google": "FEB90", - "image": "1f50f.png", - "sheet_x": 27, - "sheet_y": 39, - "short_name": "lock_with_ink_pen", - "short_names": ["lock_with_ink_pen"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 132, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "timer_clock": { - "char": "\u23f2\ufe0f", - "key": "timer_clock", - "keywords": ["timer_clock", ""], - "category": "travel_and_places", - "lib": { - "name": null, - "unified": "23F2-FE0F", - "non_qualified": "23F2", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "23f2-fe0f.png", - "sheet_x": 48, - "sheet_y": 45, - "short_name": "timer_clock", - "short_names": ["timer_clock"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 132, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "keycap_star": { - "char": "*\ufe0f\u20e3", - "key": "keycap_star", - "keywords": ["keycap_star", ""], - "category": "symbols", - "lib": { - "name": null, - "unified": "002A-FE0F-20E3", - "non_qualified": "002A-20E3", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "002a-fe0f-20e3.png", - "sheet_x": 0, - "sheet_y": 1, - "short_name": "keycap_star", - "short_names": ["keycap_star"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 133, - "added_in": "3.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - } - }, - "flag-kn": { - "char": "\ud83c\uddf0\ud83c\uddf3", - "key": "flag-kn", - "keywords": ["flag-kn", "St. Kitts & Nevis Flag"], - "category": "flags", - "lib": { - "name": "St. Kitts & Nevis Flag", - "unified": "1F1F0-1F1F3", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1f0-1f1f3.png", - "sheet_x": 2, - "sheet_y": 50, - "short_name": "flag-kn", - "short_names": ["flag-kn"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 133, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "female-farmer": { - "char": "\ud83d\udc69\u200d\ud83c\udf3e", - "key": "female-farmer", - "keywords": ["female-farmer", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F469-200D-1F33E", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f469-200d-1f33e.png", - "sheet_x": 18, - "sheet_y": 24, - "short_name": "female-farmer", - "short_names": ["female-farmer"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 133, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F469-1F3FB-200D-1F33E", - "non_qualified": null, - "image": "1f469-1f3fb-200d-1f33e.png", - "sheet_x": 18, - "sheet_y": 25, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F469-1F3FC-200D-1F33E", - "non_qualified": null, - "image": "1f469-1f3fc-200d-1f33e.png", - "sheet_x": 18, - "sheet_y": 26, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F469-1F3FD-200D-1F33E", - "non_qualified": null, - "image": "1f469-1f3fd-200d-1f33e.png", - "sheet_x": 18, - "sheet_y": 27, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F469-1F3FE-200D-1F33E", - "non_qualified": null, - "image": "1f469-1f3fe-200d-1f33e.png", - "sheet_x": 18, - "sheet_y": 28, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F469-1F3FF-200D-1F33E", - "non_qualified": null, - "image": "1f469-1f3ff-200d-1f33e.png", - "sheet_x": 18, - "sheet_y": 29, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - } - } - }, - "closed_lock_with_key": { - "char": "\ud83d\udd10", - "key": "closed_lock_with_key", - "keywords": ["closed_lock_with_key", "CLOSED LOCK WITH KEY"], - "category": "objects", - "lib": { - "name": "CLOSED LOCK WITH KEY", - "unified": "1F510", - "non_qualified": null, - "docomo": "E6D9", - "au": "EAFC", - "softbank": null, - "google": "FEB8A", - "image": "1f510.png", - "sheet_x": 27, - "sheet_y": 40, - "short_name": "closed_lock_with_key", - "short_names": ["closed_lock_with_key"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 133, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "mantelpiece_clock": { - "char": "\ud83d\udd70\ufe0f", - "key": "mantelpiece_clock", - "keywords": ["mantelpiece_clock", ""], - "category": "travel_and_places", - "lib": { - "name": null, - "unified": "1F570-FE0F", - "non_qualified": "1F570", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f570-fe0f.png", - "sheet_x": 29, - "sheet_y": 11, - "short_name": "mantelpiece_clock", - "short_names": ["mantelpiece_clock"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 133, - "added_in": "7.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "zero": { - "char": "0\ufe0f\u20e3", - "key": "zero", - "keywords": ["zero", "KEYCAP 0"], - "category": "symbols", - "lib": { - "name": "KEYCAP 0", - "unified": "0030-FE0F-20E3", - "non_qualified": "0030-20E3", - "docomo": "E6EB", - "au": "E5AC", - "softbank": "E225", - "google": "FE837", - "image": "0030-fe0f-20e3.png", - "sheet_x": 0, - "sheet_y": 2, - "short_name": "zero", - "short_names": ["zero"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 134, - "added_in": "3.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - } - }, - "flag-kp": { - "char": "\ud83c\uddf0\ud83c\uddf5", - "key": "flag-kp", - "keywords": ["flag-kp", "North Korea Flag"], - "category": "flags", - "lib": { - "name": "North Korea Flag", - "unified": "1F1F0-1F1F5", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1f0-1f1f5.png", - "sheet_x": 2, - "sheet_y": 51, - "short_name": "flag-kp", - "short_names": ["flag-kp"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 134, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "male-cook": { - "char": "\ud83d\udc68\u200d\ud83c\udf73", - "key": "male-cook", - "keywords": ["male-cook", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F468-200D-1F373", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f468-200d-1f373.png", - "sheet_x": 15, - "sheet_y": 46, - "short_name": "male-cook", - "short_names": ["male-cook"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 134, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F468-1F3FB-200D-1F373", - "non_qualified": null, - "image": "1f468-1f3fb-200d-1f373.png", - "sheet_x": 15, - "sheet_y": 47, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F468-1F3FC-200D-1F373", - "non_qualified": null, - "image": "1f468-1f3fc-200d-1f373.png", - "sheet_x": 15, - "sheet_y": 48, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F468-1F3FD-200D-1F373", - "non_qualified": null, - "image": "1f468-1f3fd-200d-1f373.png", - "sheet_x": 15, - "sheet_y": 49, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F468-1F3FE-200D-1F373", - "non_qualified": null, - "image": "1f468-1f3fe-200d-1f373.png", - "sheet_x": 15, - "sheet_y": 50, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F468-1F3FF-200D-1F373", - "non_qualified": null, - "image": "1f468-1f3ff-200d-1f373.png", - "sheet_x": 15, - "sheet_y": 51, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - } - } - }, - "key": { - "char": "\ud83d\udd11", - "key": "key", - "keywords": ["key", "KEY"], - "category": "objects", - "lib": { - "name": "KEY", - "unified": "1F511", - "non_qualified": null, - "docomo": "E6D9", - "au": "E519", - "softbank": "E03F", - "google": "FEB82", - "image": "1f511.png", - "sheet_x": 27, - "sheet_y": 41, - "short_name": "key", - "short_names": ["key"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 134, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "clock12": { - "char": "\ud83d\udd5b", - "key": "clock12", - "keywords": ["clock12", "CLOCK FACE TWELVE OCLOCK"], - "category": "travel_and_places", - "lib": { - "name": "CLOCK FACE TWELVE OCLOCK", - "unified": "1F55B", - "non_qualified": null, - "docomo": "E6BA", - "au": "E594", - "softbank": "E02F", - "google": "FE029", - "image": "1f55b.png", - "sheet_x": 28, - "sheet_y": 50, - "short_name": "clock12", - "short_names": ["clock12"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 134, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "one": { - "char": "1\ufe0f\u20e3", - "key": "one", - "keywords": ["one", "KEYCAP 1"], - "category": "symbols", - "lib": { - "name": "KEYCAP 1", - "unified": "0031-FE0F-20E3", - "non_qualified": "0031-20E3", - "docomo": "E6E2", - "au": "E522", - "softbank": "E21C", - "google": "FE82E", - "image": "0031-fe0f-20e3.png", - "sheet_x": 0, - "sheet_y": 3, - "short_name": "one", - "short_names": ["one"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 135, - "added_in": "3.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - } - }, - "kr": { - "char": "\ud83c\uddf0\ud83c\uddf7", - "key": "kr", - "keywords": ["kr", "South Korea Flag"], - "category": "flags", - "lib": { - "name": "South Korea Flag", - "unified": "1F1F0-1F1F7", - "non_qualified": null, - "docomo": null, - "au": "EB12", - "softbank": "E514", - "google": "FE4EE", - "image": "1f1f0-1f1f7.png", - "sheet_x": 2, - "sheet_y": 52, - "short_name": "kr", - "short_names": ["kr", "flag-kr"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 135, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "female-cook": { - "char": "\ud83d\udc69\u200d\ud83c\udf73", - "key": "female-cook", - "keywords": ["female-cook", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F469-200D-1F373", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f469-200d-1f373.png", - "sheet_x": 18, - "sheet_y": 30, - "short_name": "female-cook", - "short_names": ["female-cook"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 135, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F469-1F3FB-200D-1F373", - "non_qualified": null, - "image": "1f469-1f3fb-200d-1f373.png", - "sheet_x": 18, - "sheet_y": 31, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F469-1F3FC-200D-1F373", - "non_qualified": null, - "image": "1f469-1f3fc-200d-1f373.png", - "sheet_x": 18, - "sheet_y": 32, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F469-1F3FD-200D-1F373", - "non_qualified": null, - "image": "1f469-1f3fd-200d-1f373.png", - "sheet_x": 18, - "sheet_y": 33, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F469-1F3FE-200D-1F373", - "non_qualified": null, - "image": "1f469-1f3fe-200d-1f373.png", - "sheet_x": 18, - "sheet_y": 34, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F469-1F3FF-200D-1F373", - "non_qualified": null, - "image": "1f469-1f3ff-200d-1f373.png", - "sheet_x": 18, - "sheet_y": 35, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - } - } - }, - "clock1230": { - "char": "\ud83d\udd67", - "key": "clock1230", - "keywords": ["clock1230", "CLOCK FACE TWELVE-THIRTY"], - "category": "travel_and_places", - "lib": { - "name": "CLOCK FACE TWELVE-THIRTY", - "unified": "1F567", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f567.png", - "sheet_x": 29, - "sheet_y": 9, - "short_name": "clock1230", - "short_names": ["clock1230"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 135, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "old_key": { - "char": "\ud83d\udddd\ufe0f", - "key": "old_key", - "keywords": ["old_key", ""], - "category": "objects", - "lib": { - "name": null, - "unified": "1F5DD-FE0F", - "non_qualified": "1F5DD", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f5dd-fe0f.png", - "sheet_x": 30, - "sheet_y": 30, - "short_name": "old_key", - "short_names": ["old_key"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 135, - "added_in": "7.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "two": { - "char": "2\ufe0f\u20e3", - "key": "two", - "keywords": ["two", "KEYCAP 2"], - "category": "symbols", - "lib": { - "name": "KEYCAP 2", - "unified": "0032-FE0F-20E3", - "non_qualified": "0032-20E3", - "docomo": "E6E3", - "au": "E523", - "softbank": "E21D", - "google": "FE82F", - "image": "0032-fe0f-20e3.png", - "sheet_x": 0, - "sheet_y": 4, - "short_name": "two", - "short_names": ["two"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 136, - "added_in": "3.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - } - }, - "flag-kw": { - "char": "\ud83c\uddf0\ud83c\uddfc", - "key": "flag-kw", - "keywords": ["flag-kw", "Kuwait Flag"], - "category": "flags", - "lib": { - "name": "Kuwait Flag", - "unified": "1F1F0-1F1FC", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1f0-1f1fc.png", - "sheet_x": 3, - "sheet_y": 0, - "short_name": "flag-kw", - "short_names": ["flag-kw"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 136, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "male-mechanic": { - "char": "\ud83d\udc68\u200d\ud83d\udd27", - "key": "male-mechanic", - "keywords": ["male-mechanic", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F468-200D-1F527", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f468-200d-1f527.png", - "sheet_x": 17, - "sheet_y": 3, - "short_name": "male-mechanic", - "short_names": ["male-mechanic"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 136, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F468-1F3FB-200D-1F527", - "non_qualified": null, - "image": "1f468-1f3fb-200d-1f527.png", - "sheet_x": 17, - "sheet_y": 4, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F468-1F3FC-200D-1F527", - "non_qualified": null, - "image": "1f468-1f3fc-200d-1f527.png", - "sheet_x": 17, - "sheet_y": 5, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F468-1F3FD-200D-1F527", - "non_qualified": null, - "image": "1f468-1f3fd-200d-1f527.png", - "sheet_x": 17, - "sheet_y": 6, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F468-1F3FE-200D-1F527", - "non_qualified": null, - "image": "1f468-1f3fe-200d-1f527.png", - "sheet_x": 17, - "sheet_y": 7, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F468-1F3FF-200D-1F527", - "non_qualified": null, - "image": "1f468-1f3ff-200d-1f527.png", - "sheet_x": 17, - "sheet_y": 8, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - } - } - }, - "hammer": { - "char": "\ud83d\udd28", - "key": "hammer", - "keywords": ["hammer", "HAMMER"], - "category": "objects", - "lib": { - "name": "HAMMER", - "unified": "1F528", - "non_qualified": null, - "docomo": null, - "au": "E5CB", - "softbank": "E116", - "google": "FE4CA", - "image": "1f528.png", - "sheet_x": 28, - "sheet_y": 11, - "short_name": "hammer", - "short_names": ["hammer"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 136, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "clock1": { - "char": "\ud83d\udd50", - "key": "clock1", - "keywords": ["clock1", "CLOCK FACE ONE OCLOCK"], - "category": "travel_and_places", - "lib": { - "name": "CLOCK FACE ONE OCLOCK", - "unified": "1F550", - "non_qualified": null, - "docomo": "E6BA", - "au": "E594", - "softbank": "E024", - "google": "FE01E", - "image": "1f550.png", - "sheet_x": 28, - "sheet_y": 39, - "short_name": "clock1", - "short_names": ["clock1"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 136, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "three": { - "char": "3\ufe0f\u20e3", - "key": "three", - "keywords": ["three", "KEYCAP 3"], - "category": "symbols", - "lib": { - "name": "KEYCAP 3", - "unified": "0033-FE0F-20E3", - "non_qualified": "0033-20E3", - "docomo": "E6E4", - "au": "E524", - "softbank": "E21E", - "google": "FE830", - "image": "0033-fe0f-20e3.png", - "sheet_x": 0, - "sheet_y": 5, - "short_name": "three", - "short_names": ["three"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 137, - "added_in": "3.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - } - }, - "flag-ky": { - "char": "\ud83c\uddf0\ud83c\uddfe", - "key": "flag-ky", - "keywords": ["flag-ky", "Cayman Islands Flag"], - "category": "flags", - "lib": { - "name": "Cayman Islands Flag", - "unified": "1F1F0-1F1FE", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1f0-1f1fe.png", - "sheet_x": 3, - "sheet_y": 1, - "short_name": "flag-ky", - "short_names": ["flag-ky"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 137, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "female-mechanic": { - "char": "\ud83d\udc69\u200d\ud83d\udd27", - "key": "female-mechanic", - "keywords": ["female-mechanic", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F469-200D-1F527", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f469-200d-1f527.png", - "sheet_x": 19, - "sheet_y": 35, - "short_name": "female-mechanic", - "short_names": ["female-mechanic"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 137, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F469-1F3FB-200D-1F527", - "non_qualified": null, - "image": "1f469-1f3fb-200d-1f527.png", - "sheet_x": 19, - "sheet_y": 36, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F469-1F3FC-200D-1F527", - "non_qualified": null, - "image": "1f469-1f3fc-200d-1f527.png", - "sheet_x": 19, - "sheet_y": 37, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F469-1F3FD-200D-1F527", - "non_qualified": null, - "image": "1f469-1f3fd-200d-1f527.png", - "sheet_x": 19, - "sheet_y": 38, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F469-1F3FE-200D-1F527", - "non_qualified": null, - "image": "1f469-1f3fe-200d-1f527.png", - "sheet_x": 19, - "sheet_y": 39, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F469-1F3FF-200D-1F527", - "non_qualified": null, - "image": "1f469-1f3ff-200d-1f527.png", - "sheet_x": 19, - "sheet_y": 40, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - } - } - }, - "clock130": { - "char": "\ud83d\udd5c", - "key": "clock130", - "keywords": ["clock130", "CLOCK FACE ONE-THIRTY"], - "category": "travel_and_places", - "lib": { - "name": "CLOCK FACE ONE-THIRTY", - "unified": "1F55C", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f55c.png", - "sheet_x": 28, - "sheet_y": 51, - "short_name": "clock130", - "short_names": ["clock130"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 137, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "pick": { - "char": "\u26cf\ufe0f", - "key": "pick", - "keywords": ["pick", ""], - "category": "objects", - "lib": { - "name": null, - "unified": "26CF-FE0F", - "non_qualified": "26CF", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "26cf-fe0f.png", - "sheet_x": 50, - "sheet_y": 23, - "short_name": "pick", - "short_names": ["pick"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 137, - "added_in": "5.2", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "four": { - "char": "4\ufe0f\u20e3", - "key": "four", - "keywords": ["four", "KEYCAP 4"], - "category": "symbols", - "lib": { - "name": "KEYCAP 4", - "unified": "0034-FE0F-20E3", - "non_qualified": "0034-20E3", - "docomo": "E6E5", - "au": "E525", - "softbank": "E21F", - "google": "FE831", - "image": "0034-fe0f-20e3.png", - "sheet_x": 0, - "sheet_y": 6, - "short_name": "four", - "short_names": ["four"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 138, - "added_in": "3.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - } - }, - "flag-kz": { - "char": "\ud83c\uddf0\ud83c\uddff", - "key": "flag-kz", - "keywords": ["flag-kz", "Kazakhstan Flag"], - "category": "flags", - "lib": { - "name": "Kazakhstan Flag", - "unified": "1F1F0-1F1FF", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1f0-1f1ff.png", - "sheet_x": 3, - "sheet_y": 2, - "short_name": "flag-kz", - "short_names": ["flag-kz"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 138, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "male-factory-worker": { - "char": "\ud83d\udc68\u200d\ud83c\udfed", - "key": "male-factory-worker", - "keywords": ["male-factory-worker", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F468-200D-1F3ED", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f468-200d-1f3ed.png", - "sheet_x": 16, - "sheet_y": 23, - "short_name": "male-factory-worker", - "short_names": ["male-factory-worker"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 138, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F468-1F3FB-200D-1F3ED", - "non_qualified": null, - "image": "1f468-1f3fb-200d-1f3ed.png", - "sheet_x": 16, - "sheet_y": 24, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F468-1F3FC-200D-1F3ED", - "non_qualified": null, - "image": "1f468-1f3fc-200d-1f3ed.png", - "sheet_x": 16, - "sheet_y": 25, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F468-1F3FD-200D-1F3ED", - "non_qualified": null, - "image": "1f468-1f3fd-200d-1f3ed.png", - "sheet_x": 16, - "sheet_y": 26, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F468-1F3FE-200D-1F3ED", - "non_qualified": null, - "image": "1f468-1f3fe-200d-1f3ed.png", - "sheet_x": 16, - "sheet_y": 27, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F468-1F3FF-200D-1F3ED", - "non_qualified": null, - "image": "1f468-1f3ff-200d-1f3ed.png", - "sheet_x": 16, - "sheet_y": 28, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - } - } - }, - "clock2": { - "char": "\ud83d\udd51", - "key": "clock2", - "keywords": ["clock2", "CLOCK FACE TWO OCLOCK"], - "category": "travel_and_places", - "lib": { - "name": "CLOCK FACE TWO OCLOCK", - "unified": "1F551", - "non_qualified": null, - "docomo": "E6BA", - "au": "E594", - "softbank": "E025", - "google": "FE01F", - "image": "1f551.png", - "sheet_x": 28, - "sheet_y": 40, - "short_name": "clock2", - "short_names": ["clock2"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 138, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "hammer_and_pick": { - "char": "\u2692\ufe0f", - "key": "hammer_and_pick", - "keywords": ["hammer_and_pick", ""], - "category": "objects", - "lib": { - "name": null, - "unified": "2692-FE0F", - "non_qualified": "2692", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "2692-fe0f.png", - "sheet_x": 50, - "sheet_y": 2, - "short_name": "hammer_and_pick", - "short_names": ["hammer_and_pick"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 138, - "added_in": "4.1", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "five": { - "char": "5\ufe0f\u20e3", - "key": "five", - "keywords": ["five", "KEYCAP 5"], - "category": "symbols", - "lib": { - "name": "KEYCAP 5", - "unified": "0035-FE0F-20E3", - "non_qualified": "0035-20E3", - "docomo": "E6E6", - "au": "E526", - "softbank": "E220", - "google": "FE832", - "image": "0035-fe0f-20e3.png", - "sheet_x": 0, - "sheet_y": 7, - "short_name": "five", - "short_names": ["five"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 139, - "added_in": "3.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - } - }, - "flag-la": { - "char": "\ud83c\uddf1\ud83c\udde6", - "key": "flag-la", - "keywords": ["flag-la", "Laos Flag"], - "category": "flags", - "lib": { - "name": "Laos Flag", - "unified": "1F1F1-1F1E6", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1f1-1f1e6.png", - "sheet_x": 3, - "sheet_y": 3, - "short_name": "flag-la", - "short_names": ["flag-la"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 139, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "female-factory-worker": { - "char": "\ud83d\udc69\u200d\ud83c\udfed", - "key": "female-factory-worker", - "keywords": ["female-factory-worker", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F469-200D-1F3ED", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f469-200d-1f3ed.png", - "sheet_x": 19, - "sheet_y": 7, - "short_name": "female-factory-worker", - "short_names": ["female-factory-worker"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 139, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F469-1F3FB-200D-1F3ED", - "non_qualified": null, - "image": "1f469-1f3fb-200d-1f3ed.png", - "sheet_x": 19, - "sheet_y": 8, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F469-1F3FC-200D-1F3ED", - "non_qualified": null, - "image": "1f469-1f3fc-200d-1f3ed.png", - "sheet_x": 19, - "sheet_y": 9, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F469-1F3FD-200D-1F3ED", - "non_qualified": null, - "image": "1f469-1f3fd-200d-1f3ed.png", - "sheet_x": 19, - "sheet_y": 10, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F469-1F3FE-200D-1F3ED", - "non_qualified": null, - "image": "1f469-1f3fe-200d-1f3ed.png", - "sheet_x": 19, - "sheet_y": 11, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F469-1F3FF-200D-1F3ED", - "non_qualified": null, - "image": "1f469-1f3ff-200d-1f3ed.png", - "sheet_x": 19, - "sheet_y": 12, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - } - } - }, - "clock230": { - "char": "\ud83d\udd5d", - "key": "clock230", - "keywords": ["clock230", "CLOCK FACE TWO-THIRTY"], - "category": "travel_and_places", - "lib": { - "name": "CLOCK FACE TWO-THIRTY", - "unified": "1F55D", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f55d.png", - "sheet_x": 28, - "sheet_y": 52, - "short_name": "clock230", - "short_names": ["clock230"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 139, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "hammer_and_wrench": { - "char": "\ud83d\udee0\ufe0f", - "key": "hammer_and_wrench", - "keywords": ["hammer_and_wrench", ""], - "category": "objects", - "lib": { - "name": null, - "unified": "1F6E0-FE0F", - "non_qualified": "1F6E0", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f6e0-fe0f.png", - "sheet_x": 37, - "sheet_y": 20, - "short_name": "hammer_and_wrench", - "short_names": ["hammer_and_wrench"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 139, - "added_in": "7.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "six": { - "char": "6\ufe0f\u20e3", - "key": "six", - "keywords": ["six", "KEYCAP 6"], - "category": "symbols", - "lib": { - "name": "KEYCAP 6", - "unified": "0036-FE0F-20E3", - "non_qualified": "0036-20E3", - "docomo": "E6E7", - "au": "E527", - "softbank": "E221", - "google": "FE833", - "image": "0036-fe0f-20e3.png", - "sheet_x": 0, - "sheet_y": 8, - "short_name": "six", - "short_names": ["six"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 140, - "added_in": "3.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - } - }, - "flag-lb": { - "char": "\ud83c\uddf1\ud83c\udde7", - "key": "flag-lb", - "keywords": ["flag-lb", "Lebanon Flag"], - "category": "flags", - "lib": { - "name": "Lebanon Flag", - "unified": "1F1F1-1F1E7", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1f1-1f1e7.png", - "sheet_x": 3, - "sheet_y": 4, - "short_name": "flag-lb", - "short_names": ["flag-lb"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 140, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "male-office-worker": { - "char": "\ud83d\udc68\u200d\ud83d\udcbc", - "key": "male-office-worker", - "keywords": ["male-office-worker", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F468-200D-1F4BC", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f468-200d-1f4bc.png", - "sheet_x": 16, - "sheet_y": 50, - "short_name": "male-office-worker", - "short_names": ["male-office-worker"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 140, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F468-1F3FB-200D-1F4BC", - "non_qualified": null, - "image": "1f468-1f3fb-200d-1f4bc.png", - "sheet_x": 16, - "sheet_y": 51, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F468-1F3FC-200D-1F4BC", - "non_qualified": null, - "image": "1f468-1f3fc-200d-1f4bc.png", - "sheet_x": 16, - "sheet_y": 52, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F468-1F3FD-200D-1F4BC", - "non_qualified": null, - "image": "1f468-1f3fd-200d-1f4bc.png", - "sheet_x": 17, - "sheet_y": 0, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F468-1F3FE-200D-1F4BC", - "non_qualified": null, - "image": "1f468-1f3fe-200d-1f4bc.png", - "sheet_x": 17, - "sheet_y": 1, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F468-1F3FF-200D-1F4BC", - "non_qualified": null, - "image": "1f468-1f3ff-200d-1f4bc.png", - "sheet_x": 17, - "sheet_y": 2, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - } - } - }, - "clock3": { - "char": "\ud83d\udd52", - "key": "clock3", - "keywords": ["clock3", "CLOCK FACE THREE OCLOCK"], - "category": "travel_and_places", - "lib": { - "name": "CLOCK FACE THREE OCLOCK", - "unified": "1F552", - "non_qualified": null, - "docomo": "E6BA", - "au": "E594", - "softbank": "E026", - "google": "FE020", - "image": "1f552.png", - "sheet_x": 28, - "sheet_y": 41, - "short_name": "clock3", - "short_names": ["clock3"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 140, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "dagger_knife": { - "char": "\ud83d\udde1\ufe0f", - "key": "dagger_knife", - "keywords": ["dagger_knife", ""], - "category": "objects", - "lib": { - "name": null, - "unified": "1F5E1-FE0F", - "non_qualified": "1F5E1", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f5e1-fe0f.png", - "sheet_x": 30, - "sheet_y": 32, - "short_name": "dagger_knife", - "short_names": ["dagger_knife"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 140, - "added_in": "7.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "seven": { - "char": "7\ufe0f\u20e3", - "key": "seven", - "keywords": ["seven", "KEYCAP 7"], - "category": "symbols", - "lib": { - "name": "KEYCAP 7", - "unified": "0037-FE0F-20E3", - "non_qualified": "0037-20E3", - "docomo": "E6E8", - "au": "E528", - "softbank": "E222", - "google": "FE834", - "image": "0037-fe0f-20e3.png", - "sheet_x": 0, - "sheet_y": 9, - "short_name": "seven", - "short_names": ["seven"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 141, - "added_in": "3.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - } - }, - "flag-lc": { - "char": "\ud83c\uddf1\ud83c\udde8", - "key": "flag-lc", - "keywords": ["flag-lc", "St. Lucia Flag"], - "category": "flags", - "lib": { - "name": "St. Lucia Flag", - "unified": "1F1F1-1F1E8", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1f1-1f1e8.png", - "sheet_x": 3, - "sheet_y": 5, - "short_name": "flag-lc", - "short_names": ["flag-lc"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 141, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "female-office-worker": { - "char": "\ud83d\udc69\u200d\ud83d\udcbc", - "key": "female-office-worker", - "keywords": ["female-office-worker", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F469-200D-1F4BC", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f469-200d-1f4bc.png", - "sheet_x": 19, - "sheet_y": 29, - "short_name": "female-office-worker", - "short_names": ["female-office-worker"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 141, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F469-1F3FB-200D-1F4BC", - "non_qualified": null, - "image": "1f469-1f3fb-200d-1f4bc.png", - "sheet_x": 19, - "sheet_y": 30, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F469-1F3FC-200D-1F4BC", - "non_qualified": null, - "image": "1f469-1f3fc-200d-1f4bc.png", - "sheet_x": 19, - "sheet_y": 31, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F469-1F3FD-200D-1F4BC", - "non_qualified": null, - "image": "1f469-1f3fd-200d-1f4bc.png", - "sheet_x": 19, - "sheet_y": 32, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F469-1F3FE-200D-1F4BC", - "non_qualified": null, - "image": "1f469-1f3fe-200d-1f4bc.png", - "sheet_x": 19, - "sheet_y": 33, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F469-1F3FF-200D-1F4BC", - "non_qualified": null, - "image": "1f469-1f3ff-200d-1f4bc.png", - "sheet_x": 19, - "sheet_y": 34, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - } - } - }, - "clock330": { - "char": "\ud83d\udd5e", - "key": "clock330", - "keywords": ["clock330", "CLOCK FACE THREE-THIRTY"], - "category": "travel_and_places", - "lib": { - "name": "CLOCK FACE THREE-THIRTY", - "unified": "1F55E", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f55e.png", - "sheet_x": 29, - "sheet_y": 0, - "short_name": "clock330", - "short_names": ["clock330"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 141, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "crossed_swords": { - "char": "\u2694\ufe0f", - "key": "crossed_swords", - "keywords": ["crossed_swords", ""], - "category": "objects", - "lib": { - "name": null, - "unified": "2694-FE0F", - "non_qualified": "2694", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "2694-fe0f.png", - "sheet_x": 50, - "sheet_y": 4, - "short_name": "crossed_swords", - "short_names": ["crossed_swords"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 141, - "added_in": "4.1", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "eight": { - "char": "8\ufe0f\u20e3", - "key": "eight", - "keywords": ["eight", "KEYCAP 8"], - "category": "symbols", - "lib": { - "name": "KEYCAP 8", - "unified": "0038-FE0F-20E3", - "non_qualified": "0038-20E3", - "docomo": "E6E9", - "au": "E529", - "softbank": "E223", - "google": "FE835", - "image": "0038-fe0f-20e3.png", - "sheet_x": 0, - "sheet_y": 10, - "short_name": "eight", - "short_names": ["eight"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 142, - "added_in": "3.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - } - }, - "flag-li": { - "char": "\ud83c\uddf1\ud83c\uddee", - "key": "flag-li", - "keywords": ["flag-li", "Liechtenstein Flag"], - "category": "flags", - "lib": { - "name": "Liechtenstein Flag", - "unified": "1F1F1-1F1EE", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1f1-1f1ee.png", - "sheet_x": 3, - "sheet_y": 6, - "short_name": "flag-li", - "short_names": ["flag-li"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 142, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "male-scientist": { - "char": "\ud83d\udc68\u200d\ud83d\udd2c", - "key": "male-scientist", - "keywords": ["male-scientist", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F468-200D-1F52C", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f468-200d-1f52c.png", - "sheet_x": 17, - "sheet_y": 9, - "short_name": "male-scientist", - "short_names": ["male-scientist"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 142, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F468-1F3FB-200D-1F52C", - "non_qualified": null, - "image": "1f468-1f3fb-200d-1f52c.png", - "sheet_x": 17, - "sheet_y": 10, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F468-1F3FC-200D-1F52C", - "non_qualified": null, - "image": "1f468-1f3fc-200d-1f52c.png", - "sheet_x": 17, - "sheet_y": 11, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F468-1F3FD-200D-1F52C", - "non_qualified": null, - "image": "1f468-1f3fd-200d-1f52c.png", - "sheet_x": 17, - "sheet_y": 12, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F468-1F3FE-200D-1F52C", - "non_qualified": null, - "image": "1f468-1f3fe-200d-1f52c.png", - "sheet_x": 17, - "sheet_y": 13, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F468-1F3FF-200D-1F52C", - "non_qualified": null, - "image": "1f468-1f3ff-200d-1f52c.png", - "sheet_x": 17, - "sheet_y": 14, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - } - } - }, - "gun": { - "char": "\ud83d\udd2b", - "key": "gun", - "keywords": ["gun", "PISTOL"], - "category": "objects", - "lib": { - "name": "PISTOL", - "unified": "1F52B", - "non_qualified": null, - "docomo": null, - "au": "E50A", - "softbank": "E113", - "google": "FE4F5", - "image": "1f52b.png", - "sheet_x": 28, - "sheet_y": 14, - "short_name": "gun", - "short_names": ["gun"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 142, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "clock4": { - "char": "\ud83d\udd53", - "key": "clock4", - "keywords": ["clock4", "CLOCK FACE FOUR OCLOCK"], - "category": "travel_and_places", - "lib": { - "name": "CLOCK FACE FOUR OCLOCK", - "unified": "1F553", - "non_qualified": null, - "docomo": "E6BA", - "au": "E594", - "softbank": "E027", - "google": "FE021", - "image": "1f553.png", - "sheet_x": 28, - "sheet_y": 42, - "short_name": "clock4", - "short_names": ["clock4"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 142, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "nine": { - "char": "9\ufe0f\u20e3", - "key": "nine", - "keywords": ["nine", "KEYCAP 9"], - "category": "symbols", - "lib": { - "name": "KEYCAP 9", - "unified": "0039-FE0F-20E3", - "non_qualified": "0039-20E3", - "docomo": "E6EA", - "au": "E52A", - "softbank": "E224", - "google": "FE836", - "image": "0039-fe0f-20e3.png", - "sheet_x": 0, - "sheet_y": 11, - "short_name": "nine", - "short_names": ["nine"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 143, - "added_in": "3.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - } - }, - "flag-lk": { - "char": "\ud83c\uddf1\ud83c\uddf0", - "key": "flag-lk", - "keywords": ["flag-lk", "Sri Lanka Flag"], - "category": "flags", - "lib": { - "name": "Sri Lanka Flag", - "unified": "1F1F1-1F1F0", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1f1-1f1f0.png", - "sheet_x": 3, - "sheet_y": 7, - "short_name": "flag-lk", - "short_names": ["flag-lk"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 143, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "bow_and_arrow": { - "char": "\ud83c\udff9", - "key": "bow_and_arrow", - "keywords": ["bow_and_arrow", "BOW AND ARROW"], - "category": "objects", - "lib": { - "name": "BOW AND ARROW", - "unified": "1F3F9", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f3f9.png", - "sheet_x": 12, - "sheet_y": 12, - "short_name": "bow_and_arrow", - "short_names": ["bow_and_arrow"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 143, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "female-scientist": { - "char": "\ud83d\udc69\u200d\ud83d\udd2c", - "key": "female-scientist", - "keywords": ["female-scientist", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F469-200D-1F52C", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f469-200d-1f52c.png", - "sheet_x": 19, - "sheet_y": 41, - "short_name": "female-scientist", - "short_names": ["female-scientist"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 143, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F469-1F3FB-200D-1F52C", - "non_qualified": null, - "image": "1f469-1f3fb-200d-1f52c.png", - "sheet_x": 19, - "sheet_y": 42, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F469-1F3FC-200D-1F52C", - "non_qualified": null, - "image": "1f469-1f3fc-200d-1f52c.png", - "sheet_x": 19, - "sheet_y": 43, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F469-1F3FD-200D-1F52C", - "non_qualified": null, - "image": "1f469-1f3fd-200d-1f52c.png", - "sheet_x": 19, - "sheet_y": 44, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F469-1F3FE-200D-1F52C", - "non_qualified": null, - "image": "1f469-1f3fe-200d-1f52c.png", - "sheet_x": 19, - "sheet_y": 45, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F469-1F3FF-200D-1F52C", - "non_qualified": null, - "image": "1f469-1f3ff-200d-1f52c.png", - "sheet_x": 19, - "sheet_y": 46, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - } - } - }, - "clock430": { - "char": "\ud83d\udd5f", - "key": "clock430", - "keywords": ["clock430", "CLOCK FACE FOUR-THIRTY"], - "category": "travel_and_places", - "lib": { - "name": "CLOCK FACE FOUR-THIRTY", - "unified": "1F55F", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f55f.png", - "sheet_x": 29, - "sheet_y": 1, - "short_name": "clock430", - "short_names": ["clock430"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 143, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-lr": { - "char": "\ud83c\uddf1\ud83c\uddf7", - "key": "flag-lr", - "keywords": ["flag-lr", "Liberia Flag"], - "category": "flags", - "lib": { - "name": "Liberia Flag", - "unified": "1F1F1-1F1F7", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1f1-1f1f7.png", - "sheet_x": 3, - "sheet_y": 8, - "short_name": "flag-lr", - "short_names": ["flag-lr"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 144, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "male-technologist": { - "char": "\ud83d\udc68\u200d\ud83d\udcbb", - "key": "male-technologist", - "keywords": ["male-technologist", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F468-200D-1F4BB", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f468-200d-1f4bb.png", - "sheet_x": 16, - "sheet_y": 44, - "short_name": "male-technologist", - "short_names": ["male-technologist"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 144, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F468-1F3FB-200D-1F4BB", - "non_qualified": null, - "image": "1f468-1f3fb-200d-1f4bb.png", - "sheet_x": 16, - "sheet_y": 45, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F468-1F3FC-200D-1F4BB", - "non_qualified": null, - "image": "1f468-1f3fc-200d-1f4bb.png", - "sheet_x": 16, - "sheet_y": 46, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F468-1F3FD-200D-1F4BB", - "non_qualified": null, - "image": "1f468-1f3fd-200d-1f4bb.png", - "sheet_x": 16, - "sheet_y": 47, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F468-1F3FE-200D-1F4BB", - "non_qualified": null, - "image": "1f468-1f3fe-200d-1f4bb.png", - "sheet_x": 16, - "sheet_y": 48, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F468-1F3FF-200D-1F4BB", - "non_qualified": null, - "image": "1f468-1f3ff-200d-1f4bb.png", - "sheet_x": 16, - "sheet_y": 49, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - } - } - }, - "keycap_ten": { - "char": "\ud83d\udd1f", - "key": "keycap_ten", - "keywords": ["keycap_ten", "KEYCAP TEN"], - "category": "symbols", - "lib": { - "name": "KEYCAP TEN", - "unified": "1F51F", - "non_qualified": null, - "docomo": null, - "au": "E52B", - "softbank": null, - "google": "FE83B", - "image": "1f51f.png", - "sheet_x": 28, - "sheet_y": 2, - "short_name": "keycap_ten", - "short_names": ["keycap_ten"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 144, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "clock5": { - "char": "\ud83d\udd54", - "key": "clock5", - "keywords": ["clock5", "CLOCK FACE FIVE OCLOCK"], - "category": "travel_and_places", - "lib": { - "name": "CLOCK FACE FIVE OCLOCK", - "unified": "1F554", - "non_qualified": null, - "docomo": "E6BA", - "au": "E594", - "softbank": "E028", - "google": "FE022", - "image": "1f554.png", - "sheet_x": 28, - "sheet_y": 43, - "short_name": "clock5", - "short_names": ["clock5"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 144, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "shield": { - "char": "\ud83d\udee1\ufe0f", - "key": "shield", - "keywords": ["shield", ""], - "category": "objects", - "lib": { - "name": null, - "unified": "1F6E1-FE0F", - "non_qualified": "1F6E1", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f6e1-fe0f.png", - "sheet_x": 37, - "sheet_y": 21, - "short_name": "shield", - "short_names": ["shield"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 144, - "added_in": "7.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "flag-ls": { - "char": "\ud83c\uddf1\ud83c\uddf8", - "key": "flag-ls", - "keywords": ["flag-ls", "Lesotho Flag"], - "category": "flags", - "lib": { - "name": "Lesotho Flag", - "unified": "1F1F1-1F1F8", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1f1-1f1f8.png", - "sheet_x": 3, - "sheet_y": 9, - "short_name": "flag-ls", - "short_names": ["flag-ls"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 145, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "female-technologist": { - "char": "\ud83d\udc69\u200d\ud83d\udcbb", - "key": "female-technologist", - "keywords": ["female-technologist", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F469-200D-1F4BB", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f469-200d-1f4bb.png", - "sheet_x": 19, - "sheet_y": 23, - "short_name": "female-technologist", - "short_names": ["female-technologist"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 145, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F469-1F3FB-200D-1F4BB", - "non_qualified": null, - "image": "1f469-1f3fb-200d-1f4bb.png", - "sheet_x": 19, - "sheet_y": 24, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F469-1F3FC-200D-1F4BB", - "non_qualified": null, - "image": "1f469-1f3fc-200d-1f4bb.png", - "sheet_x": 19, - "sheet_y": 25, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F469-1F3FD-200D-1F4BB", - "non_qualified": null, - "image": "1f469-1f3fd-200d-1f4bb.png", - "sheet_x": 19, - "sheet_y": 26, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F469-1F3FE-200D-1F4BB", - "non_qualified": null, - "image": "1f469-1f3fe-200d-1f4bb.png", - "sheet_x": 19, - "sheet_y": 27, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F469-1F3FF-200D-1F4BB", - "non_qualified": null, - "image": "1f469-1f3ff-200d-1f4bb.png", - "sheet_x": 19, - "sheet_y": 28, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - } - } - }, - "wrench": { - "char": "\ud83d\udd27", - "key": "wrench", - "keywords": ["wrench", "WRENCH"], - "category": "objects", - "lib": { - "name": "WRENCH", - "unified": "1F527", - "non_qualified": null, - "docomo": "E718", - "au": "E587", - "softbank": null, - "google": "FE4C9", - "image": "1f527.png", - "sheet_x": 28, - "sheet_y": 10, - "short_name": "wrench", - "short_names": ["wrench"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 145, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "clock530": { - "char": "\ud83d\udd60", - "key": "clock530", - "keywords": ["clock530", "CLOCK FACE FIVE-THIRTY"], - "category": "travel_and_places", - "lib": { - "name": "CLOCK FACE FIVE-THIRTY", - "unified": "1F560", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f560.png", - "sheet_x": 29, - "sheet_y": 2, - "short_name": "clock530", - "short_names": ["clock530"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 145, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-lt": { - "char": "\ud83c\uddf1\ud83c\uddf9", - "key": "flag-lt", - "keywords": ["flag-lt", "Lithuania Flag"], - "category": "flags", - "lib": { - "name": "Lithuania Flag", - "unified": "1F1F1-1F1F9", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1f1-1f1f9.png", - "sheet_x": 3, - "sheet_y": 10, - "short_name": "flag-lt", - "short_names": ["flag-lt"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 146, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "male-singer": { - "char": "\ud83d\udc68\u200d\ud83c\udfa4", - "key": "male-singer", - "keywords": ["male-singer", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F468-200D-1F3A4", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f468-200d-1f3a4.png", - "sheet_x": 16, - "sheet_y": 5, - "short_name": "male-singer", - "short_names": ["male-singer"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 146, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F468-1F3FB-200D-1F3A4", - "non_qualified": null, - "image": "1f468-1f3fb-200d-1f3a4.png", - "sheet_x": 16, - "sheet_y": 6, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F468-1F3FC-200D-1F3A4", - "non_qualified": null, - "image": "1f468-1f3fc-200d-1f3a4.png", - "sheet_x": 16, - "sheet_y": 7, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F468-1F3FD-200D-1F3A4", - "non_qualified": null, - "image": "1f468-1f3fd-200d-1f3a4.png", - "sheet_x": 16, - "sheet_y": 8, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F468-1F3FE-200D-1F3A4", - "non_qualified": null, - "image": "1f468-1f3fe-200d-1f3a4.png", - "sheet_x": 16, - "sheet_y": 9, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F468-1F3FF-200D-1F3A4", - "non_qualified": null, - "image": "1f468-1f3ff-200d-1f3a4.png", - "sheet_x": 16, - "sheet_y": 10, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - } - } - }, - "capital_abcd": { - "char": "\ud83d\udd20", - "key": "capital_abcd", - "keywords": ["capital_abcd", "INPUT SYMBOL FOR LATIN CAPITAL LETTERS"], - "category": "symbols", - "lib": { - "name": "INPUT SYMBOL FOR LATIN CAPITAL LETTERS", - "unified": "1F520", - "non_qualified": null, - "docomo": null, - "au": "EAFD", - "softbank": null, - "google": "FEB7C", - "image": "1f520.png", - "sheet_x": 28, - "sheet_y": 3, - "short_name": "capital_abcd", - "short_names": ["capital_abcd"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 146, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "nut_and_bolt": { - "char": "\ud83d\udd29", - "key": "nut_and_bolt", - "keywords": ["nut_and_bolt", "NUT AND BOLT"], - "category": "objects", - "lib": { - "name": "NUT AND BOLT", - "unified": "1F529", - "non_qualified": null, - "docomo": null, - "au": "E581", - "softbank": null, - "google": "FE4CB", - "image": "1f529.png", - "sheet_x": 28, - "sheet_y": 12, - "short_name": "nut_and_bolt", - "short_names": ["nut_and_bolt"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 146, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "clock6": { - "char": "\ud83d\udd55", - "key": "clock6", - "keywords": ["clock6", "CLOCK FACE SIX OCLOCK"], - "category": "travel_and_places", - "lib": { - "name": "CLOCK FACE SIX OCLOCK", - "unified": "1F555", - "non_qualified": null, - "docomo": "E6BA", - "au": "E594", - "softbank": "E029", - "google": "FE023", - "image": "1f555.png", - "sheet_x": 28, - "sheet_y": 44, - "short_name": "clock6", - "short_names": ["clock6"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 146, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-lu": { - "char": "\ud83c\uddf1\ud83c\uddfa", - "key": "flag-lu", - "keywords": ["flag-lu", "Luxembourg Flag"], - "category": "flags", - "lib": { - "name": "Luxembourg Flag", - "unified": "1F1F1-1F1FA", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1f1-1f1fa.png", - "sheet_x": 3, - "sheet_y": 11, - "short_name": "flag-lu", - "short_names": ["flag-lu"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 147, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "female-singer": { - "char": "\ud83d\udc69\u200d\ud83c\udfa4", - "key": "female-singer", - "keywords": ["female-singer", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F469-200D-1F3A4", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f469-200d-1f3a4.png", - "sheet_x": 18, - "sheet_y": 42, - "short_name": "female-singer", - "short_names": ["female-singer"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 147, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F469-1F3FB-200D-1F3A4", - "non_qualified": null, - "image": "1f469-1f3fb-200d-1f3a4.png", - "sheet_x": 18, - "sheet_y": 43, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F469-1F3FC-200D-1F3A4", - "non_qualified": null, - "image": "1f469-1f3fc-200d-1f3a4.png", - "sheet_x": 18, - "sheet_y": 44, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F469-1F3FD-200D-1F3A4", - "non_qualified": null, - "image": "1f469-1f3fd-200d-1f3a4.png", - "sheet_x": 18, - "sheet_y": 45, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F469-1F3FE-200D-1F3A4", - "non_qualified": null, - "image": "1f469-1f3fe-200d-1f3a4.png", - "sheet_x": 18, - "sheet_y": 46, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F469-1F3FF-200D-1F3A4", - "non_qualified": null, - "image": "1f469-1f3ff-200d-1f3a4.png", - "sheet_x": 18, - "sheet_y": 47, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - } - } - }, - "abcd": { - "char": "\ud83d\udd21", - "key": "abcd", - "keywords": ["abcd", "INPUT SYMBOL FOR LATIN SMALL LETTERS"], - "category": "symbols", - "lib": { - "name": "INPUT SYMBOL FOR LATIN SMALL LETTERS", - "unified": "1F521", - "non_qualified": null, - "docomo": null, - "au": "EAFE", - "softbank": null, - "google": "FEB7D", - "image": "1f521.png", - "sheet_x": 28, - "sheet_y": 4, - "short_name": "abcd", - "short_names": ["abcd"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 147, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "clock630": { - "char": "\ud83d\udd61", - "key": "clock630", - "keywords": ["clock630", "CLOCK FACE SIX-THIRTY"], - "category": "travel_and_places", - "lib": { - "name": "CLOCK FACE SIX-THIRTY", - "unified": "1F561", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f561.png", - "sheet_x": 29, - "sheet_y": 3, - "short_name": "clock630", - "short_names": ["clock630"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 147, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "gear": { - "char": "\u2699\ufe0f", - "key": "gear", - "keywords": ["gear", ""], - "category": "objects", - "lib": { - "name": null, - "unified": "2699-FE0F", - "non_qualified": "2699", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "2699-fe0f.png", - "sheet_x": 50, - "sheet_y": 8, - "short_name": "gear", - "short_names": ["gear"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 147, - "added_in": "4.1", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "flag-lv": { - "char": "\ud83c\uddf1\ud83c\uddfb", - "key": "flag-lv", - "keywords": ["flag-lv", "Latvia Flag"], - "category": "flags", - "lib": { - "name": "Latvia Flag", - "unified": "1F1F1-1F1FB", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1f1-1f1fb.png", - "sheet_x": 3, - "sheet_y": 12, - "short_name": "flag-lv", - "short_names": ["flag-lv"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 148, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "male-artist": { - "char": "\ud83d\udc68\u200d\ud83c\udfa8", - "key": "male-artist", - "keywords": ["male-artist", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F468-200D-1F3A8", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f468-200d-1f3a8.png", - "sheet_x": 16, - "sheet_y": 11, - "short_name": "male-artist", - "short_names": ["male-artist"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 148, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F468-1F3FB-200D-1F3A8", - "non_qualified": null, - "image": "1f468-1f3fb-200d-1f3a8.png", - "sheet_x": 16, - "sheet_y": 12, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F468-1F3FC-200D-1F3A8", - "non_qualified": null, - "image": "1f468-1f3fc-200d-1f3a8.png", - "sheet_x": 16, - "sheet_y": 13, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F468-1F3FD-200D-1F3A8", - "non_qualified": null, - "image": "1f468-1f3fd-200d-1f3a8.png", - "sheet_x": 16, - "sheet_y": 14, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F468-1F3FE-200D-1F3A8", - "non_qualified": null, - "image": "1f468-1f3fe-200d-1f3a8.png", - "sheet_x": 16, - "sheet_y": 15, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F468-1F3FF-200D-1F3A8", - "non_qualified": null, - "image": "1f468-1f3ff-200d-1f3a8.png", - "sheet_x": 16, - "sheet_y": 16, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - } - } - }, - "clock7": { - "char": "\ud83d\udd56", - "key": "clock7", - "keywords": ["clock7", "CLOCK FACE SEVEN OCLOCK"], - "category": "travel_and_places", - "lib": { - "name": "CLOCK FACE SEVEN OCLOCK", - "unified": "1F556", - "non_qualified": null, - "docomo": "E6BA", - "au": "E594", - "softbank": "E02A", - "google": "FE024", - "image": "1f556.png", - "sheet_x": 28, - "sheet_y": 45, - "short_name": "clock7", - "short_names": ["clock7"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 148, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "compression": { - "char": "\ud83d\udddc\ufe0f", - "key": "compression", - "keywords": ["compression", ""], - "category": "objects", - "lib": { - "name": null, - "unified": "1F5DC-FE0F", - "non_qualified": "1F5DC", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f5dc-fe0f.png", - "sheet_x": 30, - "sheet_y": 29, - "short_name": "compression", - "short_names": ["compression"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 148, - "added_in": "7.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "flag-ly": { - "char": "\ud83c\uddf1\ud83c\uddfe", - "key": "flag-ly", - "keywords": ["flag-ly", "Libya Flag"], - "category": "flags", - "lib": { - "name": "Libya Flag", - "unified": "1F1F1-1F1FE", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1f1-1f1fe.png", - "sheet_x": 3, - "sheet_y": 13, - "short_name": "flag-ly", - "short_names": ["flag-ly"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 149, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "female-artist": { - "char": "\ud83d\udc69\u200d\ud83c\udfa8", - "key": "female-artist", - "keywords": ["female-artist", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F469-200D-1F3A8", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f469-200d-1f3a8.png", - "sheet_x": 18, - "sheet_y": 48, - "short_name": "female-artist", - "short_names": ["female-artist"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 149, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F469-1F3FB-200D-1F3A8", - "non_qualified": null, - "image": "1f469-1f3fb-200d-1f3a8.png", - "sheet_x": 18, - "sheet_y": 49, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F469-1F3FC-200D-1F3A8", - "non_qualified": null, - "image": "1f469-1f3fc-200d-1f3a8.png", - "sheet_x": 18, - "sheet_y": 50, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F469-1F3FD-200D-1F3A8", - "non_qualified": null, - "image": "1f469-1f3fd-200d-1f3a8.png", - "sheet_x": 18, - "sheet_y": 51, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F469-1F3FE-200D-1F3A8", - "non_qualified": null, - "image": "1f469-1f3fe-200d-1f3a8.png", - "sheet_x": 18, - "sheet_y": 52, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F469-1F3FF-200D-1F3A8", - "non_qualified": null, - "image": "1f469-1f3ff-200d-1f3a8.png", - "sheet_x": 19, - "sheet_y": 0, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - } - } - }, - "symbols": { - "char": "\ud83d\udd23", - "key": "symbols", - "keywords": ["symbols", "INPUT SYMBOL FOR SYMBOLS"], - "category": "symbols", - "lib": { - "name": "INPUT SYMBOL FOR SYMBOLS", - "unified": "1F523", - "non_qualified": null, - "docomo": null, - "au": "EB00", - "softbank": null, - "google": "FEB7F", - "image": "1f523.png", - "sheet_x": 28, - "sheet_y": 6, - "short_name": "symbols", - "short_names": ["symbols"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 149, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "clock730": { - "char": "\ud83d\udd62", - "key": "clock730", - "keywords": ["clock730", "CLOCK FACE SEVEN-THIRTY"], - "category": "travel_and_places", - "lib": { - "name": "CLOCK FACE SEVEN-THIRTY", - "unified": "1F562", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f562.png", - "sheet_x": 29, - "sheet_y": 4, - "short_name": "clock730", - "short_names": ["clock730"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 149, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "scales": { - "char": "\u2696\ufe0f", - "key": "scales", - "keywords": ["scales", ""], - "category": "objects", - "lib": { - "name": null, - "unified": "2696-FE0F", - "non_qualified": "2696", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "2696-fe0f.png", - "sheet_x": 50, - "sheet_y": 6, - "short_name": "scales", - "short_names": ["scales"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 149, - "added_in": "4.1", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "flag-ma": { - "char": "\ud83c\uddf2\ud83c\udde6", - "key": "flag-ma", - "keywords": ["flag-ma", "Morocco Flag"], - "category": "flags", - "lib": { - "name": "Morocco Flag", - "unified": "1F1F2-1F1E6", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1f2-1f1e6.png", - "sheet_x": 3, - "sheet_y": 14, - "short_name": "flag-ma", - "short_names": ["flag-ma"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 150, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "male-pilot": { - "char": "\ud83d\udc68\u200d\u2708\ufe0f", - "key": "male-pilot", - "keywords": ["male-pilot", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F468-200D-2708-FE0F", - "non_qualified": "1F468-200D-2708", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f468-200d-2708-fe0f.png", - "sheet_x": 18, - "sheet_y": 10, - "short_name": "male-pilot", - "short_names": ["male-pilot"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 150, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F468-1F3FB-200D-2708-FE0F", - "non_qualified": "1F468-1F3FB-200D-2708", - "image": "1f468-1f3fb-200d-2708-fe0f.png", - "sheet_x": 18, - "sheet_y": 11, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F468-1F3FC-200D-2708-FE0F", - "non_qualified": "1F468-1F3FC-200D-2708", - "image": "1f468-1f3fc-200d-2708-fe0f.png", - "sheet_x": 18, - "sheet_y": 12, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F468-1F3FD-200D-2708-FE0F", - "non_qualified": "1F468-1F3FD-200D-2708", - "image": "1f468-1f3fd-200d-2708-fe0f.png", - "sheet_x": 18, - "sheet_y": 13, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F468-1F3FE-200D-2708-FE0F", - "non_qualified": "1F468-1F3FE-200D-2708", - "image": "1f468-1f3fe-200d-2708-fe0f.png", - "sheet_x": 18, - "sheet_y": 14, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F468-1F3FF-200D-2708-FE0F", - "non_qualified": "1F468-1F3FF-200D-2708", - "image": "1f468-1f3ff-200d-2708-fe0f.png", - "sheet_x": 18, - "sheet_y": 15, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - } - } - } - }, - "link": { - "char": "\ud83d\udd17", - "key": "link", - "keywords": ["link", "LINK SYMBOL"], - "category": "objects", - "lib": { - "name": "LINK SYMBOL", - "unified": "1F517", - "non_qualified": null, - "docomo": null, - "au": "E58A", - "softbank": null, - "google": "FEB4B", - "image": "1f517.png", - "sheet_x": 27, - "sheet_y": 47, - "short_name": "link", - "short_names": ["link"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 150, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "abc": { - "char": "\ud83d\udd24", - "key": "abc", - "keywords": ["abc", "INPUT SYMBOL FOR LATIN LETTERS"], - "category": "symbols", - "lib": { - "name": "INPUT SYMBOL FOR LATIN LETTERS", - "unified": "1F524", - "non_qualified": null, - "docomo": null, - "au": "EB55", - "softbank": null, - "google": "FEB80", - "image": "1f524.png", - "sheet_x": 28, - "sheet_y": 7, - "short_name": "abc", - "short_names": ["abc"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 150, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "clock8": { - "char": "\ud83d\udd57", - "key": "clock8", - "keywords": ["clock8", "CLOCK FACE EIGHT OCLOCK"], - "category": "travel_and_places", - "lib": { - "name": "CLOCK FACE EIGHT OCLOCK", - "unified": "1F557", - "non_qualified": null, - "docomo": "E6BA", - "au": "E594", - "softbank": "E02B", - "google": "FE025", - "image": "1f557.png", - "sheet_x": 28, - "sheet_y": 46, - "short_name": "clock8", - "short_names": ["clock8"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 150, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "a": { - "char": "\ud83c\udd70\ufe0f", - "key": "a", - "keywords": ["a", "NEGATIVE SQUARED LATIN CAPITAL LETTER A"], - "category": "symbols", - "lib": { - "name": "NEGATIVE SQUARED LATIN CAPITAL LETTER A", - "unified": "1F170-FE0F", - "non_qualified": "1F170", - "docomo": null, - "au": "EB26", - "softbank": "E532", - "google": "FE50B", - "image": "1f170-fe0f.png", - "sheet_x": 0, - "sheet_y": 16, - "short_name": "a", - "short_names": ["a"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 151, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-mc": { - "char": "\ud83c\uddf2\ud83c\udde8", - "key": "flag-mc", - "keywords": ["flag-mc", "Monaco Flag"], - "category": "flags", - "lib": { - "name": "Monaco Flag", - "unified": "1F1F2-1F1E8", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1f2-1f1e8.png", - "sheet_x": 3, - "sheet_y": 15, - "short_name": "flag-mc", - "short_names": ["flag-mc"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 151, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "female-pilot": { - "char": "\ud83d\udc69\u200d\u2708\ufe0f", - "key": "female-pilot", - "keywords": ["female-pilot", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F469-200D-2708-FE0F", - "non_qualified": "1F469-200D-2708", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f469-200d-2708-fe0f.png", - "sheet_x": 20, - "sheet_y": 42, - "short_name": "female-pilot", - "short_names": ["female-pilot"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 151, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F469-1F3FB-200D-2708-FE0F", - "non_qualified": "1F469-1F3FB-200D-2708", - "image": "1f469-1f3fb-200d-2708-fe0f.png", - "sheet_x": 20, - "sheet_y": 43, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F469-1F3FC-200D-2708-FE0F", - "non_qualified": "1F469-1F3FC-200D-2708", - "image": "1f469-1f3fc-200d-2708-fe0f.png", - "sheet_x": 20, - "sheet_y": 44, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F469-1F3FD-200D-2708-FE0F", - "non_qualified": "1F469-1F3FD-200D-2708", - "image": "1f469-1f3fd-200d-2708-fe0f.png", - "sheet_x": 20, - "sheet_y": 45, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F469-1F3FE-200D-2708-FE0F", - "non_qualified": "1F469-1F3FE-200D-2708", - "image": "1f469-1f3fe-200d-2708-fe0f.png", - "sheet_x": 20, - "sheet_y": 46, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F469-1F3FF-200D-2708-FE0F", - "non_qualified": "1F469-1F3FF-200D-2708", - "image": "1f469-1f3ff-200d-2708-fe0f.png", - "sheet_x": 20, - "sheet_y": 47, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - } - } - } - }, - "clock830": { - "char": "\ud83d\udd63", - "key": "clock830", - "keywords": ["clock830", "CLOCK FACE EIGHT-THIRTY"], - "category": "travel_and_places", - "lib": { - "name": "CLOCK FACE EIGHT-THIRTY", - "unified": "1F563", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f563.png", - "sheet_x": 29, - "sheet_y": 5, - "short_name": "clock830", - "short_names": ["clock830"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 151, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "chains": { - "char": "\u26d3\ufe0f", - "key": "chains", - "keywords": ["chains", ""], - "category": "objects", - "lib": { - "name": null, - "unified": "26D3-FE0F", - "non_qualified": "26D3", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "26d3-fe0f.png", - "sheet_x": 50, - "sheet_y": 25, - "short_name": "chains", - "short_names": ["chains"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 151, - "added_in": "5.2", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "ab": { - "char": "\ud83c\udd8e", - "key": "ab", - "keywords": ["ab", "NEGATIVE SQUARED AB"], - "category": "symbols", - "lib": { - "name": "NEGATIVE SQUARED AB", - "unified": "1F18E", - "non_qualified": null, - "docomo": null, - "au": "EB29", - "softbank": "E534", - "google": "FE50D", - "image": "1f18e.png", - "sheet_x": 0, - "sheet_y": 20, - "short_name": "ab", - "short_names": ["ab"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 152, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-md": { - "char": "\ud83c\uddf2\ud83c\udde9", - "key": "flag-md", - "keywords": ["flag-md", "Moldova Flag"], - "category": "flags", - "lib": { - "name": "Moldova Flag", - "unified": "1F1F2-1F1E9", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1f2-1f1e9.png", - "sheet_x": 3, - "sheet_y": 16, - "short_name": "flag-md", - "short_names": ["flag-md"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 152, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "male-astronaut": { - "char": "\ud83d\udc68\u200d\ud83d\ude80", - "key": "male-astronaut", - "keywords": ["male-astronaut", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F468-200D-1F680", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f468-200d-1f680.png", - "sheet_x": 17, - "sheet_y": 15, - "short_name": "male-astronaut", - "short_names": ["male-astronaut"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 152, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F468-1F3FB-200D-1F680", - "non_qualified": null, - "image": "1f468-1f3fb-200d-1f680.png", - "sheet_x": 17, - "sheet_y": 16, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F468-1F3FC-200D-1F680", - "non_qualified": null, - "image": "1f468-1f3fc-200d-1f680.png", - "sheet_x": 17, - "sheet_y": 17, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F468-1F3FD-200D-1F680", - "non_qualified": null, - "image": "1f468-1f3fd-200d-1f680.png", - "sheet_x": 17, - "sheet_y": 18, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F468-1F3FE-200D-1F680", - "non_qualified": null, - "image": "1f468-1f3fe-200d-1f680.png", - "sheet_x": 17, - "sheet_y": 19, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F468-1F3FF-200D-1F680", - "non_qualified": null, - "image": "1f468-1f3ff-200d-1f680.png", - "sheet_x": 17, - "sheet_y": 20, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - } - } - }, - "clock9": { - "char": "\ud83d\udd58", - "key": "clock9", - "keywords": ["clock9", "CLOCK FACE NINE OCLOCK"], - "category": "travel_and_places", - "lib": { - "name": "CLOCK FACE NINE OCLOCK", - "unified": "1F558", - "non_qualified": null, - "docomo": "E6BA", - "au": "E594", - "softbank": "E02C", - "google": "FE026", - "image": "1f558.png", - "sheet_x": 28, - "sheet_y": 47, - "short_name": "clock9", - "short_names": ["clock9"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 152, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "toolbox": { - "char": "\ud83e\uddf0", - "key": "toolbox", - "keywords": ["toolbox", "TOOLBOX"], - "category": "objects", - "lib": { - "name": "TOOLBOX", - "unified": "1F9F0", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f9f0.png", - "sheet_x": 48, - "sheet_y": 4, - "short_name": "toolbox", - "short_names": ["toolbox"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 152, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - } - }, - "b": { - "char": "\ud83c\udd71\ufe0f", - "key": "b", - "keywords": ["b", "NEGATIVE SQUARED LATIN CAPITAL LETTER B"], - "category": "symbols", - "lib": { - "name": "NEGATIVE SQUARED LATIN CAPITAL LETTER B", - "unified": "1F171-FE0F", - "non_qualified": "1F171", - "docomo": null, - "au": "EB27", - "softbank": "E533", - "google": "FE50C", - "image": "1f171-fe0f.png", - "sheet_x": 0, - "sheet_y": 17, - "short_name": "b", - "short_names": ["b"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 153, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-me": { - "char": "\ud83c\uddf2\ud83c\uddea", - "key": "flag-me", - "keywords": ["flag-me", "Montenegro Flag"], - "category": "flags", - "lib": { - "name": "Montenegro Flag", - "unified": "1F1F2-1F1EA", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1f2-1f1ea.png", - "sheet_x": 3, - "sheet_y": 17, - "short_name": "flag-me", - "short_names": ["flag-me"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 153, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "female-astronaut": { - "char": "\ud83d\udc69\u200d\ud83d\ude80", - "key": "female-astronaut", - "keywords": ["female-astronaut", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F469-200D-1F680", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f469-200d-1f680.png", - "sheet_x": 19, - "sheet_y": 47, - "short_name": "female-astronaut", - "short_names": ["female-astronaut"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 153, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F469-1F3FB-200D-1F680", - "non_qualified": null, - "image": "1f469-1f3fb-200d-1f680.png", - "sheet_x": 19, - "sheet_y": 48, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F469-1F3FC-200D-1F680", - "non_qualified": null, - "image": "1f469-1f3fc-200d-1f680.png", - "sheet_x": 19, - "sheet_y": 49, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F469-1F3FD-200D-1F680", - "non_qualified": null, - "image": "1f469-1f3fd-200d-1f680.png", - "sheet_x": 19, - "sheet_y": 50, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F469-1F3FE-200D-1F680", - "non_qualified": null, - "image": "1f469-1f3fe-200d-1f680.png", - "sheet_x": 19, - "sheet_y": 51, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F469-1F3FF-200D-1F680", - "non_qualified": null, - "image": "1f469-1f3ff-200d-1f680.png", - "sheet_x": 19, - "sheet_y": 52, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - } - } - }, - "clock930": { - "char": "\ud83d\udd64", - "key": "clock930", - "keywords": ["clock930", "CLOCK FACE NINE-THIRTY"], - "category": "travel_and_places", - "lib": { - "name": "CLOCK FACE NINE-THIRTY", - "unified": "1F564", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f564.png", - "sheet_x": 29, - "sheet_y": 6, - "short_name": "clock930", - "short_names": ["clock930"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 153, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "magnet": { - "char": "\ud83e\uddf2", - "key": "magnet", - "keywords": ["magnet", "MAGNET"], - "category": "objects", - "lib": { - "name": "MAGNET", - "unified": "1F9F2", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f9f2.png", - "sheet_x": 48, - "sheet_y": 6, - "short_name": "magnet", - "short_names": ["magnet"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 153, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - } - }, - "cl": { - "char": "\ud83c\udd91", - "key": "cl", - "keywords": ["cl", "SQUARED CL"], - "category": "symbols", - "lib": { - "name": "SQUARED CL", - "unified": "1F191", - "non_qualified": null, - "docomo": "E6DB", - "au": "E5AB", - "softbank": null, - "google": "FEB84", - "image": "1f191.png", - "sheet_x": 0, - "sheet_y": 21, - "short_name": "cl", - "short_names": ["cl"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 154, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-mf": { - "char": "\ud83c\uddf2\ud83c\uddeb", - "key": "flag-mf", - "keywords": ["flag-mf", "St. Martin Flag"], - "category": "flags", - "lib": { - "name": "St. Martin Flag", - "unified": "1F1F2-1F1EB", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1f2-1f1eb.png", - "sheet_x": 3, - "sheet_y": 18, - "short_name": "flag-mf", - "short_names": ["flag-mf"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 154, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "male-firefighter": { - "char": "\ud83d\udc68\u200d\ud83d\ude92", - "key": "male-firefighter", - "keywords": ["male-firefighter", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F468-200D-1F692", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f468-200d-1f692.png", - "sheet_x": 17, - "sheet_y": 21, - "short_name": "male-firefighter", - "short_names": ["male-firefighter"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 154, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F468-1F3FB-200D-1F692", - "non_qualified": null, - "image": "1f468-1f3fb-200d-1f692.png", - "sheet_x": 17, - "sheet_y": 22, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F468-1F3FC-200D-1F692", - "non_qualified": null, - "image": "1f468-1f3fc-200d-1f692.png", - "sheet_x": 17, - "sheet_y": 23, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F468-1F3FD-200D-1F692", - "non_qualified": null, - "image": "1f468-1f3fd-200d-1f692.png", - "sheet_x": 17, - "sheet_y": 24, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F468-1F3FE-200D-1F692", - "non_qualified": null, - "image": "1f468-1f3fe-200d-1f692.png", - "sheet_x": 17, - "sheet_y": 25, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F468-1F3FF-200D-1F692", - "non_qualified": null, - "image": "1f468-1f3ff-200d-1f692.png", - "sheet_x": 17, - "sheet_y": 26, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - } - } - }, - "clock10": { - "char": "\ud83d\udd59", - "key": "clock10", - "keywords": ["clock10", "CLOCK FACE TEN OCLOCK"], - "category": "travel_and_places", - "lib": { - "name": "CLOCK FACE TEN OCLOCK", - "unified": "1F559", - "non_qualified": null, - "docomo": "E6BA", - "au": "E594", - "softbank": "E02D", - "google": "FE027", - "image": "1f559.png", - "sheet_x": 28, - "sheet_y": 48, - "short_name": "clock10", - "short_names": ["clock10"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 154, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "alembic": { - "char": "\u2697\ufe0f", - "key": "alembic", - "keywords": ["alembic", ""], - "category": "objects", - "lib": { - "name": null, - "unified": "2697-FE0F", - "non_qualified": "2697", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "2697-fe0f.png", - "sheet_x": 50, - "sheet_y": 7, - "short_name": "alembic", - "short_names": ["alembic"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 154, - "added_in": "4.1", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "cool": { - "char": "\ud83c\udd92", - "key": "cool", - "keywords": ["cool", "SQUARED COOL"], - "category": "symbols", - "lib": { - "name": "SQUARED COOL", - "unified": "1F192", - "non_qualified": null, - "docomo": null, - "au": "EA85", - "softbank": "E214", - "google": "FEB38", - "image": "1f192.png", - "sheet_x": 0, - "sheet_y": 22, - "short_name": "cool", - "short_names": ["cool"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 155, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-mg": { - "char": "\ud83c\uddf2\ud83c\uddec", - "key": "flag-mg", - "keywords": ["flag-mg", "Madagascar Flag"], - "category": "flags", - "lib": { - "name": "Madagascar Flag", - "unified": "1F1F2-1F1EC", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1f2-1f1ec.png", - "sheet_x": 3, - "sheet_y": 19, - "short_name": "flag-mg", - "short_names": ["flag-mg"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 155, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "female-firefighter": { - "char": "\ud83d\udc69\u200d\ud83d\ude92", - "key": "female-firefighter", - "keywords": ["female-firefighter", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F469-200D-1F692", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f469-200d-1f692.png", - "sheet_x": 20, - "sheet_y": 0, - "short_name": "female-firefighter", - "short_names": ["female-firefighter"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 155, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F469-1F3FB-200D-1F692", - "non_qualified": null, - "image": "1f469-1f3fb-200d-1f692.png", - "sheet_x": 20, - "sheet_y": 1, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F469-1F3FC-200D-1F692", - "non_qualified": null, - "image": "1f469-1f3fc-200d-1f692.png", - "sheet_x": 20, - "sheet_y": 2, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F469-1F3FD-200D-1F692", - "non_qualified": null, - "image": "1f469-1f3fd-200d-1f692.png", - "sheet_x": 20, - "sheet_y": 3, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F469-1F3FE-200D-1F692", - "non_qualified": null, - "image": "1f469-1f3fe-200d-1f692.png", - "sheet_x": 20, - "sheet_y": 4, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F469-1F3FF-200D-1F692", - "non_qualified": null, - "image": "1f469-1f3ff-200d-1f692.png", - "sheet_x": 20, - "sheet_y": 5, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - } - } - }, - "clock1030": { - "char": "\ud83d\udd65", - "key": "clock1030", - "keywords": ["clock1030", "CLOCK FACE TEN-THIRTY"], - "category": "travel_and_places", - "lib": { - "name": "CLOCK FACE TEN-THIRTY", - "unified": "1F565", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f565.png", - "sheet_x": 29, - "sheet_y": 7, - "short_name": "clock1030", - "short_names": ["clock1030"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 155, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "test_tube": { - "char": "\ud83e\uddea", - "key": "test_tube", - "keywords": ["test_tube", "TEST TUBE"], - "category": "objects", - "lib": { - "name": "TEST TUBE", - "unified": "1F9EA", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f9ea.png", - "sheet_x": 47, - "sheet_y": 51, - "short_name": "test_tube", - "short_names": ["test_tube"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 155, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - } - }, - "free": { - "char": "\ud83c\udd93", - "key": "free", - "keywords": ["free", "SQUARED FREE"], - "category": "symbols", - "lib": { - "name": "SQUARED FREE", - "unified": "1F193", - "non_qualified": null, - "docomo": "E6D7", - "au": "E578", - "softbank": null, - "google": "FEB21", - "image": "1f193.png", - "sheet_x": 0, - "sheet_y": 23, - "short_name": "free", - "short_names": ["free"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 156, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-mh": { - "char": "\ud83c\uddf2\ud83c\udded", - "key": "flag-mh", - "keywords": ["flag-mh", "Marshall Islands Flag"], - "category": "flags", - "lib": { - "name": "Marshall Islands Flag", - "unified": "1F1F2-1F1ED", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1f2-1f1ed.png", - "sheet_x": 3, - "sheet_y": 20, - "short_name": "flag-mh", - "short_names": ["flag-mh"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 156, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "clock11": { - "char": "\ud83d\udd5a", - "key": "clock11", - "keywords": ["clock11", "CLOCK FACE ELEVEN OCLOCK"], - "category": "travel_and_places", - "lib": { - "name": "CLOCK FACE ELEVEN OCLOCK", - "unified": "1F55A", - "non_qualified": null, - "docomo": "E6BA", - "au": "E594", - "softbank": "E02E", - "google": "FE028", - "image": "1f55a.png", - "sheet_x": 28, - "sheet_y": 49, - "short_name": "clock11", - "short_names": ["clock11"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 156, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "petri_dish": { - "char": "\ud83e\uddeb", - "key": "petri_dish", - "keywords": ["petri_dish", "PETRI DISH"], - "category": "objects", - "lib": { - "name": "PETRI DISH", - "unified": "1F9EB", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f9eb.png", - "sheet_x": 47, - "sheet_y": 52, - "short_name": "petri_dish", - "short_names": ["petri_dish"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 156, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - } - }, - "flag-mk": { - "char": "\ud83c\uddf2\ud83c\uddf0", - "key": "flag-mk", - "keywords": ["flag-mk", "Macedonia Flag"], - "category": "flags", - "lib": { - "name": "Macedonia Flag", - "unified": "1F1F2-1F1F0", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1f2-1f1f0.png", - "sheet_x": 3, - "sheet_y": 21, - "short_name": "flag-mk", - "short_names": ["flag-mk"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 157, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "male-police-officer": { - "char": "\ud83d\udc6e\u200d\u2642\ufe0f", - "key": "male-police-officer", - "keywords": ["male-police-officer", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F46E-200D-2642-FE0F", - "non_qualified": "1F46E-200D-2642", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f46e-200d-2642-fe0f.png", - "sheet_x": 21, - "sheet_y": 15, - "short_name": "male-police-officer", - "short_names": ["male-police-officer"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 157, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F46E-1F3FB-200D-2642-FE0F", - "non_qualified": "1F46E-1F3FB-200D-2642", - "image": "1f46e-1f3fb-200d-2642-fe0f.png", - "sheet_x": 21, - "sheet_y": 16, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F46E-1F3FC-200D-2642-FE0F", - "non_qualified": "1F46E-1F3FC-200D-2642", - "image": "1f46e-1f3fc-200d-2642-fe0f.png", - "sheet_x": 21, - "sheet_y": 17, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F46E-1F3FD-200D-2642-FE0F", - "non_qualified": "1F46E-1F3FD-200D-2642", - "image": "1f46e-1f3fd-200d-2642-fe0f.png", - "sheet_x": 21, - "sheet_y": 18, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F46E-1F3FE-200D-2642-FE0F", - "non_qualified": "1F46E-1F3FE-200D-2642", - "image": "1f46e-1f3fe-200d-2642-fe0f.png", - "sheet_x": 21, - "sheet_y": 19, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F46E-1F3FF-200D-2642-FE0F", - "non_qualified": "1F46E-1F3FF-200D-2642", - "image": "1f46e-1f3ff-200d-2642-fe0f.png", - "sheet_x": 21, - "sheet_y": 20, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - } - }, - "obsoletes": "1F46E" - } - }, - "clock1130": { - "char": "\ud83d\udd66", - "key": "clock1130", - "keywords": ["clock1130", "CLOCK FACE ELEVEN-THIRTY"], - "category": "travel_and_places", - "lib": { - "name": "CLOCK FACE ELEVEN-THIRTY", - "unified": "1F566", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f566.png", - "sheet_x": 29, - "sheet_y": 8, - "short_name": "clock1130", - "short_names": ["clock1130"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 157, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "dna": { - "char": "\ud83e\uddec", - "key": "dna", - "keywords": ["dna", "DNA DOUBLE HELIX"], - "category": "objects", - "lib": { - "name": "DNA DOUBLE HELIX", - "unified": "1F9EC", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f9ec.png", - "sheet_x": 48, - "sheet_y": 0, - "short_name": "dna", - "short_names": ["dna"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 157, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - } - }, - "information_source": { - "char": "\u2139\ufe0f", - "key": "information_source", - "keywords": ["information_source", "INFORMATION SOURCE"], - "category": "symbols", - "lib": { - "name": "INFORMATION SOURCE", - "unified": "2139-FE0F", - "non_qualified": "2139", - "docomo": null, - "au": "E533", - "softbank": null, - "google": "FEB47", - "image": "2139-fe0f.png", - "sheet_x": 48, - "sheet_y": 23, - "short_name": "information_source", - "short_names": ["information_source"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 157, - "added_in": "3.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "id": { - "char": "\ud83c\udd94", - "key": "id", - "keywords": ["id", "SQUARED ID"], - "category": "symbols", - "lib": { - "name": "SQUARED ID", - "unified": "1F194", - "non_qualified": null, - "docomo": "E6D8", - "au": "EA88", - "softbank": "E229", - "google": "FEB81", - "image": "1f194.png", - "sheet_x": 0, - "sheet_y": 24, - "short_name": "id", - "short_names": ["id"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 158, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-ml": { - "char": "\ud83c\uddf2\ud83c\uddf1", - "key": "flag-ml", - "keywords": ["flag-ml", "Mali Flag"], - "category": "flags", - "lib": { - "name": "Mali Flag", - "unified": "1F1F2-1F1F1", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1f2-1f1f1.png", - "sheet_x": 3, - "sheet_y": 22, - "short_name": "flag-ml", - "short_names": ["flag-ml"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 158, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "new_moon": { - "char": "\ud83c\udf11", - "key": "new_moon", - "keywords": ["new_moon", "NEW MOON SYMBOL"], - "category": "travel_and_places", - "lib": { - "name": "NEW MOON SYMBOL", - "unified": "1F311", - "non_qualified": null, - "docomo": "E69C", - "au": "E5A8", - "softbank": null, - "google": "FE011", - "image": "1f311.png", - "sheet_x": 6, - "sheet_y": 3, - "short_name": "new_moon", - "short_names": ["new_moon"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 158, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "female-police-officer": { - "char": "\ud83d\udc6e\u200d\u2640\ufe0f", - "key": "female-police-officer", - "keywords": ["female-police-officer", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F46E-200D-2640-FE0F", - "non_qualified": "1F46E-200D-2640", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f46e-200d-2640-fe0f.png", - "sheet_x": 21, - "sheet_y": 9, - "short_name": "female-police-officer", - "short_names": ["female-police-officer"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 158, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F46E-1F3FB-200D-2640-FE0F", - "non_qualified": "1F46E-1F3FB-200D-2640", - "image": "1f46e-1f3fb-200d-2640-fe0f.png", - "sheet_x": 21, - "sheet_y": 10, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F46E-1F3FC-200D-2640-FE0F", - "non_qualified": "1F46E-1F3FC-200D-2640", - "image": "1f46e-1f3fc-200d-2640-fe0f.png", - "sheet_x": 21, - "sheet_y": 11, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F46E-1F3FD-200D-2640-FE0F", - "non_qualified": "1F46E-1F3FD-200D-2640", - "image": "1f46e-1f3fd-200d-2640-fe0f.png", - "sheet_x": 21, - "sheet_y": 12, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F46E-1F3FE-200D-2640-FE0F", - "non_qualified": "1F46E-1F3FE-200D-2640", - "image": "1f46e-1f3fe-200d-2640-fe0f.png", - "sheet_x": 21, - "sheet_y": 13, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F46E-1F3FF-200D-2640-FE0F", - "non_qualified": "1F46E-1F3FF-200D-2640", - "image": "1f46e-1f3ff-200d-2640-fe0f.png", - "sheet_x": 21, - "sheet_y": 14, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - } - } - } - }, - "microscope": { - "char": "\ud83d\udd2c", - "key": "microscope", - "keywords": ["microscope", "MICROSCOPE"], - "category": "objects", - "lib": { - "name": "MICROSCOPE", - "unified": "1F52C", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f52c.png", - "sheet_x": 28, - "sheet_y": 15, - "short_name": "microscope", - "short_names": ["microscope"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 158, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-mm": { - "char": "\ud83c\uddf2\ud83c\uddf2", - "key": "flag-mm", - "keywords": ["flag-mm", "Myanmar (Burma) Flag"], - "category": "flags", - "lib": { - "name": "Myanmar (Burma) Flag", - "unified": "1F1F2-1F1F2", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1f2-1f1f2.png", - "sheet_x": 3, - "sheet_y": 23, - "short_name": "flag-mm", - "short_names": ["flag-mm"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 159, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "waxing_crescent_moon": { - "char": "\ud83c\udf12", - "key": "waxing_crescent_moon", - "keywords": ["waxing_crescent_moon", "WAXING CRESCENT MOON SYMBOL"], - "category": "travel_and_places", - "lib": { - "name": "WAXING CRESCENT MOON SYMBOL", - "unified": "1F312", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f312.png", - "sheet_x": 6, - "sheet_y": 4, - "short_name": "waxing_crescent_moon", - "short_names": ["waxing_crescent_moon"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 159, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "telescope": { - "char": "\ud83d\udd2d", - "key": "telescope", - "keywords": ["telescope", "TELESCOPE"], - "category": "objects", - "lib": { - "name": "TELESCOPE", - "unified": "1F52D", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f52d.png", - "sheet_x": 28, - "sheet_y": 16, - "short_name": "telescope", - "short_names": ["telescope"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 159, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "m": { - "char": "\u24c2\ufe0f", - "key": "m", - "keywords": ["m", "CIRCLED LATIN CAPITAL LETTER M"], - "category": "symbols", - "lib": { - "name": "CIRCLED LATIN CAPITAL LETTER M", - "unified": "24C2-FE0F", - "non_qualified": "24C2", - "docomo": "E65C", - "au": "E5BC", - "softbank": null, - "google": "FE7E1", - "image": "24c2-fe0f.png", - "sheet_x": 48, - "sheet_y": 50, - "short_name": "m", - "short_names": ["m"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 159, - "added_in": "1.1", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "new": { - "char": "\ud83c\udd95", - "key": "new", - "keywords": ["new", "SQUARED NEW"], - "category": "symbols", - "lib": { - "name": "SQUARED NEW", - "unified": "1F195", - "non_qualified": null, - "docomo": "E6DD", - "au": "E5B5", - "softbank": "E212", - "google": "FEB36", - "image": "1f195.png", - "sheet_x": 0, - "sheet_y": 25, - "short_name": "new", - "short_names": ["new"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 160, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-mn": { - "char": "\ud83c\uddf2\ud83c\uddf3", - "key": "flag-mn", - "keywords": ["flag-mn", "Mongolia Flag"], - "category": "flags", - "lib": { - "name": "Mongolia Flag", - "unified": "1F1F2-1F1F3", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1f2-1f1f3.png", - "sheet_x": 3, - "sheet_y": 24, - "short_name": "flag-mn", - "short_names": ["flag-mn"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 160, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "first_quarter_moon": { - "char": "\ud83c\udf13", - "key": "first_quarter_moon", - "keywords": ["first_quarter_moon", "FIRST QUARTER MOON SYMBOL"], - "category": "travel_and_places", - "lib": { - "name": "FIRST QUARTER MOON SYMBOL", - "unified": "1F313", - "non_qualified": null, - "docomo": "E69E", - "au": "E5AA", - "softbank": null, - "google": "FE013", - "image": "1f313.png", - "sheet_x": 6, - "sheet_y": 5, - "short_name": "first_quarter_moon", - "short_names": ["first_quarter_moon"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 160, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "satellite_antenna": { - "char": "\ud83d\udce1", - "key": "satellite_antenna", - "keywords": ["satellite_antenna", "SATELLITE ANTENNA"], - "category": "objects", - "lib": { - "name": "SATELLITE ANTENNA", - "unified": "1F4E1", - "non_qualified": null, - "docomo": null, - "au": "E4A8", - "softbank": "E14B", - "google": "FE531", - "image": "1f4e1.png", - "sheet_x": 26, - "sheet_y": 47, - "short_name": "satellite_antenna", - "short_names": ["satellite_antenna"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 160, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "male-detective": { - "char": "\ud83d\udd75\ufe0f\u200d\u2642\ufe0f", - "key": "male-detective", - "keywords": ["male-detective", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F575-FE0F-200D-2642-FE0F", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f575-fe0f-200d-2642-fe0f.png", - "sheet_x": 29, - "sheet_y": 25, - "short_name": "male-detective", - "short_names": ["male-detective"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 160, - "added_in": "7.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F575-1F3FB-200D-2642-FE0F", - "non_qualified": "1F575-1F3FB-200D-2642", - "image": "1f575-1f3fb-200d-2642-fe0f.png", - "sheet_x": 29, - "sheet_y": 26, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F575-1F3FC-200D-2642-FE0F", - "non_qualified": "1F575-1F3FC-200D-2642", - "image": "1f575-1f3fc-200d-2642-fe0f.png", - "sheet_x": 29, - "sheet_y": 27, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F575-1F3FD-200D-2642-FE0F", - "non_qualified": "1F575-1F3FD-200D-2642", - "image": "1f575-1f3fd-200d-2642-fe0f.png", - "sheet_x": 29, - "sheet_y": 28, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F575-1F3FE-200D-2642-FE0F", - "non_qualified": "1F575-1F3FE-200D-2642", - "image": "1f575-1f3fe-200d-2642-fe0f.png", - "sheet_x": 29, - "sheet_y": 29, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F575-1F3FF-200D-2642-FE0F", - "non_qualified": "1F575-1F3FF-200D-2642", - "image": "1f575-1f3ff-200d-2642-fe0f.png", - "sheet_x": 29, - "sheet_y": 30, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - } - }, - "obsoletes": "1F575-FE0F" - } - }, - "ng": { - "char": "\ud83c\udd96", - "key": "ng", - "keywords": ["ng", "SQUARED NG"], - "category": "symbols", - "lib": { - "name": "SQUARED NG", - "unified": "1F196", - "non_qualified": null, - "docomo": "E72F", - "au": null, - "softbank": null, - "google": "FEB28", - "image": "1f196.png", - "sheet_x": 0, - "sheet_y": 26, - "short_name": "ng", - "short_names": ["ng"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 161, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-mo": { - "char": "\ud83c\uddf2\ud83c\uddf4", - "key": "flag-mo", - "keywords": ["flag-mo", "Macau SAR China Flag"], - "category": "flags", - "lib": { - "name": "Macau SAR China Flag", - "unified": "1F1F2-1F1F4", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1f2-1f1f4.png", - "sheet_x": 3, - "sheet_y": 25, - "short_name": "flag-mo", - "short_names": ["flag-mo"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 161, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "moon": { - "char": "\ud83c\udf14", - "key": "moon", - "keywords": ["moon", "WAXING GIBBOUS MOON SYMBOL"], - "category": "travel_and_places", - "lib": { - "name": "WAXING GIBBOUS MOON SYMBOL", - "unified": "1F314", - "non_qualified": null, - "docomo": "E69D", - "au": "E5A9", - "softbank": null, - "google": "FE012", - "image": "1f314.png", - "sheet_x": 6, - "sheet_y": 6, - "short_name": "moon", - "short_names": ["moon", "waxing_gibbous_moon"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 161, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "syringe": { - "char": "\ud83d\udc89", - "key": "syringe", - "keywords": ["syringe", "SYRINGE"], - "category": "objects", - "lib": { - "name": "SYRINGE", - "unified": "1F489", - "non_qualified": null, - "docomo": null, - "au": "E510", - "softbank": "E13B", - "google": "FE509", - "image": "1f489.png", - "sheet_x": 25, - "sheet_y": 7, - "short_name": "syringe", - "short_names": ["syringe"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 161, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "female-detective": { - "char": "\ud83d\udd75\ufe0f\u200d\u2640\ufe0f", - "key": "female-detective", - "keywords": ["female-detective", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F575-FE0F-200D-2640-FE0F", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f575-fe0f-200d-2640-fe0f.png", - "sheet_x": 29, - "sheet_y": 19, - "short_name": "female-detective", - "short_names": ["female-detective"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 161, - "added_in": "7.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F575-1F3FB-200D-2640-FE0F", - "non_qualified": "1F575-1F3FB-200D-2640", - "image": "1f575-1f3fb-200d-2640-fe0f.png", - "sheet_x": 29, - "sheet_y": 20, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F575-1F3FC-200D-2640-FE0F", - "non_qualified": "1F575-1F3FC-200D-2640", - "image": "1f575-1f3fc-200d-2640-fe0f.png", - "sheet_x": 29, - "sheet_y": 21, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F575-1F3FD-200D-2640-FE0F", - "non_qualified": "1F575-1F3FD-200D-2640", - "image": "1f575-1f3fd-200d-2640-fe0f.png", - "sheet_x": 29, - "sheet_y": 22, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F575-1F3FE-200D-2640-FE0F", - "non_qualified": "1F575-1F3FE-200D-2640", - "image": "1f575-1f3fe-200d-2640-fe0f.png", - "sheet_x": 29, - "sheet_y": 23, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F575-1F3FF-200D-2640-FE0F", - "non_qualified": "1F575-1F3FF-200D-2640", - "image": "1f575-1f3ff-200d-2640-fe0f.png", - "sheet_x": 29, - "sheet_y": 24, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - } - } - } - }, - "o2": { - "char": "\ud83c\udd7e\ufe0f", - "key": "o2", - "keywords": ["o2", "NEGATIVE SQUARED LATIN CAPITAL LETTER O"], - "category": "symbols", - "lib": { - "name": "NEGATIVE SQUARED LATIN CAPITAL LETTER O", - "unified": "1F17E-FE0F", - "non_qualified": "1F17E", - "docomo": null, - "au": "EB28", - "softbank": "E535", - "google": "FE50E", - "image": "1f17e-fe0f.png", - "sheet_x": 0, - "sheet_y": 18, - "short_name": "o2", - "short_names": ["o2"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 162, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-mp": { - "char": "\ud83c\uddf2\ud83c\uddf5", - "key": "flag-mp", - "keywords": ["flag-mp", "Northern Mariana Islands Flag"], - "category": "flags", - "lib": { - "name": "Northern Mariana Islands Flag", - "unified": "1F1F2-1F1F5", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1f2-1f1f5.png", - "sheet_x": 3, - "sheet_y": 26, - "short_name": "flag-mp", - "short_names": ["flag-mp"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 162, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "full_moon": { - "char": "\ud83c\udf15", - "key": "full_moon", - "keywords": ["full_moon", "FULL MOON SYMBOL"], - "category": "travel_and_places", - "lib": { - "name": "FULL MOON SYMBOL", - "unified": "1F315", - "non_qualified": null, - "docomo": "E6A0", - "au": null, - "softbank": null, - "google": "FE015", - "image": "1f315.png", - "sheet_x": 6, - "sheet_y": 7, - "short_name": "full_moon", - "short_names": ["full_moon"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 162, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "pill": { - "char": "\ud83d\udc8a", - "key": "pill", - "keywords": ["pill", "PILL"], - "category": "objects", - "lib": { - "name": "PILL", - "unified": "1F48A", - "non_qualified": null, - "docomo": null, - "au": "EA9A", - "softbank": "E30F", - "google": "FE50A", - "image": "1f48a.png", - "sheet_x": 25, - "sheet_y": 8, - "short_name": "pill", - "short_names": ["pill"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 162, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "ok": { - "char": "\ud83c\udd97", - "key": "ok", - "keywords": ["ok", "SQUARED OK"], - "category": "symbols", - "lib": { - "name": "SQUARED OK", - "unified": "1F197", - "non_qualified": null, - "docomo": "E70B", - "au": "E5AD", - "softbank": "E24D", - "google": "FEB27", - "image": "1f197.png", - "sheet_x": 0, - "sheet_y": 27, - "short_name": "ok", - "short_names": ["ok"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 163, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-mq": { - "char": "\ud83c\uddf2\ud83c\uddf6", - "key": "flag-mq", - "keywords": ["flag-mq", "Martinique Flag"], - "category": "flags", - "lib": { - "name": "Martinique Flag", - "unified": "1F1F2-1F1F6", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1f2-1f1f6.png", - "sheet_x": 3, - "sheet_y": 27, - "short_name": "flag-mq", - "short_names": ["flag-mq"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 163, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "waning_gibbous_moon": { - "char": "\ud83c\udf16", - "key": "waning_gibbous_moon", - "keywords": ["waning_gibbous_moon", "WANING GIBBOUS MOON SYMBOL"], - "category": "travel_and_places", - "lib": { - "name": "WANING GIBBOUS MOON SYMBOL", - "unified": "1F316", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f316.png", - "sheet_x": 6, - "sheet_y": 8, - "short_name": "waning_gibbous_moon", - "short_names": ["waning_gibbous_moon"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 163, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "male-guard": { - "char": "\ud83d\udc82\u200d\u2642\ufe0f", - "key": "male-guard", - "keywords": ["male-guard", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F482-200D-2642-FE0F", - "non_qualified": "1F482-200D-2642", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f482-200d-2642-fe0f.png", - "sheet_x": 23, - "sheet_y": 51, - "short_name": "male-guard", - "short_names": ["male-guard"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 163, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F482-1F3FB-200D-2642-FE0F", - "non_qualified": "1F482-1F3FB-200D-2642", - "image": "1f482-1f3fb-200d-2642-fe0f.png", - "sheet_x": 23, - "sheet_y": 52, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F482-1F3FC-200D-2642-FE0F", - "non_qualified": "1F482-1F3FC-200D-2642", - "image": "1f482-1f3fc-200d-2642-fe0f.png", - "sheet_x": 24, - "sheet_y": 0, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F482-1F3FD-200D-2642-FE0F", - "non_qualified": "1F482-1F3FD-200D-2642", - "image": "1f482-1f3fd-200d-2642-fe0f.png", - "sheet_x": 24, - "sheet_y": 1, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F482-1F3FE-200D-2642-FE0F", - "non_qualified": "1F482-1F3FE-200D-2642", - "image": "1f482-1f3fe-200d-2642-fe0f.png", - "sheet_x": 24, - "sheet_y": 2, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F482-1F3FF-200D-2642-FE0F", - "non_qualified": "1F482-1F3FF-200D-2642", - "image": "1f482-1f3ff-200d-2642-fe0f.png", - "sheet_x": 24, - "sheet_y": 3, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - } - }, - "obsoletes": "1F482" - } - }, - "door": { - "char": "\ud83d\udeaa", - "key": "door", - "keywords": ["door", "DOOR"], - "category": "objects", - "lib": { - "name": "DOOR", - "unified": "1F6AA", - "non_qualified": null, - "docomo": "E714", - "au": null, - "softbank": null, - "google": "FE4F3", - "image": "1f6aa.png", - "sheet_x": 35, - "sheet_y": 29, - "short_name": "door", - "short_names": ["door"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 163, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "parking": { - "char": "\ud83c\udd7f\ufe0f", - "key": "parking", - "keywords": ["parking", "NEGATIVE SQUARED LATIN CAPITAL LETTER P"], - "category": "symbols", - "lib": { - "name": "NEGATIVE SQUARED LATIN CAPITAL LETTER P", - "unified": "1F17F-FE0F", - "non_qualified": "1F17F", - "docomo": "E66C", - "au": "E4A6", - "softbank": "E14F", - "google": "FE7F6", - "image": "1f17f-fe0f.png", - "sheet_x": 0, - "sheet_y": 19, - "short_name": "parking", - "short_names": ["parking"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 164, - "added_in": "5.2", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-mr": { - "char": "\ud83c\uddf2\ud83c\uddf7", - "key": "flag-mr", - "keywords": ["flag-mr", "Mauritania Flag"], - "category": "flags", - "lib": { - "name": "Mauritania Flag", - "unified": "1F1F2-1F1F7", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1f2-1f1f7.png", - "sheet_x": 3, - "sheet_y": 28, - "short_name": "flag-mr", - "short_names": ["flag-mr"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 164, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "last_quarter_moon": { - "char": "\ud83c\udf17", - "key": "last_quarter_moon", - "keywords": ["last_quarter_moon", "LAST QUARTER MOON SYMBOL"], - "category": "travel_and_places", - "lib": { - "name": "LAST QUARTER MOON SYMBOL", - "unified": "1F317", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f317.png", - "sheet_x": 6, - "sheet_y": 9, - "short_name": "last_quarter_moon", - "short_names": ["last_quarter_moon"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 164, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "female-guard": { - "char": "\ud83d\udc82\u200d\u2640\ufe0f", - "key": "female-guard", - "keywords": ["female-guard", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F482-200D-2640-FE0F", - "non_qualified": "1F482-200D-2640", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f482-200d-2640-fe0f.png", - "sheet_x": 23, - "sheet_y": 45, - "short_name": "female-guard", - "short_names": ["female-guard"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 164, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F482-1F3FB-200D-2640-FE0F", - "non_qualified": "1F482-1F3FB-200D-2640", - "image": "1f482-1f3fb-200d-2640-fe0f.png", - "sheet_x": 23, - "sheet_y": 46, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F482-1F3FC-200D-2640-FE0F", - "non_qualified": "1F482-1F3FC-200D-2640", - "image": "1f482-1f3fc-200d-2640-fe0f.png", - "sheet_x": 23, - "sheet_y": 47, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F482-1F3FD-200D-2640-FE0F", - "non_qualified": "1F482-1F3FD-200D-2640", - "image": "1f482-1f3fd-200d-2640-fe0f.png", - "sheet_x": 23, - "sheet_y": 48, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F482-1F3FE-200D-2640-FE0F", - "non_qualified": "1F482-1F3FE-200D-2640", - "image": "1f482-1f3fe-200d-2640-fe0f.png", - "sheet_x": 23, - "sheet_y": 49, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F482-1F3FF-200D-2640-FE0F", - "non_qualified": "1F482-1F3FF-200D-2640", - "image": "1f482-1f3ff-200d-2640-fe0f.png", - "sheet_x": 23, - "sheet_y": 50, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - } - } - } - }, - "bed": { - "char": "\ud83d\udecf\ufe0f", - "key": "bed", - "keywords": ["bed", ""], - "category": "objects", - "lib": { - "name": null, - "unified": "1F6CF-FE0F", - "non_qualified": "1F6CF", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f6cf-fe0f.png", - "sheet_x": 37, - "sheet_y": 16, - "short_name": "bed", - "short_names": ["bed"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 164, - "added_in": "7.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "sos": { - "char": "\ud83c\udd98", - "key": "sos", - "keywords": ["sos", "SQUARED SOS"], - "category": "symbols", - "lib": { - "name": "SQUARED SOS", - "unified": "1F198", - "non_qualified": null, - "docomo": null, - "au": "E4E8", - "softbank": null, - "google": "FEB4F", - "image": "1f198.png", - "sheet_x": 0, - "sheet_y": 28, - "short_name": "sos", - "short_names": ["sos"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 165, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-ms": { - "char": "\ud83c\uddf2\ud83c\uddf8", - "key": "flag-ms", - "keywords": ["flag-ms", "Montserrat Flag"], - "category": "flags", - "lib": { - "name": "Montserrat Flag", - "unified": "1F1F2-1F1F8", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1f2-1f1f8.png", - "sheet_x": 3, - "sheet_y": 29, - "short_name": "flag-ms", - "short_names": ["flag-ms"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 165, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "waning_crescent_moon": { - "char": "\ud83c\udf18", - "key": "waning_crescent_moon", - "keywords": ["waning_crescent_moon", "WANING CRESCENT MOON SYMBOL"], - "category": "travel_and_places", - "lib": { - "name": "WANING CRESCENT MOON SYMBOL", - "unified": "1F318", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f318.png", - "sheet_x": 6, - "sheet_y": 10, - "short_name": "waning_crescent_moon", - "short_names": ["waning_crescent_moon"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 165, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "couch_and_lamp": { - "char": "\ud83d\udecb\ufe0f", - "key": "couch_and_lamp", - "keywords": ["couch_and_lamp", ""], - "category": "objects", - "lib": { - "name": null, - "unified": "1F6CB-FE0F", - "non_qualified": "1F6CB", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f6cb-fe0f.png", - "sheet_x": 37, - "sheet_y": 7, - "short_name": "couch_and_lamp", - "short_names": ["couch_and_lamp"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 165, - "added_in": "7.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "up": { - "char": "\ud83c\udd99", - "key": "up", - "keywords": ["up", "SQUARED UP WITH EXCLAMATION MARK"], - "category": "symbols", - "lib": { - "name": "SQUARED UP WITH EXCLAMATION MARK", - "unified": "1F199", - "non_qualified": null, - "docomo": null, - "au": "E50F", - "softbank": "E213", - "google": "FEB37", - "image": "1f199.png", - "sheet_x": 0, - "sheet_y": 29, - "short_name": "up", - "short_names": ["up"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 166, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-mt": { - "char": "\ud83c\uddf2\ud83c\uddf9", - "key": "flag-mt", - "keywords": ["flag-mt", "Malta Flag"], - "category": "flags", - "lib": { - "name": "Malta Flag", - "unified": "1F1F2-1F1F9", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1f2-1f1f9.png", - "sheet_x": 3, - "sheet_y": 30, - "short_name": "flag-mt", - "short_names": ["flag-mt"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 166, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "crescent_moon": { - "char": "\ud83c\udf19", - "key": "crescent_moon", - "keywords": ["crescent_moon", "CRESCENT MOON"], - "category": "travel_and_places", - "lib": { - "name": "CRESCENT MOON", - "unified": "1F319", - "non_qualified": null, - "docomo": "E69F", - "au": "E486", - "softbank": "E04C", - "google": "FE014", - "image": "1f319.png", - "sheet_x": 6, - "sheet_y": 11, - "short_name": "crescent_moon", - "short_names": ["crescent_moon"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 166, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "male-construction-worker": { - "char": "\ud83d\udc77\u200d\u2642\ufe0f", - "key": "male-construction-worker", - "keywords": ["male-construction-worker", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F477-200D-2642-FE0F", - "non_qualified": "1F477-200D-2642", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f477-200d-2642-fe0f.png", - "sheet_x": 22, - "sheet_y": 49, - "short_name": "male-construction-worker", - "short_names": ["male-construction-worker"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 166, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F477-1F3FB-200D-2642-FE0F", - "non_qualified": "1F477-1F3FB-200D-2642", - "image": "1f477-1f3fb-200d-2642-fe0f.png", - "sheet_x": 22, - "sheet_y": 50, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F477-1F3FC-200D-2642-FE0F", - "non_qualified": "1F477-1F3FC-200D-2642", - "image": "1f477-1f3fc-200d-2642-fe0f.png", - "sheet_x": 22, - "sheet_y": 51, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F477-1F3FD-200D-2642-FE0F", - "non_qualified": "1F477-1F3FD-200D-2642", - "image": "1f477-1f3fd-200d-2642-fe0f.png", - "sheet_x": 22, - "sheet_y": 52, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F477-1F3FE-200D-2642-FE0F", - "non_qualified": "1F477-1F3FE-200D-2642", - "image": "1f477-1f3fe-200d-2642-fe0f.png", - "sheet_x": 23, - "sheet_y": 0, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F477-1F3FF-200D-2642-FE0F", - "non_qualified": "1F477-1F3FF-200D-2642", - "image": "1f477-1f3ff-200d-2642-fe0f.png", - "sheet_x": 23, - "sheet_y": 1, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - } - }, - "obsoletes": "1F477" - } - }, - "toilet": { - "char": "\ud83d\udebd", - "key": "toilet", - "keywords": ["toilet", "TOILET"], - "category": "objects", - "lib": { - "name": "TOILET", - "unified": "1F6BD", - "non_qualified": null, - "docomo": "E66E", - "au": "E4A5", - "softbank": "E140", - "google": "FE507", - "image": "1f6bd.png", - "sheet_x": 36, - "sheet_y": 46, - "short_name": "toilet", - "short_names": ["toilet"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 166, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "vs": { - "char": "\ud83c\udd9a", - "key": "vs", - "keywords": ["vs", "SQUARED VS"], - "category": "symbols", - "lib": { - "name": "SQUARED VS", - "unified": "1F19A", - "non_qualified": null, - "docomo": null, - "au": "E5D2", - "softbank": "E12E", - "google": "FEB32", - "image": "1f19a.png", - "sheet_x": 0, - "sheet_y": 30, - "short_name": "vs", - "short_names": ["vs"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 167, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-mu": { - "char": "\ud83c\uddf2\ud83c\uddfa", - "key": "flag-mu", - "keywords": ["flag-mu", "Mauritius Flag"], - "category": "flags", - "lib": { - "name": "Mauritius Flag", - "unified": "1F1F2-1F1FA", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1f2-1f1fa.png", - "sheet_x": 3, - "sheet_y": 31, - "short_name": "flag-mu", - "short_names": ["flag-mu"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 167, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "new_moon_with_face": { - "char": "\ud83c\udf1a", - "key": "new_moon_with_face", - "keywords": ["new_moon_with_face", "NEW MOON WITH FACE"], - "category": "travel_and_places", - "lib": { - "name": "NEW MOON WITH FACE", - "unified": "1F31A", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f31a.png", - "sheet_x": 6, - "sheet_y": 12, - "short_name": "new_moon_with_face", - "short_names": ["new_moon_with_face"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 167, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "female-construction-worker": { - "char": "\ud83d\udc77\u200d\u2640\ufe0f", - "key": "female-construction-worker", - "keywords": ["female-construction-worker", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F477-200D-2640-FE0F", - "non_qualified": "1F477-200D-2640", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f477-200d-2640-fe0f.png", - "sheet_x": 22, - "sheet_y": 43, - "short_name": "female-construction-worker", - "short_names": ["female-construction-worker"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 167, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F477-1F3FB-200D-2640-FE0F", - "non_qualified": "1F477-1F3FB-200D-2640", - "image": "1f477-1f3fb-200d-2640-fe0f.png", - "sheet_x": 22, - "sheet_y": 44, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F477-1F3FC-200D-2640-FE0F", - "non_qualified": "1F477-1F3FC-200D-2640", - "image": "1f477-1f3fc-200d-2640-fe0f.png", - "sheet_x": 22, - "sheet_y": 45, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F477-1F3FD-200D-2640-FE0F", - "non_qualified": "1F477-1F3FD-200D-2640", - "image": "1f477-1f3fd-200d-2640-fe0f.png", - "sheet_x": 22, - "sheet_y": 46, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F477-1F3FE-200D-2640-FE0F", - "non_qualified": "1F477-1F3FE-200D-2640", - "image": "1f477-1f3fe-200d-2640-fe0f.png", - "sheet_x": 22, - "sheet_y": 47, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F477-1F3FF-200D-2640-FE0F", - "non_qualified": "1F477-1F3FF-200D-2640", - "image": "1f477-1f3ff-200d-2640-fe0f.png", - "sheet_x": 22, - "sheet_y": 48, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - } - } - } - }, - "shower": { - "char": "\ud83d\udebf", - "key": "shower", - "keywords": ["shower", "SHOWER"], - "category": "objects", - "lib": { - "name": "SHOWER", - "unified": "1F6BF", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f6bf.png", - "sheet_x": 36, - "sheet_y": 48, - "short_name": "shower", - "short_names": ["shower"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 167, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-mv": { - "char": "\ud83c\uddf2\ud83c\uddfb", - "key": "flag-mv", - "keywords": ["flag-mv", "Maldives Flag"], - "category": "flags", - "lib": { - "name": "Maldives Flag", - "unified": "1F1F2-1F1FB", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1f2-1f1fb.png", - "sheet_x": 3, - "sheet_y": 32, - "short_name": "flag-mv", - "short_names": ["flag-mv"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 168, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "koko": { - "char": "\ud83c\ude01", - "key": "koko", - "keywords": ["koko", "SQUARED KATAKANA KOKO"], - "category": "symbols", - "lib": { - "name": "SQUARED KATAKANA KOKO", - "unified": "1F201", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": "E203", - "google": "FEB24", - "image": "1f201.png", - "sheet_x": 5, - "sheet_y": 24, - "short_name": "koko", - "short_names": ["koko"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 168, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "first_quarter_moon_with_face": { - "char": "\ud83c\udf1b", - "key": "first_quarter_moon_with_face", - "keywords": ["first_quarter_moon_with_face", "FIRST QUARTER MOON WITH FACE"], - "category": "travel_and_places", - "lib": { - "name": "FIRST QUARTER MOON WITH FACE", - "unified": "1F31B", - "non_qualified": null, - "docomo": "E69E", - "au": "E489", - "softbank": null, - "google": "FE016", - "image": "1f31b.png", - "sheet_x": 6, - "sheet_y": 13, - "short_name": "first_quarter_moon_with_face", - "short_names": ["first_quarter_moon_with_face"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 168, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "bathtub": { - "char": "\ud83d\udec1", - "key": "bathtub", - "keywords": ["bathtub", "BATHTUB"], - "category": "objects", - "lib": { - "name": "BATHTUB", - "unified": "1F6C1", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f6c1.png", - "sheet_x": 37, - "sheet_y": 2, - "short_name": "bathtub", - "short_names": ["bathtub"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 168, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "prince": { - "char": "\ud83e\udd34", - "key": "prince", - "keywords": ["prince", "PRINCE"], - "category": "people", - "lib": { - "name": "PRINCE", - "unified": "1F934", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f934.png", - "sheet_x": 39, - "sheet_y": 39, - "short_name": "prince", - "short_names": ["prince"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 168, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F934-1F3FB", - "non_qualified": null, - "image": "1f934-1f3fb.png", - "sheet_x": 39, - "sheet_y": 40, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F934-1F3FC", - "non_qualified": null, - "image": "1f934-1f3fc.png", - "sheet_x": 39, - "sheet_y": 41, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F934-1F3FD", - "non_qualified": null, - "image": "1f934-1f3fd.png", - "sheet_x": 39, - "sheet_y": 42, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F934-1F3FE", - "non_qualified": null, - "image": "1f934-1f3fe.png", - "sheet_x": 39, - "sheet_y": 43, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F934-1F3FF", - "non_qualified": null, - "image": "1f934-1f3ff.png", - "sheet_x": 39, - "sheet_y": 44, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - } - } - }, - "flag-mw": { - "char": "\ud83c\uddf2\ud83c\uddfc", - "key": "flag-mw", - "keywords": ["flag-mw", "Malawi Flag"], - "category": "flags", - "lib": { - "name": "Malawi Flag", - "unified": "1F1F2-1F1FC", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1f2-1f1fc.png", - "sheet_x": 3, - "sheet_y": 33, - "short_name": "flag-mw", - "short_names": ["flag-mw"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 169, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "sa": { - "char": "\ud83c\ude02\ufe0f", - "key": "sa", - "keywords": ["sa", "SQUARED KATAKANA SA"], - "category": "symbols", - "lib": { - "name": "SQUARED KATAKANA SA", - "unified": "1F202-FE0F", - "non_qualified": "1F202", - "docomo": null, - "au": "EA87", - "softbank": "E228", - "google": "FEB3F", - "image": "1f202-fe0f.png", - "sheet_x": 5, - "sheet_y": 25, - "short_name": "sa", - "short_names": ["sa"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 169, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "last_quarter_moon_with_face": { - "char": "\ud83c\udf1c", - "key": "last_quarter_moon_with_face", - "keywords": ["last_quarter_moon_with_face", "LAST QUARTER MOON WITH FACE"], - "category": "travel_and_places", - "lib": { - "name": "LAST QUARTER MOON WITH FACE", - "unified": "1F31C", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f31c.png", - "sheet_x": 6, - "sheet_y": 14, - "short_name": "last_quarter_moon_with_face", - "short_names": ["last_quarter_moon_with_face"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 169, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "princess": { - "char": "\ud83d\udc78", - "key": "princess", - "keywords": ["princess", "PRINCESS"], - "category": "people", - "lib": { - "name": "PRINCESS", - "unified": "1F478", - "non_qualified": null, - "docomo": null, - "au": "EB1A", - "softbank": "E51C", - "google": "FE1AB", - "image": "1f478.png", - "sheet_x": 23, - "sheet_y": 8, - "short_name": "princess", - "short_names": ["princess"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 169, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true, - "skin_variations": { - "1F3FB": { - "unified": "1F478-1F3FB", - "non_qualified": null, - "image": "1f478-1f3fb.png", - "sheet_x": 23, - "sheet_y": 9, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FC": { - "unified": "1F478-1F3FC", - "non_qualified": null, - "image": "1f478-1f3fc.png", - "sheet_x": 23, - "sheet_y": 10, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FD": { - "unified": "1F478-1F3FD", - "non_qualified": null, - "image": "1f478-1f3fd.png", - "sheet_x": 23, - "sheet_y": 11, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FE": { - "unified": "1F478-1F3FE", - "non_qualified": null, - "image": "1f478-1f3fe.png", - "sheet_x": 23, - "sheet_y": 12, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FF": { - "unified": "1F478-1F3FF", - "non_qualified": null, - "image": "1f478-1f3ff.png", - "sheet_x": 23, - "sheet_y": 13, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - } - } - }, - "lotion_bottle": { - "char": "\ud83e\uddf4", - "key": "lotion_bottle", - "keywords": ["lotion_bottle", "LOTION BOTTLE"], - "category": "objects", - "lib": { - "name": "LOTION BOTTLE", - "unified": "1F9F4", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f9f4.png", - "sheet_x": 48, - "sheet_y": 8, - "short_name": "lotion_bottle", - "short_names": ["lotion_bottle"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 169, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - } - }, - "flag-mx": { - "char": "\ud83c\uddf2\ud83c\uddfd", - "key": "flag-mx", - "keywords": ["flag-mx", "Mexico Flag"], - "category": "flags", - "lib": { - "name": "Mexico Flag", - "unified": "1F1F2-1F1FD", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1f2-1f1fd.png", - "sheet_x": 3, - "sheet_y": 34, - "short_name": "flag-mx", - "short_names": ["flag-mx"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 170, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "u6708": { - "char": "\ud83c\ude37\ufe0f", - "key": "u6708", - "keywords": ["u6708", "SQUARED CJK UNIFIED IDEOGRAPH-6708"], - "category": "symbols", - "lib": { - "name": "SQUARED CJK UNIFIED IDEOGRAPH-6708", - "unified": "1F237-FE0F", - "non_qualified": "1F237", - "docomo": null, - "au": null, - "softbank": "E217", - "google": "FEB3B", - "image": "1f237-fe0f.png", - "sheet_x": 5, - "sheet_y": 33, - "short_name": "u6708", - "short_names": ["u6708"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 170, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "thermometer": { - "char": "\ud83c\udf21\ufe0f", - "key": "thermometer", - "keywords": ["thermometer", ""], - "category": "travel_and_places", - "lib": { - "name": null, - "unified": "1F321-FE0F", - "non_qualified": "1F321", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f321-fe0f.png", - "sheet_x": 6, - "sheet_y": 19, - "short_name": "thermometer", - "short_names": ["thermometer"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 170, - "added_in": "7.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "safety_pin": { - "char": "\ud83e\uddf7", - "key": "safety_pin", - "keywords": ["safety_pin", "SAFETY PIN"], - "category": "objects", - "lib": { - "name": "SAFETY PIN", - "unified": "1F9F7", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f9f7.png", - "sheet_x": 48, - "sheet_y": 11, - "short_name": "safety_pin", - "short_names": ["safety_pin"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 170, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - } - }, - "flag-my": { - "char": "\ud83c\uddf2\ud83c\uddfe", - "key": "flag-my", - "keywords": ["flag-my", "Malaysia Flag"], - "category": "flags", - "lib": { - "name": "Malaysia Flag", - "unified": "1F1F2-1F1FE", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1f2-1f1fe.png", - "sheet_x": 3, - "sheet_y": 35, - "short_name": "flag-my", - "short_names": ["flag-my"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 171, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "u6709": { - "char": "\ud83c\ude36", - "key": "u6709", - "keywords": ["u6709", "SQUARED CJK UNIFIED IDEOGRAPH-6709"], - "category": "symbols", - "lib": { - "name": "SQUARED CJK UNIFIED IDEOGRAPH-6709", - "unified": "1F236", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": "E215", - "google": "FEB39", - "image": "1f236.png", - "sheet_x": 5, - "sheet_y": 32, - "short_name": "u6709", - "short_names": ["u6709"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 171, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "man-wearing-turban": { - "char": "\ud83d\udc73\u200d\u2642\ufe0f", - "key": "man-wearing-turban", - "keywords": ["man-wearing-turban", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F473-200D-2642-FE0F", - "non_qualified": "1F473-200D-2642", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f473-200d-2642-fe0f.png", - "sheet_x": 22, - "sheet_y": 13, - "short_name": "man-wearing-turban", - "short_names": ["man-wearing-turban"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 171, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F473-1F3FB-200D-2642-FE0F", - "non_qualified": "1F473-1F3FB-200D-2642", - "image": "1f473-1f3fb-200d-2642-fe0f.png", - "sheet_x": 22, - "sheet_y": 14, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F473-1F3FC-200D-2642-FE0F", - "non_qualified": "1F473-1F3FC-200D-2642", - "image": "1f473-1f3fc-200d-2642-fe0f.png", - "sheet_x": 22, - "sheet_y": 15, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F473-1F3FD-200D-2642-FE0F", - "non_qualified": "1F473-1F3FD-200D-2642", - "image": "1f473-1f3fd-200d-2642-fe0f.png", - "sheet_x": 22, - "sheet_y": 16, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F473-1F3FE-200D-2642-FE0F", - "non_qualified": "1F473-1F3FE-200D-2642", - "image": "1f473-1f3fe-200d-2642-fe0f.png", - "sheet_x": 22, - "sheet_y": 17, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F473-1F3FF-200D-2642-FE0F", - "non_qualified": "1F473-1F3FF-200D-2642", - "image": "1f473-1f3ff-200d-2642-fe0f.png", - "sheet_x": 22, - "sheet_y": 18, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - } - }, - "obsoletes": "1F473" - } - }, - "broom": { - "char": "\ud83e\uddf9", - "key": "broom", - "keywords": ["broom", "BROOM"], - "category": "objects", - "lib": { - "name": "BROOM", - "unified": "1F9F9", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f9f9.png", - "sheet_x": 48, - "sheet_y": 13, - "short_name": "broom", - "short_names": ["broom"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 171, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - } - }, - "sunny": { - "char": "\u2600\ufe0f", - "key": "sunny", - "keywords": ["sunny", "BLACK SUN WITH RAYS"], - "category": "travel_and_places", - "lib": { - "name": "BLACK SUN WITH RAYS", - "unified": "2600-FE0F", - "non_qualified": "2600", - "docomo": "E63E", - "au": "E488", - "softbank": "E04A", - "google": "FE000", - "image": "2600-fe0f.png", - "sheet_x": 49, - "sheet_y": 6, - "short_name": "sunny", - "short_names": ["sunny"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 171, - "added_in": "1.1", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-mz": { - "char": "\ud83c\uddf2\ud83c\uddff", - "key": "flag-mz", - "keywords": ["flag-mz", "Mozambique Flag"], - "category": "flags", - "lib": { - "name": "Mozambique Flag", - "unified": "1F1F2-1F1FF", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1f2-1f1ff.png", - "sheet_x": 3, - "sheet_y": 36, - "short_name": "flag-mz", - "short_names": ["flag-mz"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 172, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "u6307": { - "char": "\ud83c\ude2f", - "key": "u6307", - "keywords": ["u6307", "SQUARED CJK UNIFIED IDEOGRAPH-6307"], - "category": "symbols", - "lib": { - "name": "SQUARED CJK UNIFIED IDEOGRAPH-6307", - "unified": "1F22F", - "non_qualified": null, - "docomo": null, - "au": "EA8B", - "softbank": "E22C", - "google": "FEB40", - "image": "1f22f.png", - "sheet_x": 5, - "sheet_y": 27, - "short_name": "u6307", - "short_names": ["u6307"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 172, - "added_in": "5.2", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "full_moon_with_face": { - "char": "\ud83c\udf1d", - "key": "full_moon_with_face", - "keywords": ["full_moon_with_face", "FULL MOON WITH FACE"], - "category": "travel_and_places", - "lib": { - "name": "FULL MOON WITH FACE", - "unified": "1F31D", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f31d.png", - "sheet_x": 6, - "sheet_y": 15, - "short_name": "full_moon_with_face", - "short_names": ["full_moon_with_face"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 172, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "woman-wearing-turban": { - "char": "\ud83d\udc73\u200d\u2640\ufe0f", - "key": "woman-wearing-turban", - "keywords": ["woman-wearing-turban", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F473-200D-2640-FE0F", - "non_qualified": "1F473-200D-2640", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f473-200d-2640-fe0f.png", - "sheet_x": 22, - "sheet_y": 7, - "short_name": "woman-wearing-turban", - "short_names": ["woman-wearing-turban"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 172, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F473-1F3FB-200D-2640-FE0F", - "non_qualified": "1F473-1F3FB-200D-2640", - "image": "1f473-1f3fb-200d-2640-fe0f.png", - "sheet_x": 22, - "sheet_y": 8, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F473-1F3FC-200D-2640-FE0F", - "non_qualified": "1F473-1F3FC-200D-2640", - "image": "1f473-1f3fc-200d-2640-fe0f.png", - "sheet_x": 22, - "sheet_y": 9, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F473-1F3FD-200D-2640-FE0F", - "non_qualified": "1F473-1F3FD-200D-2640", - "image": "1f473-1f3fd-200d-2640-fe0f.png", - "sheet_x": 22, - "sheet_y": 10, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F473-1F3FE-200D-2640-FE0F", - "non_qualified": "1F473-1F3FE-200D-2640", - "image": "1f473-1f3fe-200d-2640-fe0f.png", - "sheet_x": 22, - "sheet_y": 11, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F473-1F3FF-200D-2640-FE0F", - "non_qualified": "1F473-1F3FF-200D-2640", - "image": "1f473-1f3ff-200d-2640-fe0f.png", - "sheet_x": 22, - "sheet_y": 12, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - } - } - } - }, - "basket": { - "char": "\ud83e\uddfa", - "key": "basket", - "keywords": ["basket", "BASKET"], - "category": "objects", - "lib": { - "name": "BASKET", - "unified": "1F9FA", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f9fa.png", - "sheet_x": 48, - "sheet_y": 14, - "short_name": "basket", - "short_names": ["basket"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 172, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - } - }, - "flag-na": { - "char": "\ud83c\uddf3\ud83c\udde6", - "key": "flag-na", - "keywords": ["flag-na", "Namibia Flag"], - "category": "flags", - "lib": { - "name": "Namibia Flag", - "unified": "1F1F3-1F1E6", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1f3-1f1e6.png", - "sheet_x": 3, - "sheet_y": 37, - "short_name": "flag-na", - "short_names": ["flag-na"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 173, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "ideograph_advantage": { - "char": "\ud83c\ude50", - "key": "ideograph_advantage", - "keywords": ["ideograph_advantage", "CIRCLED IDEOGRAPH ADVANTAGE"], - "category": "symbols", - "lib": { - "name": "CIRCLED IDEOGRAPH ADVANTAGE", - "unified": "1F250", - "non_qualified": null, - "docomo": null, - "au": "E4F7", - "softbank": "E226", - "google": "FEB3D", - "image": "1f250.png", - "sheet_x": 5, - "sheet_y": 37, - "short_name": "ideograph_advantage", - "short_names": ["ideograph_advantage"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 173, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "sun_with_face": { - "char": "\ud83c\udf1e", - "key": "sun_with_face", - "keywords": ["sun_with_face", "SUN WITH FACE"], - "category": "travel_and_places", - "lib": { - "name": "SUN WITH FACE", - "unified": "1F31E", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f31e.png", - "sheet_x": 6, - "sheet_y": 16, - "short_name": "sun_with_face", - "short_names": ["sun_with_face"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 173, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "man_with_gua_pi_mao": { - "char": "\ud83d\udc72", - "key": "man_with_gua_pi_mao", - "keywords": ["man_with_gua_pi_mao", "MAN WITH GUA PI MAO"], - "category": "people", - "lib": { - "name": "MAN WITH GUA PI MAO", - "unified": "1F472", - "non_qualified": null, - "docomo": null, - "au": "EB14", - "softbank": "E516", - "google": "FE1A5", - "image": "1f472.png", - "sheet_x": 22, - "sheet_y": 1, - "short_name": "man_with_gua_pi_mao", - "short_names": ["man_with_gua_pi_mao"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 173, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true, - "skin_variations": { - "1F3FB": { - "unified": "1F472-1F3FB", - "non_qualified": null, - "image": "1f472-1f3fb.png", - "sheet_x": 22, - "sheet_y": 2, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FC": { - "unified": "1F472-1F3FC", - "non_qualified": null, - "image": "1f472-1f3fc.png", - "sheet_x": 22, - "sheet_y": 3, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FD": { - "unified": "1F472-1F3FD", - "non_qualified": null, - "image": "1f472-1f3fd.png", - "sheet_x": 22, - "sheet_y": 4, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FE": { - "unified": "1F472-1F3FE", - "non_qualified": null, - "image": "1f472-1f3fe.png", - "sheet_x": 22, - "sheet_y": 5, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FF": { - "unified": "1F472-1F3FF", - "non_qualified": null, - "image": "1f472-1f3ff.png", - "sheet_x": 22, - "sheet_y": 6, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - } - } - }, - "roll_of_paper": { - "char": "\ud83e\uddfb", - "key": "roll_of_paper", - "keywords": ["roll_of_paper", "ROLL OF PAPER"], - "category": "objects", - "lib": { - "name": "ROLL OF PAPER", - "unified": "1F9FB", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f9fb.png", - "sheet_x": 48, - "sheet_y": 15, - "short_name": "roll_of_paper", - "short_names": ["roll_of_paper"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 173, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - } - }, - "flag-nc": { - "char": "\ud83c\uddf3\ud83c\udde8", - "key": "flag-nc", - "keywords": ["flag-nc", "New Caledonia Flag"], - "category": "flags", - "lib": { - "name": "New Caledonia Flag", - "unified": "1F1F3-1F1E8", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1f3-1f1e8.png", - "sheet_x": 3, - "sheet_y": 38, - "short_name": "flag-nc", - "short_names": ["flag-nc"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 174, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "u5272": { - "char": "\ud83c\ude39", - "key": "u5272", - "keywords": ["u5272", "SQUARED CJK UNIFIED IDEOGRAPH-5272"], - "category": "symbols", - "lib": { - "name": "SQUARED CJK UNIFIED IDEOGRAPH-5272", - "unified": "1F239", - "non_qualified": null, - "docomo": null, - "au": "EA86", - "softbank": "E227", - "google": "FEB3E", - "image": "1f239.png", - "sheet_x": 5, - "sheet_y": 35, - "short_name": "u5272", - "short_names": ["u5272"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 174, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "person_with_headscarf": { - "char": "\ud83e\uddd5", - "key": "person_with_headscarf", - "keywords": ["person_with_headscarf", "PERSON WITH HEADSCARF"], - "category": "people", - "lib": { - "name": "PERSON WITH HEADSCARF", - "unified": "1F9D5", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f9d5.png", - "sheet_x": 44, - "sheet_y": 44, - "short_name": "person_with_headscarf", - "short_names": ["person_with_headscarf"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 174, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F9D5-1F3FB", - "non_qualified": null, - "image": "1f9d5-1f3fb.png", - "sheet_x": 44, - "sheet_y": 45, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F9D5-1F3FC", - "non_qualified": null, - "image": "1f9d5-1f3fc.png", - "sheet_x": 44, - "sheet_y": 46, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F9D5-1F3FD", - "non_qualified": null, - "image": "1f9d5-1f3fd.png", - "sheet_x": 44, - "sheet_y": 47, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F9D5-1F3FE", - "non_qualified": null, - "image": "1f9d5-1f3fe.png", - "sheet_x": 44, - "sheet_y": 48, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F9D5-1F3FF", - "non_qualified": null, - "image": "1f9d5-1f3ff.png", - "sheet_x": 44, - "sheet_y": 49, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - } - } - }, - "soap": { - "char": "\ud83e\uddfc", - "key": "soap", - "keywords": ["soap", "BAR OF SOAP"], - "category": "objects", - "lib": { - "name": "BAR OF SOAP", - "unified": "1F9FC", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f9fc.png", - "sheet_x": 48, - "sheet_y": 16, - "short_name": "soap", - "short_names": ["soap"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 174, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - } - }, - "star": { - "char": "\u2b50", - "key": "star", - "keywords": ["star", "WHITE MEDIUM STAR"], - "category": "travel_and_places", - "lib": { - "name": "WHITE MEDIUM STAR", - "unified": "2B50", - "non_qualified": null, - "docomo": null, - "au": "E48B", - "softbank": "E32F", - "google": "FEB68", - "image": "2b50.png", - "sheet_x": 52, - "sheet_y": 11, - "short_name": "star", - "short_names": ["star"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 174, - "added_in": "5.1", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-ne": { - "char": "\ud83c\uddf3\ud83c\uddea", - "key": "flag-ne", - "keywords": ["flag-ne", "Niger Flag"], - "category": "flags", - "lib": { - "name": "Niger Flag", - "unified": "1F1F3-1F1EA", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1f3-1f1ea.png", - "sheet_x": 3, - "sheet_y": 39, - "short_name": "flag-ne", - "short_names": ["flag-ne"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 175, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "u7121": { - "char": "\ud83c\ude1a", - "key": "u7121", - "keywords": ["u7121", "SQUARED CJK UNIFIED IDEOGRAPH-7121"], - "category": "symbols", - "lib": { - "name": "SQUARED CJK UNIFIED IDEOGRAPH-7121", - "unified": "1F21A", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": "E216", - "google": "FEB3A", - "image": "1f21a.png", - "sheet_x": 5, - "sheet_y": 26, - "short_name": "u7121", - "short_names": ["u7121"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 175, - "added_in": "5.2", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "star2": { - "char": "\ud83c\udf1f", - "key": "star2", - "keywords": ["star2", "GLOWING STAR"], - "category": "travel_and_places", - "lib": { - "name": "GLOWING STAR", - "unified": "1F31F", - "non_qualified": null, - "docomo": null, - "au": "E48B", - "softbank": "E335", - "google": "FEB69", - "image": "1f31f.png", - "sheet_x": 6, - "sheet_y": 17, - "short_name": "star2", - "short_names": ["star2"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 175, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "bearded_person": { - "char": "\ud83e\uddd4", - "key": "bearded_person", - "keywords": ["bearded_person", "BEARDED PERSON"], - "category": "people", - "lib": { - "name": "BEARDED PERSON", - "unified": "1F9D4", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f9d4.png", - "sheet_x": 44, - "sheet_y": 38, - "short_name": "bearded_person", - "short_names": ["bearded_person"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 175, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F9D4-1F3FB", - "non_qualified": null, - "image": "1f9d4-1f3fb.png", - "sheet_x": 44, - "sheet_y": 39, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F9D4-1F3FC", - "non_qualified": null, - "image": "1f9d4-1f3fc.png", - "sheet_x": 44, - "sheet_y": 40, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F9D4-1F3FD", - "non_qualified": null, - "image": "1f9d4-1f3fd.png", - "sheet_x": 44, - "sheet_y": 41, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F9D4-1F3FE", - "non_qualified": null, - "image": "1f9d4-1f3fe.png", - "sheet_x": 44, - "sheet_y": 42, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F9D4-1F3FF", - "non_qualified": null, - "image": "1f9d4-1f3ff.png", - "sheet_x": 44, - "sheet_y": 43, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - } - } - }, - "sponge": { - "char": "\ud83e\uddfd", - "key": "sponge", - "keywords": ["sponge", "SPONGE"], - "category": "objects", - "lib": { - "name": "SPONGE", - "unified": "1F9FD", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f9fd.png", - "sheet_x": 48, - "sheet_y": 17, - "short_name": "sponge", - "short_names": ["sponge"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 175, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - } - }, - "flag-nf": { - "char": "\ud83c\uddf3\ud83c\uddeb", - "key": "flag-nf", - "keywords": ["flag-nf", "Norfolk Island Flag"], - "category": "flags", - "lib": { - "name": "Norfolk Island Flag", - "unified": "1F1F3-1F1EB", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1f3-1f1eb.png", - "sheet_x": 3, - "sheet_y": 40, - "short_name": "flag-nf", - "short_names": ["flag-nf"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 176, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "u7981": { - "char": "\ud83c\ude32", - "key": "u7981", - "keywords": ["u7981", "SQUARED CJK UNIFIED IDEOGRAPH-7981"], - "category": "symbols", - "lib": { - "name": "SQUARED CJK UNIFIED IDEOGRAPH-7981", - "unified": "1F232", - "non_qualified": null, - "docomo": "E738", - "au": null, - "softbank": null, - "google": "FEB2E", - "image": "1f232.png", - "sheet_x": 5, - "sheet_y": 28, - "short_name": "u7981", - "short_names": ["u7981"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 176, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "stars": { - "char": "\ud83c\udf20", - "key": "stars", - "keywords": ["stars", "SHOOTING STAR"], - "category": "travel_and_places", - "lib": { - "name": "SHOOTING STAR", - "unified": "1F320", - "non_qualified": null, - "docomo": null, - "au": "E468", - "softbank": null, - "google": "FEB6A", - "image": "1f320.png", - "sheet_x": 6, - "sheet_y": 18, - "short_name": "stars", - "short_names": ["stars"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 176, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "fire_extinguisher": { - "char": "\ud83e\uddef", - "key": "fire_extinguisher", - "keywords": ["fire_extinguisher", "FIRE EXTINGUISHER"], - "category": "objects", - "lib": { - "name": "FIRE EXTINGUISHER", - "unified": "1F9EF", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f9ef.png", - "sheet_x": 48, - "sheet_y": 3, - "short_name": "fire_extinguisher", - "short_names": ["fire_extinguisher"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 176, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - } - }, - "flag-ng": { - "char": "\ud83c\uddf3\ud83c\uddec", - "key": "flag-ng", - "keywords": ["flag-ng", "Nigeria Flag"], - "category": "flags", - "lib": { - "name": "Nigeria Flag", - "unified": "1F1F3-1F1EC", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1f3-1f1ec.png", - "sheet_x": 3, - "sheet_y": 41, - "short_name": "flag-ng", - "short_names": ["flag-ng"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 177, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "accept": { - "char": "\ud83c\ude51", - "key": "accept", - "keywords": ["accept", "CIRCLED IDEOGRAPH ACCEPT"], - "category": "symbols", - "lib": { - "name": "CIRCLED IDEOGRAPH ACCEPT", - "unified": "1F251", - "non_qualified": null, - "docomo": null, - "au": "EB01", - "softbank": null, - "google": "FEB50", - "image": "1f251.png", - "sheet_x": 5, - "sheet_y": 38, - "short_name": "accept", - "short_names": ["accept"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 177, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "blond-haired-man": { - "char": "\ud83d\udc71\u200d\u2642\ufe0f", - "key": "blond-haired-man", - "keywords": ["blond-haired-man", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F471-200D-2642-FE0F", - "non_qualified": "1F471-200D-2642", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f471-200d-2642-fe0f.png", - "sheet_x": 21, - "sheet_y": 42, - "short_name": "blond-haired-man", - "short_names": ["blond-haired-man"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 177, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F471-1F3FB-200D-2642-FE0F", - "non_qualified": "1F471-1F3FB-200D-2642", - "image": "1f471-1f3fb-200d-2642-fe0f.png", - "sheet_x": 21, - "sheet_y": 43, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F471-1F3FC-200D-2642-FE0F", - "non_qualified": "1F471-1F3FC-200D-2642", - "image": "1f471-1f3fc-200d-2642-fe0f.png", - "sheet_x": 21, - "sheet_y": 44, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F471-1F3FD-200D-2642-FE0F", - "non_qualified": "1F471-1F3FD-200D-2642", - "image": "1f471-1f3fd-200d-2642-fe0f.png", - "sheet_x": 21, - "sheet_y": 45, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F471-1F3FE-200D-2642-FE0F", - "non_qualified": "1F471-1F3FE-200D-2642", - "image": "1f471-1f3fe-200d-2642-fe0f.png", - "sheet_x": 21, - "sheet_y": 46, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F471-1F3FF-200D-2642-FE0F", - "non_qualified": "1F471-1F3FF-200D-2642", - "image": "1f471-1f3ff-200d-2642-fe0f.png", - "sheet_x": 21, - "sheet_y": 47, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - } - }, - "obsoletes": "1F471" - } - }, - "shopping_trolley": { - "char": "\ud83d\uded2", - "key": "shopping_trolley", - "keywords": ["shopping_trolley", "SHOPPING TROLLEY"], - "category": "objects", - "lib": { - "name": "SHOPPING TROLLEY", - "unified": "1F6D2", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f6d2.png", - "sheet_x": 37, - "sheet_y": 19, - "short_name": "shopping_trolley", - "short_names": ["shopping_trolley"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 177, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "cloud": { - "char": "\u2601\ufe0f", - "key": "cloud", - "keywords": ["cloud", "CLOUD"], - "category": "travel_and_places", - "lib": { - "name": "CLOUD", - "unified": "2601-FE0F", - "non_qualified": "2601", - "docomo": "E63F", - "au": "E48D", - "softbank": "E049", - "google": "FE001", - "image": "2601-fe0f.png", - "sheet_x": 49, - "sheet_y": 7, - "short_name": "cloud", - "short_names": ["cloud"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 177, - "added_in": "1.1", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-ni": { - "char": "\ud83c\uddf3\ud83c\uddee", - "key": "flag-ni", - "keywords": ["flag-ni", "Nicaragua Flag"], - "category": "flags", - "lib": { - "name": "Nicaragua Flag", - "unified": "1F1F3-1F1EE", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1f3-1f1ee.png", - "sheet_x": 3, - "sheet_y": 42, - "short_name": "flag-ni", - "short_names": ["flag-ni"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 178, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "u7533": { - "char": "\ud83c\ude38", - "key": "u7533", - "keywords": ["u7533", "SQUARED CJK UNIFIED IDEOGRAPH-7533"], - "category": "symbols", - "lib": { - "name": "SQUARED CJK UNIFIED IDEOGRAPH-7533", - "unified": "1F238", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": "E218", - "google": "FEB3C", - "image": "1f238.png", - "sheet_x": 5, - "sheet_y": 34, - "short_name": "u7533", - "short_names": ["u7533"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 178, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "blond-haired-woman": { - "char": "\ud83d\udc71\u200d\u2640\ufe0f", - "key": "blond-haired-woman", - "keywords": ["blond-haired-woman", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F471-200D-2640-FE0F", - "non_qualified": "1F471-200D-2640", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f471-200d-2640-fe0f.png", - "sheet_x": 21, - "sheet_y": 36, - "short_name": "blond-haired-woman", - "short_names": ["blond-haired-woman"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 178, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F471-1F3FB-200D-2640-FE0F", - "non_qualified": "1F471-1F3FB-200D-2640", - "image": "1f471-1f3fb-200d-2640-fe0f.png", - "sheet_x": 21, - "sheet_y": 37, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F471-1F3FC-200D-2640-FE0F", - "non_qualified": "1F471-1F3FC-200D-2640", - "image": "1f471-1f3fc-200d-2640-fe0f.png", - "sheet_x": 21, - "sheet_y": 38, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F471-1F3FD-200D-2640-FE0F", - "non_qualified": "1F471-1F3FD-200D-2640", - "image": "1f471-1f3fd-200d-2640-fe0f.png", - "sheet_x": 21, - "sheet_y": 39, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F471-1F3FE-200D-2640-FE0F", - "non_qualified": "1F471-1F3FE-200D-2640", - "image": "1f471-1f3fe-200d-2640-fe0f.png", - "sheet_x": 21, - "sheet_y": 40, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F471-1F3FF-200D-2640-FE0F", - "non_qualified": "1F471-1F3FF-200D-2640", - "image": "1f471-1f3ff-200d-2640-fe0f.png", - "sheet_x": 21, - "sheet_y": 41, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - } - } - } - }, - "smoking": { - "char": "\ud83d\udeac", - "key": "smoking", - "keywords": ["smoking", "SMOKING SYMBOL"], - "category": "objects", - "lib": { - "name": "SMOKING SYMBOL", - "unified": "1F6AC", - "non_qualified": null, - "docomo": "E67F", - "au": "E47D", - "softbank": "E30E", - "google": "FEB1E", - "image": "1f6ac.png", - "sheet_x": 35, - "sheet_y": 31, - "short_name": "smoking", - "short_names": ["smoking"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 178, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "partly_sunny": { - "char": "\u26c5", - "key": "partly_sunny", - "keywords": ["partly_sunny", "SUN BEHIND CLOUD"], - "category": "travel_and_places", - "lib": { - "name": "SUN BEHIND CLOUD", - "unified": "26C5", - "non_qualified": null, - "docomo": "E63E-E63F", - "au": "E48E", - "softbank": null, - "google": "FE00F", - "image": "26c5.png", - "sheet_x": 50, - "sheet_y": 20, - "short_name": "partly_sunny", - "short_names": ["partly_sunny"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 178, - "added_in": "5.2", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-nl": { - "char": "\ud83c\uddf3\ud83c\uddf1", - "key": "flag-nl", - "keywords": ["flag-nl", "Netherlands Flag"], - "category": "flags", - "lib": { - "name": "Netherlands Flag", - "unified": "1F1F3-1F1F1", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1f3-1f1f1.png", - "sheet_x": 3, - "sheet_y": 43, - "short_name": "flag-nl", - "short_names": ["flag-nl"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 179, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "u5408": { - "char": "\ud83c\ude34", - "key": "u5408", - "keywords": ["u5408", "SQUARED CJK UNIFIED IDEOGRAPH-5408"], - "category": "symbols", - "lib": { - "name": "SQUARED CJK UNIFIED IDEOGRAPH-5408", - "unified": "1F234", - "non_qualified": null, - "docomo": "E73A", - "au": null, - "softbank": null, - "google": "FEB30", - "image": "1f234.png", - "sheet_x": 5, - "sheet_y": 30, - "short_name": "u5408", - "short_names": ["u5408"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 179, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "male_red_haired": { - "char": "\ud83d\udc68\u200d\ud83e\uddb0", - "key": "male_red_haired", - "keywords": ["male_red_haired", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F468-200D-1F9B0", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f468-200d-1f9b0.png", - "sheet_x": 17, - "sheet_y": 27, - "short_name": "male_red_haired", - "short_names": ["male_red_haired"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 179, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F468-1F3FB-200D-1F9B0", - "non_qualified": null, - "image": "1f468-1f3fb-200d-1f9b0.png", - "sheet_x": 17, - "sheet_y": 28, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F468-1F3FC-200D-1F9B0", - "non_qualified": null, - "image": "1f468-1f3fc-200d-1f9b0.png", - "sheet_x": 17, - "sheet_y": 29, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F468-1F3FD-200D-1F9B0", - "non_qualified": null, - "image": "1f468-1f3fd-200d-1f9b0.png", - "sheet_x": 17, - "sheet_y": 30, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F468-1F3FE-200D-1F9B0", - "non_qualified": null, - "image": "1f468-1f3fe-200d-1f9b0.png", - "sheet_x": 17, - "sheet_y": 31, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F468-1F3FF-200D-1F9B0", - "non_qualified": null, - "image": "1f468-1f3ff-200d-1f9b0.png", - "sheet_x": 17, - "sheet_y": 32, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - } - } - } - }, - "coffin": { - "char": "\u26b0\ufe0f", - "key": "coffin", - "keywords": ["coffin", ""], - "category": "objects", - "lib": { - "name": null, - "unified": "26B0-FE0F", - "non_qualified": "26B0", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "26b0-fe0f.png", - "sheet_x": 50, - "sheet_y": 15, - "short_name": "coffin", - "short_names": ["coffin"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 179, - "added_in": "4.1", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "thunder_cloud_and_rain": { - "char": "\u26c8\ufe0f", - "key": "thunder_cloud_and_rain", - "keywords": ["thunder_cloud_and_rain", ""], - "category": "travel_and_places", - "lib": { - "name": null, - "unified": "26C8-FE0F", - "non_qualified": "26C8", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "26c8-fe0f.png", - "sheet_x": 50, - "sheet_y": 21, - "short_name": "thunder_cloud_and_rain", - "short_names": ["thunder_cloud_and_rain"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 179, - "added_in": "5.2", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "flag-no": { - "char": "\ud83c\uddf3\ud83c\uddf4", - "key": "flag-no", - "keywords": ["flag-no", "Norway Flag"], - "category": "flags", - "lib": { - "name": "Norway Flag", - "unified": "1F1F3-1F1F4", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1f3-1f1f4.png", - "sheet_x": 3, - "sheet_y": 44, - "short_name": "flag-no", - "short_names": ["flag-no"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 180, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "u7a7a": { - "char": "\ud83c\ude33", - "key": "u7a7a", - "keywords": ["u7a7a", "SQUARED CJK UNIFIED IDEOGRAPH-7A7A"], - "category": "symbols", - "lib": { - "name": "SQUARED CJK UNIFIED IDEOGRAPH-7A7A", - "unified": "1F233", - "non_qualified": null, - "docomo": "E739", - "au": "EA8A", - "softbank": "E22B", - "google": "FEB2F", - "image": "1f233.png", - "sheet_x": 5, - "sheet_y": 29, - "short_name": "u7a7a", - "short_names": ["u7a7a"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 180, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "mostly_sunny": { - "char": "\ud83c\udf24\ufe0f", - "key": "mostly_sunny", - "keywords": ["mostly_sunny", ""], - "category": "travel_and_places", - "lib": { - "name": null, - "unified": "1F324-FE0F", - "non_qualified": "1F324", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f324-fe0f.png", - "sheet_x": 6, - "sheet_y": 20, - "short_name": "mostly_sunny", - "short_names": ["mostly_sunny", "sun_small_cloud"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 180, - "added_in": "7.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "female_red_haired": { - "char": "\ud83d\udc69\u200d\ud83e\uddb0", - "key": "female_red_haired", - "keywords": ["female_red_haired", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F469-200D-1F9B0", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f469-200d-1f9b0.png", - "sheet_x": 20, - "sheet_y": 6, - "short_name": "female_red_haired", - "short_names": ["female_red_haired"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 180, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F469-1F3FB-200D-1F9B0", - "non_qualified": null, - "image": "1f469-1f3fb-200d-1f9b0.png", - "sheet_x": 20, - "sheet_y": 7, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F469-1F3FC-200D-1F9B0", - "non_qualified": null, - "image": "1f469-1f3fc-200d-1f9b0.png", - "sheet_x": 20, - "sheet_y": 8, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F469-1F3FD-200D-1F9B0", - "non_qualified": null, - "image": "1f469-1f3fd-200d-1f9b0.png", - "sheet_x": 20, - "sheet_y": 9, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F469-1F3FE-200D-1F9B0", - "non_qualified": null, - "image": "1f469-1f3fe-200d-1f9b0.png", - "sheet_x": 20, - "sheet_y": 10, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F469-1F3FF-200D-1F9B0", - "non_qualified": null, - "image": "1f469-1f3ff-200d-1f9b0.png", - "sheet_x": 20, - "sheet_y": 11, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - } - } - } - }, - "funeral_urn": { - "char": "\u26b1\ufe0f", - "key": "funeral_urn", - "keywords": ["funeral_urn", ""], - "category": "objects", - "lib": { - "name": null, - "unified": "26B1-FE0F", - "non_qualified": "26B1", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "26b1-fe0f.png", - "sheet_x": 50, - "sheet_y": 16, - "short_name": "funeral_urn", - "short_names": ["funeral_urn"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 180, - "added_in": "4.1", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "flag-np": { - "char": "\ud83c\uddf3\ud83c\uddf5", - "key": "flag-np", - "keywords": ["flag-np", "Nepal Flag"], - "category": "flags", - "lib": { - "name": "Nepal Flag", - "unified": "1F1F3-1F1F5", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1f3-1f1f5.png", - "sheet_x": 3, - "sheet_y": 45, - "short_name": "flag-np", - "short_names": ["flag-np"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 181, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "barely_sunny": { - "char": "\ud83c\udf25\ufe0f", - "key": "barely_sunny", - "keywords": ["barely_sunny", ""], - "category": "travel_and_places", - "lib": { - "name": null, - "unified": "1F325-FE0F", - "non_qualified": "1F325", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f325-fe0f.png", - "sheet_x": 6, - "sheet_y": 21, - "short_name": "barely_sunny", - "short_names": ["barely_sunny", "sun_behind_cloud"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 181, - "added_in": "7.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "male_curly_haired": { - "char": "\ud83d\udc68\u200d\ud83e\uddb1", - "key": "male_curly_haired", - "keywords": ["male_curly_haired", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F468-200D-1F9B1", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f468-200d-1f9b1.png", - "sheet_x": 17, - "sheet_y": 33, - "short_name": "male_curly_haired", - "short_names": ["male_curly_haired"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 181, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F468-1F3FB-200D-1F9B1", - "non_qualified": null, - "image": "1f468-1f3fb-200d-1f9b1.png", - "sheet_x": 17, - "sheet_y": 34, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F468-1F3FC-200D-1F9B1", - "non_qualified": null, - "image": "1f468-1f3fc-200d-1f9b1.png", - "sheet_x": 17, - "sheet_y": 35, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F468-1F3FD-200D-1F9B1", - "non_qualified": null, - "image": "1f468-1f3fd-200d-1f9b1.png", - "sheet_x": 17, - "sheet_y": 36, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F468-1F3FE-200D-1F9B1", - "non_qualified": null, - "image": "1f468-1f3fe-200d-1f9b1.png", - "sheet_x": 17, - "sheet_y": 37, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F468-1F3FF-200D-1F9B1", - "non_qualified": null, - "image": "1f468-1f3ff-200d-1f9b1.png", - "sheet_x": 17, - "sheet_y": 38, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - } - } - } - }, - "moyai": { - "char": "\ud83d\uddff", - "key": "moyai", - "keywords": ["moyai", "MOYAI"], - "category": "objects", - "lib": { - "name": "MOYAI", - "unified": "1F5FF", - "non_qualified": null, - "docomo": null, - "au": "EB6C", - "softbank": null, - "google": "FE4C8", - "image": "1f5ff.png", - "sheet_x": 30, - "sheet_y": 42, - "short_name": "moyai", - "short_names": ["moyai"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 181, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "congratulations": { - "char": "\u3297\ufe0f", - "key": "congratulations", - "keywords": ["congratulations", "CIRCLED IDEOGRAPH CONGRATULATION"], - "category": "symbols", - "lib": { - "name": "CIRCLED IDEOGRAPH CONGRATULATION", - "unified": "3297-FE0F", - "non_qualified": "3297", - "docomo": null, - "au": "EA99", - "softbank": "E30D", - "google": "FEB43", - "image": "3297-fe0f.png", - "sheet_x": 52, - "sheet_y": 15, - "short_name": "congratulations", - "short_names": ["congratulations"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 181, - "added_in": "1.1", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-nr": { - "char": "\ud83c\uddf3\ud83c\uddf7", - "key": "flag-nr", - "keywords": ["flag-nr", "Nauru Flag"], - "category": "flags", - "lib": { - "name": "Nauru Flag", - "unified": "1F1F3-1F1F7", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1f3-1f1f7.png", - "sheet_x": 3, - "sheet_y": 46, - "short_name": "flag-nr", - "short_names": ["flag-nr"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 182, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "partly_sunny_rain": { - "char": "\ud83c\udf26\ufe0f", - "key": "partly_sunny_rain", - "keywords": ["partly_sunny_rain", ""], - "category": "travel_and_places", - "lib": { - "name": null, - "unified": "1F326-FE0F", - "non_qualified": "1F326", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f326-fe0f.png", - "sheet_x": 6, - "sheet_y": 22, - "short_name": "partly_sunny_rain", - "short_names": ["partly_sunny_rain", "sun_behind_rain_cloud"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 182, - "added_in": "7.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "female_curly_haired": { - "char": "\ud83d\udc69\u200d\ud83e\uddb1", - "key": "female_curly_haired", - "keywords": ["female_curly_haired", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F469-200D-1F9B1", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f469-200d-1f9b1.png", - "sheet_x": 20, - "sheet_y": 12, - "short_name": "female_curly_haired", - "short_names": ["female_curly_haired"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 182, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F469-1F3FB-200D-1F9B1", - "non_qualified": null, - "image": "1f469-1f3fb-200d-1f9b1.png", - "sheet_x": 20, - "sheet_y": 13, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F469-1F3FC-200D-1F9B1", - "non_qualified": null, - "image": "1f469-1f3fc-200d-1f9b1.png", - "sheet_x": 20, - "sheet_y": 14, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F469-1F3FD-200D-1F9B1", - "non_qualified": null, - "image": "1f469-1f3fd-200d-1f9b1.png", - "sheet_x": 20, - "sheet_y": 15, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F469-1F3FE-200D-1F9B1", - "non_qualified": null, - "image": "1f469-1f3fe-200d-1f9b1.png", - "sheet_x": 20, - "sheet_y": 16, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F469-1F3FF-200D-1F9B1", - "non_qualified": null, - "image": "1f469-1f3ff-200d-1f9b1.png", - "sheet_x": 20, - "sheet_y": 17, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - } - } - } - }, - "secret": { - "char": "\u3299\ufe0f", - "key": "secret", - "keywords": ["secret", "CIRCLED IDEOGRAPH SECRET"], - "category": "symbols", - "lib": { - "name": "CIRCLED IDEOGRAPH SECRET", - "unified": "3299-FE0F", - "non_qualified": "3299", - "docomo": "E734", - "au": "E4F1", - "softbank": "E315", - "google": "FEB2B", - "image": "3299-fe0f.png", - "sheet_x": 52, - "sheet_y": 16, - "short_name": "secret", - "short_names": ["secret"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 182, - "added_in": "1.1", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-nu": { - "char": "\ud83c\uddf3\ud83c\uddfa", - "key": "flag-nu", - "keywords": ["flag-nu", "Niue Flag"], - "category": "flags", - "lib": { - "name": "Niue Flag", - "unified": "1F1F3-1F1FA", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1f3-1f1fa.png", - "sheet_x": 3, - "sheet_y": 47, - "short_name": "flag-nu", - "short_names": ["flag-nu"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 183, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "u55b6": { - "char": "\ud83c\ude3a", - "key": "u55b6", - "keywords": ["u55b6", "SQUARED CJK UNIFIED IDEOGRAPH-55B6"], - "category": "symbols", - "lib": { - "name": "SQUARED CJK UNIFIED IDEOGRAPH-55B6", - "unified": "1F23A", - "non_qualified": null, - "docomo": null, - "au": "EA8C", - "softbank": "E22D", - "google": "FEB41", - "image": "1f23a.png", - "sheet_x": 5, - "sheet_y": 36, - "short_name": "u55b6", - "short_names": ["u55b6"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 183, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "rain_cloud": { - "char": "\ud83c\udf27\ufe0f", - "key": "rain_cloud", - "keywords": ["rain_cloud", ""], - "category": "travel_and_places", - "lib": { - "name": null, - "unified": "1F327-FE0F", - "non_qualified": "1F327", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f327-fe0f.png", - "sheet_x": 6, - "sheet_y": 23, - "short_name": "rain_cloud", - "short_names": ["rain_cloud"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 183, - "added_in": "7.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "male_bald": { - "char": "\ud83d\udc68\u200d\ud83e\uddb2", - "key": "male_bald", - "keywords": ["male_bald", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F468-200D-1F9B2", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f468-200d-1f9b2.png", - "sheet_x": 17, - "sheet_y": 39, - "short_name": "male_bald", - "short_names": ["male_bald"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 183, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F468-1F3FB-200D-1F9B2", - "non_qualified": null, - "image": "1f468-1f3fb-200d-1f9b2.png", - "sheet_x": 17, - "sheet_y": 40, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F468-1F3FC-200D-1F9B2", - "non_qualified": null, - "image": "1f468-1f3fc-200d-1f9b2.png", - "sheet_x": 17, - "sheet_y": 41, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F468-1F3FD-200D-1F9B2", - "non_qualified": null, - "image": "1f468-1f3fd-200d-1f9b2.png", - "sheet_x": 17, - "sheet_y": 42, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F468-1F3FE-200D-1F9B2", - "non_qualified": null, - "image": "1f468-1f3fe-200d-1f9b2.png", - "sheet_x": 17, - "sheet_y": 43, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F468-1F3FF-200D-1F9B2", - "non_qualified": null, - "image": "1f468-1f3ff-200d-1f9b2.png", - "sheet_x": 17, - "sheet_y": 44, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - } - } - } - }, - "flag-nz": { - "char": "\ud83c\uddf3\ud83c\uddff", - "key": "flag-nz", - "keywords": ["flag-nz", "New Zealand Flag"], - "category": "flags", - "lib": { - "name": "New Zealand Flag", - "unified": "1F1F3-1F1FF", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1f3-1f1ff.png", - "sheet_x": 3, - "sheet_y": 48, - "short_name": "flag-nz", - "short_names": ["flag-nz"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 184, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "u6e80": { - "char": "\ud83c\ude35", - "key": "u6e80", - "keywords": ["u6e80", "SQUARED CJK UNIFIED IDEOGRAPH-6E80"], - "category": "symbols", - "lib": { - "name": "SQUARED CJK UNIFIED IDEOGRAPH-6E80", - "unified": "1F235", - "non_qualified": null, - "docomo": "E73B", - "au": "EA89", - "softbank": "E22A", - "google": "FEB31", - "image": "1f235.png", - "sheet_x": 5, - "sheet_y": 31, - "short_name": "u6e80", - "short_names": ["u6e80"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 184, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "snow_cloud": { - "char": "\ud83c\udf28\ufe0f", - "key": "snow_cloud", - "keywords": ["snow_cloud", ""], - "category": "travel_and_places", - "lib": { - "name": null, - "unified": "1F328-FE0F", - "non_qualified": "1F328", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f328-fe0f.png", - "sheet_x": 6, - "sheet_y": 24, - "short_name": "snow_cloud", - "short_names": ["snow_cloud"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 184, - "added_in": "7.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "female_bald": { - "char": "\ud83d\udc69\u200d\ud83e\uddb2", - "key": "female_bald", - "keywords": ["female_bald", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F469-200D-1F9B2", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f469-200d-1f9b2.png", - "sheet_x": 20, - "sheet_y": 18, - "short_name": "female_bald", - "short_names": ["female_bald"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 184, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F469-1F3FB-200D-1F9B2", - "non_qualified": null, - "image": "1f469-1f3fb-200d-1f9b2.png", - "sheet_x": 20, - "sheet_y": 19, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F469-1F3FC-200D-1F9B2", - "non_qualified": null, - "image": "1f469-1f3fc-200d-1f9b2.png", - "sheet_x": 20, - "sheet_y": 20, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F469-1F3FD-200D-1F9B2", - "non_qualified": null, - "image": "1f469-1f3fd-200d-1f9b2.png", - "sheet_x": 20, - "sheet_y": 21, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F469-1F3FE-200D-1F9B2", - "non_qualified": null, - "image": "1f469-1f3fe-200d-1f9b2.png", - "sheet_x": 20, - "sheet_y": 22, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F469-1F3FF-200D-1F9B2", - "non_qualified": null, - "image": "1f469-1f3ff-200d-1f9b2.png", - "sheet_x": 20, - "sheet_y": 23, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - } - } - } - }, - "flag-om": { - "char": "\ud83c\uddf4\ud83c\uddf2", - "key": "flag-om", - "keywords": ["flag-om", "Oman Flag"], - "category": "flags", - "lib": { - "name": "Oman Flag", - "unified": "1F1F4-1F1F2", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1f4-1f1f2.png", - "sheet_x": 3, - "sheet_y": 49, - "short_name": "flag-om", - "short_names": ["flag-om"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 185, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "lightning": { - "char": "\ud83c\udf29\ufe0f", - "key": "lightning", - "keywords": ["lightning", ""], - "category": "travel_and_places", - "lib": { - "name": null, - "unified": "1F329-FE0F", - "non_qualified": "1F329", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f329-fe0f.png", - "sheet_x": 6, - "sheet_y": 25, - "short_name": "lightning", - "short_names": ["lightning", "lightning_cloud"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 185, - "added_in": "7.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "male_white_haired": { - "char": "\ud83d\udc68\u200d\ud83e\uddb3", - "key": "male_white_haired", - "keywords": ["male_white_haired", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F468-200D-1F9B3", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f468-200d-1f9b3.png", - "sheet_x": 17, - "sheet_y": 45, - "short_name": "male_white_haired", - "short_names": ["male_white_haired"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 185, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F468-1F3FB-200D-1F9B3", - "non_qualified": null, - "image": "1f468-1f3fb-200d-1f9b3.png", - "sheet_x": 17, - "sheet_y": 46, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F468-1F3FC-200D-1F9B3", - "non_qualified": null, - "image": "1f468-1f3fc-200d-1f9b3.png", - "sheet_x": 17, - "sheet_y": 47, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F468-1F3FD-200D-1F9B3", - "non_qualified": null, - "image": "1f468-1f3fd-200d-1f9b3.png", - "sheet_x": 17, - "sheet_y": 48, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F468-1F3FE-200D-1F9B3", - "non_qualified": null, - "image": "1f468-1f3fe-200d-1f9b3.png", - "sheet_x": 17, - "sheet_y": 49, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F468-1F3FF-200D-1F9B3", - "non_qualified": null, - "image": "1f468-1f3ff-200d-1f9b3.png", - "sheet_x": 17, - "sheet_y": 50, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - } - } - } - }, - "black_small_square": { - "char": "\u25aa\ufe0f", - "key": "black_small_square", - "keywords": ["black_small_square", "BLACK SMALL SQUARE"], - "category": "symbols", - "lib": { - "name": "BLACK SMALL SQUARE", - "unified": "25AA-FE0F", - "non_qualified": "25AA", - "docomo": null, - "au": "E532", - "softbank": null, - "google": "FEB6E", - "image": "25aa-fe0f.png", - "sheet_x": 48, - "sheet_y": 51, - "short_name": "black_small_square", - "short_names": ["black_small_square"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 185, - "added_in": "1.1", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-pa": { - "char": "\ud83c\uddf5\ud83c\udde6", - "key": "flag-pa", - "keywords": ["flag-pa", "Panama Flag"], - "category": "flags", - "lib": { - "name": "Panama Flag", - "unified": "1F1F5-1F1E6", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1f5-1f1e6.png", - "sheet_x": 3, - "sheet_y": 50, - "short_name": "flag-pa", - "short_names": ["flag-pa"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 186, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "tornado": { - "char": "\ud83c\udf2a\ufe0f", - "key": "tornado", - "keywords": ["tornado", ""], - "category": "travel_and_places", - "lib": { - "name": null, - "unified": "1F32A-FE0F", - "non_qualified": "1F32A", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f32a-fe0f.png", - "sheet_x": 6, - "sheet_y": 26, - "short_name": "tornado", - "short_names": ["tornado", "tornado_cloud"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 186, - "added_in": "7.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "female_white_haired": { - "char": "\ud83d\udc69\u200d\ud83e\uddb3", - "key": "female_white_haired", - "keywords": ["female_white_haired", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F469-200D-1F9B3", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f469-200d-1f9b3.png", - "sheet_x": 20, - "sheet_y": 24, - "short_name": "female_white_haired", - "short_names": ["female_white_haired"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 186, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F469-1F3FB-200D-1F9B3", - "non_qualified": null, - "image": "1f469-1f3fb-200d-1f9b3.png", - "sheet_x": 20, - "sheet_y": 25, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F469-1F3FC-200D-1F9B3", - "non_qualified": null, - "image": "1f469-1f3fc-200d-1f9b3.png", - "sheet_x": 20, - "sheet_y": 26, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F469-1F3FD-200D-1F9B3", - "non_qualified": null, - "image": "1f469-1f3fd-200d-1f9b3.png", - "sheet_x": 20, - "sheet_y": 27, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F469-1F3FE-200D-1F9B3", - "non_qualified": null, - "image": "1f469-1f3fe-200d-1f9b3.png", - "sheet_x": 20, - "sheet_y": 28, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F469-1F3FF-200D-1F9B3", - "non_qualified": null, - "image": "1f469-1f3ff-200d-1f9b3.png", - "sheet_x": 20, - "sheet_y": 29, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - } - } - } - }, - "white_small_square": { - "char": "\u25ab\ufe0f", - "key": "white_small_square", - "keywords": ["white_small_square", "WHITE SMALL SQUARE"], - "category": "symbols", - "lib": { - "name": "WHITE SMALL SQUARE", - "unified": "25AB-FE0F", - "non_qualified": "25AB", - "docomo": null, - "au": "E531", - "softbank": null, - "google": "FEB6D", - "image": "25ab-fe0f.png", - "sheet_x": 48, - "sheet_y": 52, - "short_name": "white_small_square", - "short_names": ["white_small_square"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 186, - "added_in": "1.1", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-pe": { - "char": "\ud83c\uddf5\ud83c\uddea", - "key": "flag-pe", - "keywords": ["flag-pe", "Peru Flag"], - "category": "flags", - "lib": { - "name": "Peru Flag", - "unified": "1F1F5-1F1EA", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1f5-1f1ea.png", - "sheet_x": 3, - "sheet_y": 51, - "short_name": "flag-pe", - "short_names": ["flag-pe"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 187, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "fog": { - "char": "\ud83c\udf2b\ufe0f", - "key": "fog", - "keywords": ["fog", ""], - "category": "travel_and_places", - "lib": { - "name": null, - "unified": "1F32B-FE0F", - "non_qualified": "1F32B", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f32b-fe0f.png", - "sheet_x": 6, - "sheet_y": 27, - "short_name": "fog", - "short_names": ["fog"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 187, - "added_in": "7.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "man_in_tuxedo": { - "char": "\ud83e\udd35", - "key": "man_in_tuxedo", - "keywords": ["man_in_tuxedo", "MAN IN TUXEDO"], - "category": "people", - "lib": { - "name": "MAN IN TUXEDO", - "unified": "1F935", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f935.png", - "sheet_x": 39, - "sheet_y": 45, - "short_name": "man_in_tuxedo", - "short_names": ["man_in_tuxedo"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 187, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F935-1F3FB", - "non_qualified": null, - "image": "1f935-1f3fb.png", - "sheet_x": 39, - "sheet_y": 46, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F935-1F3FC", - "non_qualified": null, - "image": "1f935-1f3fc.png", - "sheet_x": 39, - "sheet_y": 47, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F935-1F3FD", - "non_qualified": null, - "image": "1f935-1f3fd.png", - "sheet_x": 39, - "sheet_y": 48, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F935-1F3FE", - "non_qualified": null, - "image": "1f935-1f3fe.png", - "sheet_x": 39, - "sheet_y": 49, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F935-1F3FF", - "non_qualified": null, - "image": "1f935-1f3ff.png", - "sheet_x": 39, - "sheet_y": 50, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - } - } - }, - "white_medium_square": { - "char": "\u25fb\ufe0f", - "key": "white_medium_square", - "keywords": ["white_medium_square", "WHITE MEDIUM SQUARE"], - "category": "symbols", - "lib": { - "name": "WHITE MEDIUM SQUARE", - "unified": "25FB-FE0F", - "non_qualified": "25FB", - "docomo": null, - "au": "E538", - "softbank": null, - "google": "FEB71", - "image": "25fb-fe0f.png", - "sheet_x": 49, - "sheet_y": 2, - "short_name": "white_medium_square", - "short_names": ["white_medium_square"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 187, - "added_in": "3.2", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-pf": { - "char": "\ud83c\uddf5\ud83c\uddeb", - "key": "flag-pf", - "keywords": ["flag-pf", "French Polynesia Flag"], - "category": "flags", - "lib": { - "name": "French Polynesia Flag", - "unified": "1F1F5-1F1EB", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1f5-1f1eb.png", - "sheet_x": 3, - "sheet_y": 52, - "short_name": "flag-pf", - "short_names": ["flag-pf"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 188, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "wind_blowing_face": { - "char": "\ud83c\udf2c\ufe0f", - "key": "wind_blowing_face", - "keywords": ["wind_blowing_face", ""], - "category": "travel_and_places", - "lib": { - "name": null, - "unified": "1F32C-FE0F", - "non_qualified": "1F32C", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f32c-fe0f.png", - "sheet_x": 6, - "sheet_y": 28, - "short_name": "wind_blowing_face", - "short_names": ["wind_blowing_face"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 188, - "added_in": "7.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "bride_with_veil": { - "char": "\ud83d\udc70", - "key": "bride_with_veil", - "keywords": ["bride_with_veil", "BRIDE WITH VEIL"], - "category": "people", - "lib": { - "name": "BRIDE WITH VEIL", - "unified": "1F470", - "non_qualified": null, - "docomo": null, - "au": "EAE9", - "softbank": null, - "google": "FE1A3", - "image": "1f470.png", - "sheet_x": 21, - "sheet_y": 30, - "short_name": "bride_with_veil", - "short_names": ["bride_with_veil"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 188, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true, - "skin_variations": { - "1F3FB": { - "unified": "1F470-1F3FB", - "non_qualified": null, - "image": "1f470-1f3fb.png", - "sheet_x": 21, - "sheet_y": 31, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FC": { - "unified": "1F470-1F3FC", - "non_qualified": null, - "image": "1f470-1f3fc.png", - "sheet_x": 21, - "sheet_y": 32, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FD": { - "unified": "1F470-1F3FD", - "non_qualified": null, - "image": "1f470-1f3fd.png", - "sheet_x": 21, - "sheet_y": 33, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FE": { - "unified": "1F470-1F3FE", - "non_qualified": null, - "image": "1f470-1f3fe.png", - "sheet_x": 21, - "sheet_y": 34, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FF": { - "unified": "1F470-1F3FF", - "non_qualified": null, - "image": "1f470-1f3ff.png", - "sheet_x": 21, - "sheet_y": 35, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - } - } - }, - "black_medium_square": { - "char": "\u25fc\ufe0f", - "key": "black_medium_square", - "keywords": ["black_medium_square", "BLACK MEDIUM SQUARE"], - "category": "symbols", - "lib": { - "name": "BLACK MEDIUM SQUARE", - "unified": "25FC-FE0F", - "non_qualified": "25FC", - "docomo": null, - "au": "E539", - "softbank": null, - "google": "FEB72", - "image": "25fc-fe0f.png", - "sheet_x": 49, - "sheet_y": 3, - "short_name": "black_medium_square", - "short_names": ["black_medium_square"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 188, - "added_in": "3.2", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-pg": { - "char": "\ud83c\uddf5\ud83c\uddec", - "key": "flag-pg", - "keywords": ["flag-pg", "Papua New Guinea Flag"], - "category": "flags", - "lib": { - "name": "Papua New Guinea Flag", - "unified": "1F1F5-1F1EC", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1f5-1f1ec.png", - "sheet_x": 4, - "sheet_y": 0, - "short_name": "flag-pg", - "short_names": ["flag-pg"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 189, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "cyclone": { - "char": "\ud83c\udf00", - "key": "cyclone", - "keywords": ["cyclone", "CYCLONE"], - "category": "travel_and_places", - "lib": { - "name": "CYCLONE", - "unified": "1F300", - "non_qualified": null, - "docomo": "E643", - "au": "E469", - "softbank": "E443", - "google": "FE005", - "image": "1f300.png", - "sheet_x": 5, - "sheet_y": 39, - "short_name": "cyclone", - "short_names": ["cyclone"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 189, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "pregnant_woman": { - "char": "\ud83e\udd30", - "key": "pregnant_woman", - "keywords": ["pregnant_woman", "PREGNANT WOMAN"], - "category": "people", - "lib": { - "name": "PREGNANT WOMAN", - "unified": "1F930", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f930.png", - "sheet_x": 39, - "sheet_y": 15, - "short_name": "pregnant_woman", - "short_names": ["pregnant_woman"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 189, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F930-1F3FB", - "non_qualified": null, - "image": "1f930-1f3fb.png", - "sheet_x": 39, - "sheet_y": 16, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F930-1F3FC", - "non_qualified": null, - "image": "1f930-1f3fc.png", - "sheet_x": 39, - "sheet_y": 17, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F930-1F3FD", - "non_qualified": null, - "image": "1f930-1f3fd.png", - "sheet_x": 39, - "sheet_y": 18, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F930-1F3FE", - "non_qualified": null, - "image": "1f930-1f3fe.png", - "sheet_x": 39, - "sheet_y": 19, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F930-1F3FF", - "non_qualified": null, - "image": "1f930-1f3ff.png", - "sheet_x": 39, - "sheet_y": 20, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - } - } - }, - "white_medium_small_square": { - "char": "\u25fd", - "key": "white_medium_small_square", - "keywords": ["white_medium_small_square", "WHITE MEDIUM SMALL SQUARE"], - "category": "symbols", - "lib": { - "name": "WHITE MEDIUM SMALL SQUARE", - "unified": "25FD", - "non_qualified": null, - "docomo": null, - "au": "E534", - "softbank": null, - "google": "FEB6F", - "image": "25fd.png", - "sheet_x": 49, - "sheet_y": 4, - "short_name": "white_medium_small_square", - "short_names": ["white_medium_small_square"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 189, - "added_in": "3.2", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-ph": { - "char": "\ud83c\uddf5\ud83c\udded", - "key": "flag-ph", - "keywords": ["flag-ph", "Philippines Flag"], - "category": "flags", - "lib": { - "name": "Philippines Flag", - "unified": "1F1F5-1F1ED", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1f5-1f1ed.png", - "sheet_x": 4, - "sheet_y": 1, - "short_name": "flag-ph", - "short_names": ["flag-ph"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 190, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "rainbow": { - "char": "\ud83c\udf08", - "key": "rainbow", - "keywords": ["rainbow", "RAINBOW"], - "category": "travel_and_places", - "lib": { - "name": "RAINBOW", - "unified": "1F308", - "non_qualified": null, - "docomo": null, - "au": "EAF2", - "softbank": "E44C", - "google": "FE00D", - "image": "1f308.png", - "sheet_x": 5, - "sheet_y": 47, - "short_name": "rainbow", - "short_names": ["rainbow"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 190, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "breast-feeding": { - "char": "\ud83e\udd31", - "key": "breast-feeding", - "keywords": ["breast-feeding", "BREAST-FEEDING"], - "category": "people", - "lib": { - "name": "BREAST-FEEDING", - "unified": "1F931", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f931.png", - "sheet_x": 39, - "sheet_y": 21, - "short_name": "breast-feeding", - "short_names": ["breast-feeding"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 190, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F931-1F3FB", - "non_qualified": null, - "image": "1f931-1f3fb.png", - "sheet_x": 39, - "sheet_y": 22, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F931-1F3FC", - "non_qualified": null, - "image": "1f931-1f3fc.png", - "sheet_x": 39, - "sheet_y": 23, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F931-1F3FD", - "non_qualified": null, - "image": "1f931-1f3fd.png", - "sheet_x": 39, - "sheet_y": 24, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F931-1F3FE", - "non_qualified": null, - "image": "1f931-1f3fe.png", - "sheet_x": 39, - "sheet_y": 25, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F931-1F3FF", - "non_qualified": null, - "image": "1f931-1f3ff.png", - "sheet_x": 39, - "sheet_y": 26, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - } - } - }, - "black_medium_small_square": { - "char": "\u25fe", - "key": "black_medium_small_square", - "keywords": ["black_medium_small_square", "BLACK MEDIUM SMALL SQUARE"], - "category": "symbols", - "lib": { - "name": "BLACK MEDIUM SMALL SQUARE", - "unified": "25FE", - "non_qualified": null, - "docomo": null, - "au": "E535", - "softbank": null, - "google": "FEB70", - "image": "25fe.png", - "sheet_x": 49, - "sheet_y": 5, - "short_name": "black_medium_small_square", - "short_names": ["black_medium_small_square"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 190, - "added_in": "3.2", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-pk": { - "char": "\ud83c\uddf5\ud83c\uddf0", - "key": "flag-pk", - "keywords": ["flag-pk", "Pakistan Flag"], - "category": "flags", - "lib": { - "name": "Pakistan Flag", - "unified": "1F1F5-1F1F0", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1f5-1f1f0.png", - "sheet_x": 4, - "sheet_y": 2, - "short_name": "flag-pk", - "short_names": ["flag-pk"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 191, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "closed_umbrella": { - "char": "\ud83c\udf02", - "key": "closed_umbrella", - "keywords": ["closed_umbrella", "CLOSED UMBRELLA"], - "category": "travel_and_places", - "lib": { - "name": "CLOSED UMBRELLA", - "unified": "1F302", - "non_qualified": null, - "docomo": "E645", - "au": "EAE8", - "softbank": "E43C", - "google": "FE007", - "image": "1f302.png", - "sheet_x": 5, - "sheet_y": 41, - "short_name": "closed_umbrella", - "short_names": ["closed_umbrella"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 191, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "angel": { - "char": "\ud83d\udc7c", - "key": "angel", - "keywords": ["angel", "BABY ANGEL"], - "category": "people", - "lib": { - "name": "BABY ANGEL", - "unified": "1F47C", - "non_qualified": null, - "docomo": null, - "au": "E5BF", - "softbank": "E04E", - "google": "FE1AF", - "image": "1f47c.png", - "sheet_x": 23, - "sheet_y": 17, - "short_name": "angel", - "short_names": ["angel"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 191, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true, - "skin_variations": { - "1F3FB": { - "unified": "1F47C-1F3FB", - "non_qualified": null, - "image": "1f47c-1f3fb.png", - "sheet_x": 23, - "sheet_y": 18, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FC": { - "unified": "1F47C-1F3FC", - "non_qualified": null, - "image": "1f47c-1f3fc.png", - "sheet_x": 23, - "sheet_y": 19, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FD": { - "unified": "1F47C-1F3FD", - "non_qualified": null, - "image": "1f47c-1f3fd.png", - "sheet_x": 23, - "sheet_y": 20, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FE": { - "unified": "1F47C-1F3FE", - "non_qualified": null, - "image": "1f47c-1f3fe.png", - "sheet_x": 23, - "sheet_y": 21, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FF": { - "unified": "1F47C-1F3FF", - "non_qualified": null, - "image": "1f47c-1f3ff.png", - "sheet_x": 23, - "sheet_y": 22, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - } - } - }, - "black_large_square": { - "char": "\u2b1b", - "key": "black_large_square", - "keywords": ["black_large_square", "BLACK LARGE SQUARE"], - "category": "symbols", - "lib": { - "name": "BLACK LARGE SQUARE", - "unified": "2B1B", - "non_qualified": null, - "docomo": null, - "au": "E549", - "softbank": null, - "google": "FEB6C", - "image": "2b1b.png", - "sheet_x": 52, - "sheet_y": 9, - "short_name": "black_large_square", - "short_names": ["black_large_square"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 191, - "added_in": "5.1", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-pl": { - "char": "\ud83c\uddf5\ud83c\uddf1", - "key": "flag-pl", - "keywords": ["flag-pl", "Poland Flag"], - "category": "flags", - "lib": { - "name": "Poland Flag", - "unified": "1F1F5-1F1F1", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1f5-1f1f1.png", - "sheet_x": 4, - "sheet_y": 3, - "short_name": "flag-pl", - "short_names": ["flag-pl"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 192, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "santa": { - "char": "\ud83c\udf85", - "key": "santa", - "keywords": ["santa", "FATHER CHRISTMAS"], - "category": "people", - "lib": { - "name": "FATHER CHRISTMAS", - "unified": "1F385", - "non_qualified": null, - "docomo": null, - "au": "EAF0", - "softbank": "E448", - "google": "FE513", - "image": "1f385.png", - "sheet_x": 8, - "sheet_y": 11, - "short_name": "santa", - "short_names": ["santa"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 192, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true, - "skin_variations": { - "1F3FB": { - "unified": "1F385-1F3FB", - "non_qualified": null, - "image": "1f385-1f3fb.png", - "sheet_x": 8, - "sheet_y": 12, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FC": { - "unified": "1F385-1F3FC", - "non_qualified": null, - "image": "1f385-1f3fc.png", - "sheet_x": 8, - "sheet_y": 13, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FD": { - "unified": "1F385-1F3FD", - "non_qualified": null, - "image": "1f385-1f3fd.png", - "sheet_x": 8, - "sheet_y": 14, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FE": { - "unified": "1F385-1F3FE", - "non_qualified": null, - "image": "1f385-1f3fe.png", - "sheet_x": 8, - "sheet_y": 15, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FF": { - "unified": "1F385-1F3FF", - "non_qualified": null, - "image": "1f385-1f3ff.png", - "sheet_x": 8, - "sheet_y": 16, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - } - } - }, - "umbrella": { - "char": "\u2602\ufe0f", - "key": "umbrella", - "keywords": ["umbrella", ""], - "category": "travel_and_places", - "lib": { - "name": null, - "unified": "2602-FE0F", - "non_qualified": "2602", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "2602-fe0f.png", - "sheet_x": 49, - "sheet_y": 8, - "short_name": "umbrella", - "short_names": ["umbrella"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 192, - "added_in": "1.1", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "white_large_square": { - "char": "\u2b1c", - "key": "white_large_square", - "keywords": ["white_large_square", "WHITE LARGE SQUARE"], - "category": "symbols", - "lib": { - "name": "WHITE LARGE SQUARE", - "unified": "2B1C", - "non_qualified": null, - "docomo": null, - "au": "E548", - "softbank": null, - "google": "FEB6B", - "image": "2b1c.png", - "sheet_x": 52, - "sheet_y": 10, - "short_name": "white_large_square", - "short_names": ["white_large_square"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 192, - "added_in": "5.1", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-pm": { - "char": "\ud83c\uddf5\ud83c\uddf2", - "key": "flag-pm", - "keywords": ["flag-pm", "St. Pierre & Miquelon Flag"], - "category": "flags", - "lib": { - "name": "St. Pierre & Miquelon Flag", - "unified": "1F1F5-1F1F2", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1f5-1f1f2.png", - "sheet_x": 4, - "sheet_y": 4, - "short_name": "flag-pm", - "short_names": ["flag-pm"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 193, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "large_orange_diamond": { - "char": "\ud83d\udd36", - "key": "large_orange_diamond", - "keywords": ["large_orange_diamond", "LARGE ORANGE DIAMOND"], - "category": "symbols", - "lib": { - "name": "LARGE ORANGE DIAMOND", - "unified": "1F536", - "non_qualified": null, - "docomo": null, - "au": "E546", - "softbank": null, - "google": "FEB73", - "image": "1f536.png", - "sheet_x": 28, - "sheet_y": 25, - "short_name": "large_orange_diamond", - "short_names": ["large_orange_diamond"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 193, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "mrs_claus": { - "char": "\ud83e\udd36", - "key": "mrs_claus", - "keywords": ["mrs_claus", "MOTHER CHRISTMAS"], - "category": "people", - "lib": { - "name": "MOTHER CHRISTMAS", - "unified": "1F936", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f936.png", - "sheet_x": 39, - "sheet_y": 51, - "short_name": "mrs_claus", - "short_names": ["mrs_claus", "mother_christmas"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 193, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F936-1F3FB", - "non_qualified": null, - "image": "1f936-1f3fb.png", - "sheet_x": 39, - "sheet_y": 52, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F936-1F3FC", - "non_qualified": null, - "image": "1f936-1f3fc.png", - "sheet_x": 40, - "sheet_y": 0, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F936-1F3FD", - "non_qualified": null, - "image": "1f936-1f3fd.png", - "sheet_x": 40, - "sheet_y": 1, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F936-1F3FE", - "non_qualified": null, - "image": "1f936-1f3fe.png", - "sheet_x": 40, - "sheet_y": 2, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F936-1F3FF", - "non_qualified": null, - "image": "1f936-1f3ff.png", - "sheet_x": 40, - "sheet_y": 3, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - } - } - }, - "umbrella_with_rain_drops": { - "char": "\u2614", - "key": "umbrella_with_rain_drops", - "keywords": ["umbrella_with_rain_drops", "UMBRELLA WITH RAIN DROPS"], - "category": "travel_and_places", - "lib": { - "name": "UMBRELLA WITH RAIN DROPS", - "unified": "2614", - "non_qualified": null, - "docomo": "E640", - "au": "E48C", - "softbank": "E04B", - "google": "FE002", - "image": "2614.png", - "sheet_x": 49, - "sheet_y": 13, - "short_name": "umbrella_with_rain_drops", - "short_names": ["umbrella_with_rain_drops"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 193, - "added_in": "4.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-pn": { - "char": "\ud83c\uddf5\ud83c\uddf3", - "key": "flag-pn", - "keywords": ["flag-pn", "Pitcairn Islands Flag"], - "category": "flags", - "lib": { - "name": "Pitcairn Islands Flag", - "unified": "1F1F5-1F1F3", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1f5-1f1f3.png", - "sheet_x": 4, - "sheet_y": 5, - "short_name": "flag-pn", - "short_names": ["flag-pn"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 194, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "large_blue_diamond": { - "char": "\ud83d\udd37", - "key": "large_blue_diamond", - "keywords": ["large_blue_diamond", "LARGE BLUE DIAMOND"], - "category": "symbols", - "lib": { - "name": "LARGE BLUE DIAMOND", - "unified": "1F537", - "non_qualified": null, - "docomo": null, - "au": "E547", - "softbank": null, - "google": "FEB74", - "image": "1f537.png", - "sheet_x": 28, - "sheet_y": 26, - "short_name": "large_blue_diamond", - "short_names": ["large_blue_diamond"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 194, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "umbrella_on_ground": { - "char": "\u26f1\ufe0f", - "key": "umbrella_on_ground", - "keywords": ["umbrella_on_ground", ""], - "category": "travel_and_places", - "lib": { - "name": null, - "unified": "26F1-FE0F", - "non_qualified": "26F1", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "26f1-fe0f.png", - "sheet_x": 50, - "sheet_y": 30, - "short_name": "umbrella_on_ground", - "short_names": ["umbrella_on_ground"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 194, - "added_in": "5.2", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "flag-pr": { - "char": "\ud83c\uddf5\ud83c\uddf7", - "key": "flag-pr", - "keywords": ["flag-pr", "Puerto Rico Flag"], - "category": "flags", - "lib": { - "name": "Puerto Rico Flag", - "unified": "1F1F5-1F1F7", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1f5-1f1f7.png", - "sheet_x": 4, - "sheet_y": 6, - "short_name": "flag-pr", - "short_names": ["flag-pr"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 195, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "small_orange_diamond": { - "char": "\ud83d\udd38", - "key": "small_orange_diamond", - "keywords": ["small_orange_diamond", "SMALL ORANGE DIAMOND"], - "category": "symbols", - "lib": { - "name": "SMALL ORANGE DIAMOND", - "unified": "1F538", - "non_qualified": null, - "docomo": null, - "au": "E536", - "softbank": null, - "google": "FEB75", - "image": "1f538.png", - "sheet_x": 28, - "sheet_y": 27, - "short_name": "small_orange_diamond", - "short_names": ["small_orange_diamond"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 195, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "female_mage": { - "char": "\ud83e\uddd9\u200d\u2640\ufe0f", - "key": "female_mage", - "keywords": ["female_mage", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F9D9-200D-2640-FE0F", - "non_qualified": "1F9D9-200D-2640", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f9d9-200d-2640-fe0f.png", - "sheet_x": 45, - "sheet_y": 51, - "short_name": "female_mage", - "short_names": ["female_mage"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 195, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F9D9-1F3FB-200D-2640-FE0F", - "non_qualified": "1F9D9-1F3FB-200D-2640", - "image": "1f9d9-1f3fb-200d-2640-fe0f.png", - "sheet_x": 45, - "sheet_y": 52, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false, - "obsoletes": "1F9D9-1F3FB" - }, - "1F3FC": { - "unified": "1F9D9-1F3FC-200D-2640-FE0F", - "non_qualified": "1F9D9-1F3FC-200D-2640", - "image": "1f9d9-1f3fc-200d-2640-fe0f.png", - "sheet_x": 46, - "sheet_y": 0, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false, - "obsoletes": "1F9D9-1F3FC" - }, - "1F3FD": { - "unified": "1F9D9-1F3FD-200D-2640-FE0F", - "non_qualified": "1F9D9-1F3FD-200D-2640", - "image": "1f9d9-1f3fd-200d-2640-fe0f.png", - "sheet_x": 46, - "sheet_y": 1, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false, - "obsoletes": "1F9D9-1F3FD" - }, - "1F3FE": { - "unified": "1F9D9-1F3FE-200D-2640-FE0F", - "non_qualified": "1F9D9-1F3FE-200D-2640", - "image": "1f9d9-1f3fe-200d-2640-fe0f.png", - "sheet_x": 46, - "sheet_y": 2, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false, - "obsoletes": "1F9D9-1F3FE" - }, - "1F3FF": { - "unified": "1F9D9-1F3FF-200D-2640-FE0F", - "non_qualified": "1F9D9-1F3FF-200D-2640", - "image": "1f9d9-1f3ff-200d-2640-fe0f.png", - "sheet_x": 46, - "sheet_y": 3, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false, - "obsoletes": "1F9D9-1F3FF" - } - }, - "obsoletes": "1F9D9" - } - }, - "zap": { - "char": "\u26a1", - "key": "zap", - "keywords": ["zap", "HIGH VOLTAGE SIGN"], - "category": "travel_and_places", - "lib": { - "name": "HIGH VOLTAGE SIGN", - "unified": "26A1", - "non_qualified": null, - "docomo": "E642", - "au": "E487", - "softbank": "E13D", - "google": "FE004", - "image": "26a1.png", - "sheet_x": 50, - "sheet_y": 12, - "short_name": "zap", - "short_names": ["zap"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 195, - "added_in": "4.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-ps": { - "char": "\ud83c\uddf5\ud83c\uddf8", - "key": "flag-ps", - "keywords": ["flag-ps", "Palestinian Territories Flag"], - "category": "flags", - "lib": { - "name": "Palestinian Territories Flag", - "unified": "1F1F5-1F1F8", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1f5-1f1f8.png", - "sheet_x": 4, - "sheet_y": 7, - "short_name": "flag-ps", - "short_names": ["flag-ps"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 196, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "small_blue_diamond": { - "char": "\ud83d\udd39", - "key": "small_blue_diamond", - "keywords": ["small_blue_diamond", "SMALL BLUE DIAMOND"], - "category": "symbols", - "lib": { - "name": "SMALL BLUE DIAMOND", - "unified": "1F539", - "non_qualified": null, - "docomo": null, - "au": "E537", - "softbank": null, - "google": "FEB76", - "image": "1f539.png", - "sheet_x": 28, - "sheet_y": 28, - "short_name": "small_blue_diamond", - "short_names": ["small_blue_diamond"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 196, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "male_mage": { - "char": "\ud83e\uddd9\u200d\u2642\ufe0f", - "key": "male_mage", - "keywords": ["male_mage", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F9D9-200D-2642-FE0F", - "non_qualified": "1F9D9-200D-2642", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f9d9-200d-2642-fe0f.png", - "sheet_x": 46, - "sheet_y": 4, - "short_name": "male_mage", - "short_names": ["male_mage"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 196, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F9D9-1F3FB-200D-2642-FE0F", - "non_qualified": "1F9D9-1F3FB-200D-2642", - "image": "1f9d9-1f3fb-200d-2642-fe0f.png", - "sheet_x": 46, - "sheet_y": 5, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F9D9-1F3FC-200D-2642-FE0F", - "non_qualified": "1F9D9-1F3FC-200D-2642", - "image": "1f9d9-1f3fc-200d-2642-fe0f.png", - "sheet_x": 46, - "sheet_y": 6, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F9D9-1F3FD-200D-2642-FE0F", - "non_qualified": "1F9D9-1F3FD-200D-2642", - "image": "1f9d9-1f3fd-200d-2642-fe0f.png", - "sheet_x": 46, - "sheet_y": 7, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F9D9-1F3FE-200D-2642-FE0F", - "non_qualified": "1F9D9-1F3FE-200D-2642", - "image": "1f9d9-1f3fe-200d-2642-fe0f.png", - "sheet_x": 46, - "sheet_y": 8, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F9D9-1F3FF-200D-2642-FE0F", - "non_qualified": "1F9D9-1F3FF-200D-2642", - "image": "1f9d9-1f3ff-200d-2642-fe0f.png", - "sheet_x": 46, - "sheet_y": 9, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - } - } - } - }, - "snowflake": { - "char": "\u2744\ufe0f", - "key": "snowflake", - "keywords": ["snowflake", "SNOWFLAKE"], - "category": "travel_and_places", - "lib": { - "name": "SNOWFLAKE", - "unified": "2744-FE0F", - "non_qualified": "2744", - "docomo": null, - "au": "E48A", - "softbank": null, - "google": "FE00E", - "image": "2744-fe0f.png", - "sheet_x": 51, - "sheet_y": 41, - "short_name": "snowflake", - "short_names": ["snowflake"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 196, - "added_in": "1.1", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-pt": { - "char": "\ud83c\uddf5\ud83c\uddf9", - "key": "flag-pt", - "keywords": ["flag-pt", "Portugal Flag"], - "category": "flags", - "lib": { - "name": "Portugal Flag", - "unified": "1F1F5-1F1F9", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1f5-1f1f9.png", - "sheet_x": 4, - "sheet_y": 8, - "short_name": "flag-pt", - "short_names": ["flag-pt"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 197, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "small_red_triangle": { - "char": "\ud83d\udd3a", - "key": "small_red_triangle", - "keywords": ["small_red_triangle", "UP-POINTING RED TRIANGLE"], - "category": "symbols", - "lib": { - "name": "UP-POINTING RED TRIANGLE", - "unified": "1F53A", - "non_qualified": null, - "docomo": null, - "au": "E55A", - "softbank": null, - "google": "FEB78", - "image": "1f53a.png", - "sheet_x": 28, - "sheet_y": 29, - "short_name": "small_red_triangle", - "short_names": ["small_red_triangle"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 197, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "snowman": { - "char": "\u2603\ufe0f", - "key": "snowman", - "keywords": ["snowman", ""], - "category": "travel_and_places", - "lib": { - "name": null, - "unified": "2603-FE0F", - "non_qualified": "2603", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "2603-fe0f.png", - "sheet_x": 49, - "sheet_y": 9, - "short_name": "snowman", - "short_names": ["snowman"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 197, - "added_in": "1.1", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "flag-pw": { - "char": "\ud83c\uddf5\ud83c\uddfc", - "key": "flag-pw", - "keywords": ["flag-pw", "Palau Flag"], - "category": "flags", - "lib": { - "name": "Palau Flag", - "unified": "1F1F5-1F1FC", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1f5-1f1fc.png", - "sheet_x": 4, - "sheet_y": 9, - "short_name": "flag-pw", - "short_names": ["flag-pw"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 198, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "small_red_triangle_down": { - "char": "\ud83d\udd3b", - "key": "small_red_triangle_down", - "keywords": ["small_red_triangle_down", "DOWN-POINTING RED TRIANGLE"], - "category": "symbols", - "lib": { - "name": "DOWN-POINTING RED TRIANGLE", - "unified": "1F53B", - "non_qualified": null, - "docomo": null, - "au": "E55B", - "softbank": null, - "google": "FEB79", - "image": "1f53b.png", - "sheet_x": 28, - "sheet_y": 30, - "short_name": "small_red_triangle_down", - "short_names": ["small_red_triangle_down"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 198, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "female_fairy": { - "char": "\ud83e\uddda\u200d\u2640\ufe0f", - "key": "female_fairy", - "keywords": ["female_fairy", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F9DA-200D-2640-FE0F", - "non_qualified": "1F9DA-200D-2640", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f9da-200d-2640-fe0f.png", - "sheet_x": 46, - "sheet_y": 16, - "short_name": "female_fairy", - "short_names": ["female_fairy"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 198, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F9DA-1F3FB-200D-2640-FE0F", - "non_qualified": "1F9DA-1F3FB-200D-2640", - "image": "1f9da-1f3fb-200d-2640-fe0f.png", - "sheet_x": 46, - "sheet_y": 17, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false, - "obsoletes": "1F9DA-1F3FB" - }, - "1F3FC": { - "unified": "1F9DA-1F3FC-200D-2640-FE0F", - "non_qualified": "1F9DA-1F3FC-200D-2640", - "image": "1f9da-1f3fc-200d-2640-fe0f.png", - "sheet_x": 46, - "sheet_y": 18, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false, - "obsoletes": "1F9DA-1F3FC" - }, - "1F3FD": { - "unified": "1F9DA-1F3FD-200D-2640-FE0F", - "non_qualified": "1F9DA-1F3FD-200D-2640", - "image": "1f9da-1f3fd-200d-2640-fe0f.png", - "sheet_x": 46, - "sheet_y": 19, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false, - "obsoletes": "1F9DA-1F3FD" - }, - "1F3FE": { - "unified": "1F9DA-1F3FE-200D-2640-FE0F", - "non_qualified": "1F9DA-1F3FE-200D-2640", - "image": "1f9da-1f3fe-200d-2640-fe0f.png", - "sheet_x": 46, - "sheet_y": 20, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false, - "obsoletes": "1F9DA-1F3FE" - }, - "1F3FF": { - "unified": "1F9DA-1F3FF-200D-2640-FE0F", - "non_qualified": "1F9DA-1F3FF-200D-2640", - "image": "1f9da-1f3ff-200d-2640-fe0f.png", - "sheet_x": 46, - "sheet_y": 21, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false, - "obsoletes": "1F9DA-1F3FF" - } - }, - "obsoletes": "1F9DA" - } - }, - "snowman_without_snow": { - "char": "\u26c4", - "key": "snowman_without_snow", - "keywords": ["snowman_without_snow", "SNOWMAN WITHOUT SNOW"], - "category": "travel_and_places", - "lib": { - "name": "SNOWMAN WITHOUT SNOW", - "unified": "26C4", - "non_qualified": null, - "docomo": "E641", - "au": "E485", - "softbank": "E048", - "google": "FE003", - "image": "26c4.png", - "sheet_x": 50, - "sheet_y": 19, - "short_name": "snowman_without_snow", - "short_names": ["snowman_without_snow"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 198, - "added_in": "5.2", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-py": { - "char": "\ud83c\uddf5\ud83c\uddfe", - "key": "flag-py", - "keywords": ["flag-py", "Paraguay Flag"], - "category": "flags", - "lib": { - "name": "Paraguay Flag", - "unified": "1F1F5-1F1FE", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1f5-1f1fe.png", - "sheet_x": 4, - "sheet_y": 10, - "short_name": "flag-py", - "short_names": ["flag-py"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 199, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "diamond_shape_with_a_dot_inside": { - "char": "\ud83d\udca0", - "key": "diamond_shape_with_a_dot_inside", - "keywords": ["diamond_shape_with_a_dot_inside", "DIAMOND SHAPE WITH A DOT INSIDE"], - "category": "symbols", - "lib": { - "name": "DIAMOND SHAPE WITH A DOT INSIDE", - "unified": "1F4A0", - "non_qualified": null, - "docomo": "E6F8", - "au": null, - "softbank": null, - "google": "FEB55", - "image": "1f4a0.png", - "sheet_x": 25, - "sheet_y": 30, - "short_name": "diamond_shape_with_a_dot_inside", - "short_names": ["diamond_shape_with_a_dot_inside"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 199, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "male_fairy": { - "char": "\ud83e\uddda\u200d\u2642\ufe0f", - "key": "male_fairy", - "keywords": ["male_fairy", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F9DA-200D-2642-FE0F", - "non_qualified": "1F9DA-200D-2642", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f9da-200d-2642-fe0f.png", - "sheet_x": 46, - "sheet_y": 22, - "short_name": "male_fairy", - "short_names": ["male_fairy"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 199, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F9DA-1F3FB-200D-2642-FE0F", - "non_qualified": "1F9DA-1F3FB-200D-2642", - "image": "1f9da-1f3fb-200d-2642-fe0f.png", - "sheet_x": 46, - "sheet_y": 23, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F9DA-1F3FC-200D-2642-FE0F", - "non_qualified": "1F9DA-1F3FC-200D-2642", - "image": "1f9da-1f3fc-200d-2642-fe0f.png", - "sheet_x": 46, - "sheet_y": 24, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F9DA-1F3FD-200D-2642-FE0F", - "non_qualified": "1F9DA-1F3FD-200D-2642", - "image": "1f9da-1f3fd-200d-2642-fe0f.png", - "sheet_x": 46, - "sheet_y": 25, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F9DA-1F3FE-200D-2642-FE0F", - "non_qualified": "1F9DA-1F3FE-200D-2642", - "image": "1f9da-1f3fe-200d-2642-fe0f.png", - "sheet_x": 46, - "sheet_y": 26, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F9DA-1F3FF-200D-2642-FE0F", - "non_qualified": "1F9DA-1F3FF-200D-2642", - "image": "1f9da-1f3ff-200d-2642-fe0f.png", - "sheet_x": 46, - "sheet_y": 27, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - } - } - } - }, - "comet": { - "char": "\u2604\ufe0f", - "key": "comet", - "keywords": ["comet", ""], - "category": "travel_and_places", - "lib": { - "name": null, - "unified": "2604-FE0F", - "non_qualified": "2604", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "2604-fe0f.png", - "sheet_x": 49, - "sheet_y": 10, - "short_name": "comet", - "short_names": ["comet"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 199, - "added_in": "1.1", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "flag-qa": { - "char": "\ud83c\uddf6\ud83c\udde6", - "key": "flag-qa", - "keywords": ["flag-qa", "Qatar Flag"], - "category": "flags", - "lib": { - "name": "Qatar Flag", - "unified": "1F1F6-1F1E6", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1f6-1f1e6.png", - "sheet_x": 4, - "sheet_y": 11, - "short_name": "flag-qa", - "short_names": ["flag-qa"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 200, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "radio_button": { - "char": "\ud83d\udd18", - "key": "radio_button", - "keywords": ["radio_button", "RADIO BUTTON"], - "category": "symbols", - "lib": { - "name": "RADIO BUTTON", - "unified": "1F518", - "non_qualified": null, - "docomo": null, - "au": "EB04", - "softbank": null, - "google": "FEB8C", - "image": "1f518.png", - "sheet_x": 27, - "sheet_y": 48, - "short_name": "radio_button", - "short_names": ["radio_button"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 200, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "fire": { - "char": "\ud83d\udd25", - "key": "fire", - "keywords": ["fire", "FIRE"], - "category": "travel_and_places", - "lib": { - "name": "FIRE", - "unified": "1F525", - "non_qualified": null, - "docomo": null, - "au": "E47B", - "softbank": "E11D", - "google": "FE4F6", - "image": "1f525.png", - "sheet_x": 28, - "sheet_y": 8, - "short_name": "fire", - "short_names": ["fire"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 200, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-re": { - "char": "\ud83c\uddf7\ud83c\uddea", - "key": "flag-re", - "keywords": ["flag-re", "R\u00e9union Flag"], - "category": "flags", - "lib": { - "name": "R\u00e9union Flag", - "unified": "1F1F7-1F1EA", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1f7-1f1ea.png", - "sheet_x": 4, - "sheet_y": 12, - "short_name": "flag-re", - "short_names": ["flag-re"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 201, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "droplet": { - "char": "\ud83d\udca7", - "key": "droplet", - "keywords": ["droplet", "DROPLET"], - "category": "travel_and_places", - "lib": { - "name": "DROPLET", - "unified": "1F4A7", - "non_qualified": null, - "docomo": "E707", - "au": "E4E6", - "softbank": null, - "google": "FEB5C", - "image": "1f4a7.png", - "sheet_x": 25, - "sheet_y": 37, - "short_name": "droplet", - "short_names": ["droplet"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 201, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "black_square_button": { - "char": "\ud83d\udd32", - "key": "black_square_button", - "keywords": ["black_square_button", "BLACK SQUARE BUTTON"], - "category": "symbols", - "lib": { - "name": "BLACK SQUARE BUTTON", - "unified": "1F532", - "non_qualified": null, - "docomo": "E69C", - "au": "E54B", - "softbank": "E21A", - "google": "FEB64", - "image": "1f532.png", - "sheet_x": 28, - "sheet_y": 21, - "short_name": "black_square_button", - "short_names": ["black_square_button"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 201, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "female_vampire": { - "char": "\ud83e\udddb\u200d\u2640\ufe0f", - "key": "female_vampire", - "keywords": ["female_vampire", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F9DB-200D-2640-FE0F", - "non_qualified": "1F9DB-200D-2640", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f9db-200d-2640-fe0f.png", - "sheet_x": 46, - "sheet_y": 34, - "short_name": "female_vampire", - "short_names": ["female_vampire"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 201, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F9DB-1F3FB-200D-2640-FE0F", - "non_qualified": "1F9DB-1F3FB-200D-2640", - "image": "1f9db-1f3fb-200d-2640-fe0f.png", - "sheet_x": 46, - "sheet_y": 35, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false, - "obsoletes": "1F9DB-1F3FB" - }, - "1F3FC": { - "unified": "1F9DB-1F3FC-200D-2640-FE0F", - "non_qualified": "1F9DB-1F3FC-200D-2640", - "image": "1f9db-1f3fc-200d-2640-fe0f.png", - "sheet_x": 46, - "sheet_y": 36, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false, - "obsoletes": "1F9DB-1F3FC" - }, - "1F3FD": { - "unified": "1F9DB-1F3FD-200D-2640-FE0F", - "non_qualified": "1F9DB-1F3FD-200D-2640", - "image": "1f9db-1f3fd-200d-2640-fe0f.png", - "sheet_x": 46, - "sheet_y": 37, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false, - "obsoletes": "1F9DB-1F3FD" - }, - "1F3FE": { - "unified": "1F9DB-1F3FE-200D-2640-FE0F", - "non_qualified": "1F9DB-1F3FE-200D-2640", - "image": "1f9db-1f3fe-200d-2640-fe0f.png", - "sheet_x": 46, - "sheet_y": 38, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false, - "obsoletes": "1F9DB-1F3FE" - }, - "1F3FF": { - "unified": "1F9DB-1F3FF-200D-2640-FE0F", - "non_qualified": "1F9DB-1F3FF-200D-2640", - "image": "1f9db-1f3ff-200d-2640-fe0f.png", - "sheet_x": 46, - "sheet_y": 39, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false, - "obsoletes": "1F9DB-1F3FF" - } - }, - "obsoletes": "1F9DB" - } - }, - "flag-ro": { - "char": "\ud83c\uddf7\ud83c\uddf4", - "key": "flag-ro", - "keywords": ["flag-ro", "Romania Flag"], - "category": "flags", - "lib": { - "name": "Romania Flag", - "unified": "1F1F7-1F1F4", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1f7-1f1f4.png", - "sheet_x": 4, - "sheet_y": 13, - "short_name": "flag-ro", - "short_names": ["flag-ro"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 202, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "ocean": { - "char": "\ud83c\udf0a", - "key": "ocean", - "keywords": ["ocean", "WATER WAVE"], - "category": "travel_and_places", - "lib": { - "name": "WATER WAVE", - "unified": "1F30A", - "non_qualified": null, - "docomo": "E73F", - "au": "EB7C", - "softbank": "E43E", - "google": "FE038", - "image": "1f30a.png", - "sheet_x": 5, - "sheet_y": 49, - "short_name": "ocean", - "short_names": ["ocean"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 202, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "white_square_button": { - "char": "\ud83d\udd33", - "key": "white_square_button", - "keywords": ["white_square_button", "WHITE SQUARE BUTTON"], - "category": "symbols", - "lib": { - "name": "WHITE SQUARE BUTTON", - "unified": "1F533", - "non_qualified": null, - "docomo": "E69C", - "au": "E54B", - "softbank": "E21B", - "google": "FEB67", - "image": "1f533.png", - "sheet_x": 28, - "sheet_y": 22, - "short_name": "white_square_button", - "short_names": ["white_square_button"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 202, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "male_vampire": { - "char": "\ud83e\udddb\u200d\u2642\ufe0f", - "key": "male_vampire", - "keywords": ["male_vampire", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F9DB-200D-2642-FE0F", - "non_qualified": "1F9DB-200D-2642", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f9db-200d-2642-fe0f.png", - "sheet_x": 46, - "sheet_y": 40, - "short_name": "male_vampire", - "short_names": ["male_vampire"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 202, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F9DB-1F3FB-200D-2642-FE0F", - "non_qualified": "1F9DB-1F3FB-200D-2642", - "image": "1f9db-1f3fb-200d-2642-fe0f.png", - "sheet_x": 46, - "sheet_y": 41, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F9DB-1F3FC-200D-2642-FE0F", - "non_qualified": "1F9DB-1F3FC-200D-2642", - "image": "1f9db-1f3fc-200d-2642-fe0f.png", - "sheet_x": 46, - "sheet_y": 42, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F9DB-1F3FD-200D-2642-FE0F", - "non_qualified": "1F9DB-1F3FD-200D-2642", - "image": "1f9db-1f3fd-200d-2642-fe0f.png", - "sheet_x": 46, - "sheet_y": 43, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F9DB-1F3FE-200D-2642-FE0F", - "non_qualified": "1F9DB-1F3FE-200D-2642", - "image": "1f9db-1f3fe-200d-2642-fe0f.png", - "sheet_x": 46, - "sheet_y": 44, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F9DB-1F3FF-200D-2642-FE0F", - "non_qualified": "1F9DB-1F3FF-200D-2642", - "image": "1f9db-1f3ff-200d-2642-fe0f.png", - "sheet_x": 46, - "sheet_y": 45, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - } - } - } - }, - "flag-rs": { - "char": "\ud83c\uddf7\ud83c\uddf8", - "key": "flag-rs", - "keywords": ["flag-rs", "Serbia Flag"], - "category": "flags", - "lib": { - "name": "Serbia Flag", - "unified": "1F1F7-1F1F8", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1f7-1f1f8.png", - "sheet_x": 4, - "sheet_y": 14, - "short_name": "flag-rs", - "short_names": ["flag-rs"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 203, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "white_circle": { - "char": "\u26aa", - "key": "white_circle", - "keywords": ["white_circle", "MEDIUM WHITE CIRCLE"], - "category": "symbols", - "lib": { - "name": "MEDIUM WHITE CIRCLE", - "unified": "26AA", - "non_qualified": null, - "docomo": "E69C", - "au": "E53A", - "softbank": null, - "google": "FEB65", - "image": "26aa.png", - "sheet_x": 50, - "sheet_y": 13, - "short_name": "white_circle", - "short_names": ["white_circle"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 203, - "added_in": "4.1", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "ru": { - "char": "\ud83c\uddf7\ud83c\uddfa", - "key": "ru", - "keywords": ["ru", "Russia Flag"], - "category": "flags", - "lib": { - "name": "Russia Flag", - "unified": "1F1F7-1F1FA", - "non_qualified": null, - "docomo": null, - "au": "E5D6", - "softbank": "E512", - "google": "FE4EC", - "image": "1f1f7-1f1fa.png", - "sheet_x": 4, - "sheet_y": 15, - "short_name": "ru", - "short_names": ["ru", "flag-ru"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 204, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "mermaid": { - "char": "\ud83e\udddc\u200d\u2640\ufe0f", - "key": "mermaid", - "keywords": ["mermaid", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F9DC-200D-2640-FE0F", - "non_qualified": "1F9DC-200D-2640", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f9dc-200d-2640-fe0f.png", - "sheet_x": 46, - "sheet_y": 52, - "short_name": "mermaid", - "short_names": ["mermaid"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 204, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F9DC-1F3FB-200D-2640-FE0F", - "non_qualified": "1F9DC-1F3FB-200D-2640", - "image": "1f9dc-1f3fb-200d-2640-fe0f.png", - "sheet_x": 47, - "sheet_y": 0, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F9DC-1F3FC-200D-2640-FE0F", - "non_qualified": "1F9DC-1F3FC-200D-2640", - "image": "1f9dc-1f3fc-200d-2640-fe0f.png", - "sheet_x": 47, - "sheet_y": 1, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F9DC-1F3FD-200D-2640-FE0F", - "non_qualified": "1F9DC-1F3FD-200D-2640", - "image": "1f9dc-1f3fd-200d-2640-fe0f.png", - "sheet_x": 47, - "sheet_y": 2, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F9DC-1F3FE-200D-2640-FE0F", - "non_qualified": "1F9DC-1F3FE-200D-2640", - "image": "1f9dc-1f3fe-200d-2640-fe0f.png", - "sheet_x": 47, - "sheet_y": 3, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F9DC-1F3FF-200D-2640-FE0F", - "non_qualified": "1F9DC-1F3FF-200D-2640", - "image": "1f9dc-1f3ff-200d-2640-fe0f.png", - "sheet_x": 47, - "sheet_y": 4, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - } - } - } - }, - "black_circle": { - "char": "\u26ab", - "key": "black_circle", - "keywords": ["black_circle", "MEDIUM BLACK CIRCLE"], - "category": "symbols", - "lib": { - "name": "MEDIUM BLACK CIRCLE", - "unified": "26AB", - "non_qualified": null, - "docomo": "E69C", - "au": "E53B", - "softbank": null, - "google": "FEB66", - "image": "26ab.png", - "sheet_x": 50, - "sheet_y": 14, - "short_name": "black_circle", - "short_names": ["black_circle"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 204, - "added_in": "4.1", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-rw": { - "char": "\ud83c\uddf7\ud83c\uddfc", - "key": "flag-rw", - "keywords": ["flag-rw", "Rwanda Flag"], - "category": "flags", - "lib": { - "name": "Rwanda Flag", - "unified": "1F1F7-1F1FC", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1f7-1f1fc.png", - "sheet_x": 4, - "sheet_y": 16, - "short_name": "flag-rw", - "short_names": ["flag-rw"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 205, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "red_circle": { - "char": "\ud83d\udd34", - "key": "red_circle", - "keywords": ["red_circle", "LARGE RED CIRCLE"], - "category": "symbols", - "lib": { - "name": "LARGE RED CIRCLE", - "unified": "1F534", - "non_qualified": null, - "docomo": "E69C", - "au": "E54A", - "softbank": "E219", - "google": "FEB63", - "image": "1f534.png", - "sheet_x": 28, - "sheet_y": 23, - "short_name": "red_circle", - "short_names": ["red_circle"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 205, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "merman": { - "char": "\ud83e\udddc\u200d\u2642\ufe0f", - "key": "merman", - "keywords": ["merman", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F9DC-200D-2642-FE0F", - "non_qualified": "1F9DC-200D-2642", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f9dc-200d-2642-fe0f.png", - "sheet_x": 47, - "sheet_y": 5, - "short_name": "merman", - "short_names": ["merman"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 205, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F9DC-1F3FB-200D-2642-FE0F", - "non_qualified": "1F9DC-1F3FB-200D-2642", - "image": "1f9dc-1f3fb-200d-2642-fe0f.png", - "sheet_x": 47, - "sheet_y": 6, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false, - "obsoletes": "1F9DC-1F3FB" - }, - "1F3FC": { - "unified": "1F9DC-1F3FC-200D-2642-FE0F", - "non_qualified": "1F9DC-1F3FC-200D-2642", - "image": "1f9dc-1f3fc-200d-2642-fe0f.png", - "sheet_x": 47, - "sheet_y": 7, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false, - "obsoletes": "1F9DC-1F3FC" - }, - "1F3FD": { - "unified": "1F9DC-1F3FD-200D-2642-FE0F", - "non_qualified": "1F9DC-1F3FD-200D-2642", - "image": "1f9dc-1f3fd-200d-2642-fe0f.png", - "sheet_x": 47, - "sheet_y": 8, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false, - "obsoletes": "1F9DC-1F3FD" - }, - "1F3FE": { - "unified": "1F9DC-1F3FE-200D-2642-FE0F", - "non_qualified": "1F9DC-1F3FE-200D-2642", - "image": "1f9dc-1f3fe-200d-2642-fe0f.png", - "sheet_x": 47, - "sheet_y": 9, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false, - "obsoletes": "1F9DC-1F3FE" - }, - "1F3FF": { - "unified": "1F9DC-1F3FF-200D-2642-FE0F", - "non_qualified": "1F9DC-1F3FF-200D-2642", - "image": "1f9dc-1f3ff-200d-2642-fe0f.png", - "sheet_x": 47, - "sheet_y": 10, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false, - "obsoletes": "1F9DC-1F3FF" - } - }, - "obsoletes": "1F9DC" - } - }, - "flag-sa": { - "char": "\ud83c\uddf8\ud83c\udde6", - "key": "flag-sa", - "keywords": ["flag-sa", "Saudi Arabia Flag"], - "category": "flags", - "lib": { - "name": "Saudi Arabia Flag", - "unified": "1F1F8-1F1E6", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1f8-1f1e6.png", - "sheet_x": 4, - "sheet_y": 17, - "short_name": "flag-sa", - "short_names": ["flag-sa"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 206, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "large_blue_circle": { - "char": "\ud83d\udd35", - "key": "large_blue_circle", - "keywords": ["large_blue_circle", "LARGE BLUE CIRCLE"], - "category": "symbols", - "lib": { - "name": "LARGE BLUE CIRCLE", - "unified": "1F535", - "non_qualified": null, - "docomo": "E69C", - "au": "E54B", - "softbank": null, - "google": "FEB64", - "image": "1f535.png", - "sheet_x": 28, - "sheet_y": 24, - "short_name": "large_blue_circle", - "short_names": ["large_blue_circle"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 206, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-sb": { - "char": "\ud83c\uddf8\ud83c\udde7", - "key": "flag-sb", - "keywords": ["flag-sb", "Solomon Islands Flag"], - "category": "flags", - "lib": { - "name": "Solomon Islands Flag", - "unified": "1F1F8-1F1E7", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1f8-1f1e7.png", - "sheet_x": 4, - "sheet_y": 18, - "short_name": "flag-sb", - "short_names": ["flag-sb"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 207, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "female_elf": { - "char": "\ud83e\udddd\u200d\u2640\ufe0f", - "key": "female_elf", - "keywords": ["female_elf", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F9DD-200D-2640-FE0F", - "non_qualified": "1F9DD-200D-2640", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f9dd-200d-2640-fe0f.png", - "sheet_x": 47, - "sheet_y": 17, - "short_name": "female_elf", - "short_names": ["female_elf"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 207, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F9DD-1F3FB-200D-2640-FE0F", - "non_qualified": "1F9DD-1F3FB-200D-2640", - "image": "1f9dd-1f3fb-200d-2640-fe0f.png", - "sheet_x": 47, - "sheet_y": 18, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F9DD-1F3FC-200D-2640-FE0F", - "non_qualified": "1F9DD-1F3FC-200D-2640", - "image": "1f9dd-1f3fc-200d-2640-fe0f.png", - "sheet_x": 47, - "sheet_y": 19, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F9DD-1F3FD-200D-2640-FE0F", - "non_qualified": "1F9DD-1F3FD-200D-2640", - "image": "1f9dd-1f3fd-200d-2640-fe0f.png", - "sheet_x": 47, - "sheet_y": 20, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F9DD-1F3FE-200D-2640-FE0F", - "non_qualified": "1F9DD-1F3FE-200D-2640", - "image": "1f9dd-1f3fe-200d-2640-fe0f.png", - "sheet_x": 47, - "sheet_y": 21, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F9DD-1F3FF-200D-2640-FE0F", - "non_qualified": "1F9DD-1F3FF-200D-2640", - "image": "1f9dd-1f3ff-200d-2640-fe0f.png", - "sheet_x": 47, - "sheet_y": 22, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - } - } - } - }, - "flag-sc": { - "char": "\ud83c\uddf8\ud83c\udde8", - "key": "flag-sc", - "keywords": ["flag-sc", "Seychelles Flag"], - "category": "flags", - "lib": { - "name": "Seychelles Flag", - "unified": "1F1F8-1F1E8", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1f8-1f1e8.png", - "sheet_x": 4, - "sheet_y": 19, - "short_name": "flag-sc", - "short_names": ["flag-sc"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 208, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "male_elf": { - "char": "\ud83e\udddd\u200d\u2642\ufe0f", - "key": "male_elf", - "keywords": ["male_elf", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F9DD-200D-2642-FE0F", - "non_qualified": "1F9DD-200D-2642", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f9dd-200d-2642-fe0f.png", - "sheet_x": 47, - "sheet_y": 23, - "short_name": "male_elf", - "short_names": ["male_elf"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 208, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F9DD-1F3FB-200D-2642-FE0F", - "non_qualified": "1F9DD-1F3FB-200D-2642", - "image": "1f9dd-1f3fb-200d-2642-fe0f.png", - "sheet_x": 47, - "sheet_y": 24, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false, - "obsoletes": "1F9DD-1F3FB" - }, - "1F3FC": { - "unified": "1F9DD-1F3FC-200D-2642-FE0F", - "non_qualified": "1F9DD-1F3FC-200D-2642", - "image": "1f9dd-1f3fc-200d-2642-fe0f.png", - "sheet_x": 47, - "sheet_y": 25, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false, - "obsoletes": "1F9DD-1F3FC" - }, - "1F3FD": { - "unified": "1F9DD-1F3FD-200D-2642-FE0F", - "non_qualified": "1F9DD-1F3FD-200D-2642", - "image": "1f9dd-1f3fd-200d-2642-fe0f.png", - "sheet_x": 47, - "sheet_y": 26, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false, - "obsoletes": "1F9DD-1F3FD" - }, - "1F3FE": { - "unified": "1F9DD-1F3FE-200D-2642-FE0F", - "non_qualified": "1F9DD-1F3FE-200D-2642", - "image": "1f9dd-1f3fe-200d-2642-fe0f.png", - "sheet_x": 47, - "sheet_y": 27, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false, - "obsoletes": "1F9DD-1F3FE" - }, - "1F3FF": { - "unified": "1F9DD-1F3FF-200D-2642-FE0F", - "non_qualified": "1F9DD-1F3FF-200D-2642", - "image": "1f9dd-1f3ff-200d-2642-fe0f.png", - "sheet_x": 47, - "sheet_y": 28, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false, - "obsoletes": "1F9DD-1F3FF" - } - }, - "obsoletes": "1F9DD" - } - }, - "flag-sd": { - "char": "\ud83c\uddf8\ud83c\udde9", - "key": "flag-sd", - "keywords": ["flag-sd", "Sudan Flag"], - "category": "flags", - "lib": { - "name": "Sudan Flag", - "unified": "1F1F8-1F1E9", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1f8-1f1e9.png", - "sheet_x": 4, - "sheet_y": 20, - "short_name": "flag-sd", - "short_names": ["flag-sd"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 209, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-se": { - "char": "\ud83c\uddf8\ud83c\uddea", - "key": "flag-se", - "keywords": ["flag-se", "Sweden Flag"], - "category": "flags", - "lib": { - "name": "Sweden Flag", - "unified": "1F1F8-1F1EA", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1f8-1f1ea.png", - "sheet_x": 4, - "sheet_y": 21, - "short_name": "flag-se", - "short_names": ["flag-se"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 210, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "female_genie": { - "char": "\ud83e\uddde\u200d\u2640\ufe0f", - "key": "female_genie", - "keywords": ["female_genie", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F9DE-200D-2640-FE0F", - "non_qualified": "1F9DE-200D-2640", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f9de-200d-2640-fe0f.png", - "sheet_x": 47, - "sheet_y": 35, - "short_name": "female_genie", - "short_names": ["female_genie"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 210, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "flag-sg": { - "char": "\ud83c\uddf8\ud83c\uddec", - "key": "flag-sg", - "keywords": ["flag-sg", "Singapore Flag"], - "category": "flags", - "lib": { - "name": "Singapore Flag", - "unified": "1F1F8-1F1EC", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1f8-1f1ec.png", - "sheet_x": 4, - "sheet_y": 22, - "short_name": "flag-sg", - "short_names": ["flag-sg"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 211, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "male_genie": { - "char": "\ud83e\uddde\u200d\u2642\ufe0f", - "key": "male_genie", - "keywords": ["male_genie", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F9DE-200D-2642-FE0F", - "non_qualified": "1F9DE-200D-2642", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f9de-200d-2642-fe0f.png", - "sheet_x": 47, - "sheet_y": 36, - "short_name": "male_genie", - "short_names": ["male_genie"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 211, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "obsoletes": "1F9DE" - } - }, - "flag-sh": { - "char": "\ud83c\uddf8\ud83c\udded", - "key": "flag-sh", - "keywords": ["flag-sh", "St. Helena Flag"], - "category": "flags", - "lib": { - "name": "St. Helena Flag", - "unified": "1F1F8-1F1ED", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1f8-1f1ed.png", - "sheet_x": 4, - "sheet_y": 23, - "short_name": "flag-sh", - "short_names": ["flag-sh"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 212, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-si": { - "char": "\ud83c\uddf8\ud83c\uddee", - "key": "flag-si", - "keywords": ["flag-si", "Slovenia Flag"], - "category": "flags", - "lib": { - "name": "Slovenia Flag", - "unified": "1F1F8-1F1EE", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1f8-1f1ee.png", - "sheet_x": 4, - "sheet_y": 24, - "short_name": "flag-si", - "short_names": ["flag-si"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 213, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "female_zombie": { - "char": "\ud83e\udddf\u200d\u2640\ufe0f", - "key": "female_zombie", - "keywords": ["female_zombie", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F9DF-200D-2640-FE0F", - "non_qualified": "1F9DF-200D-2640", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f9df-200d-2640-fe0f.png", - "sheet_x": 47, - "sheet_y": 38, - "short_name": "female_zombie", - "short_names": ["female_zombie"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 213, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "flag-sj": { - "char": "\ud83c\uddf8\ud83c\uddef", - "key": "flag-sj", - "keywords": ["flag-sj", "Svalbard & Jan Mayen Flag"], - "category": "flags", - "lib": { - "name": "Svalbard & Jan Mayen Flag", - "unified": "1F1F8-1F1EF", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1f8-1f1ef.png", - "sheet_x": 4, - "sheet_y": 25, - "short_name": "flag-sj", - "short_names": ["flag-sj"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 214, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "male_zombie": { - "char": "\ud83e\udddf\u200d\u2642\ufe0f", - "key": "male_zombie", - "keywords": ["male_zombie", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F9DF-200D-2642-FE0F", - "non_qualified": "1F9DF-200D-2642", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f9df-200d-2642-fe0f.png", - "sheet_x": 47, - "sheet_y": 39, - "short_name": "male_zombie", - "short_names": ["male_zombie"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 214, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "obsoletes": "1F9DF" - } - }, - "flag-sk": { - "char": "\ud83c\uddf8\ud83c\uddf0", - "key": "flag-sk", - "keywords": ["flag-sk", "Slovakia Flag"], - "category": "flags", - "lib": { - "name": "Slovakia Flag", - "unified": "1F1F8-1F1F0", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1f8-1f1f0.png", - "sheet_x": 4, - "sheet_y": 26, - "short_name": "flag-sk", - "short_names": ["flag-sk"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 215, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-sl": { - "char": "\ud83c\uddf8\ud83c\uddf1", - "key": "flag-sl", - "keywords": ["flag-sl", "Sierra Leone Flag"], - "category": "flags", - "lib": { - "name": "Sierra Leone Flag", - "unified": "1F1F8-1F1F1", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1f8-1f1f1.png", - "sheet_x": 4, - "sheet_y": 27, - "short_name": "flag-sl", - "short_names": ["flag-sl"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 216, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "man-frowning": { - "char": "\ud83d\ude4d\u200d\u2642\ufe0f", - "key": "man-frowning", - "keywords": ["man-frowning", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F64D-200D-2642-FE0F", - "non_qualified": "1F64D-200D-2642", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f64d-200d-2642-fe0f.png", - "sheet_x": 33, - "sheet_y": 40, - "short_name": "man-frowning", - "short_names": ["man-frowning"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 216, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F64D-1F3FB-200D-2642-FE0F", - "non_qualified": "1F64D-1F3FB-200D-2642", - "image": "1f64d-1f3fb-200d-2642-fe0f.png", - "sheet_x": 33, - "sheet_y": 41, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F64D-1F3FC-200D-2642-FE0F", - "non_qualified": "1F64D-1F3FC-200D-2642", - "image": "1f64d-1f3fc-200d-2642-fe0f.png", - "sheet_x": 33, - "sheet_y": 42, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F64D-1F3FD-200D-2642-FE0F", - "non_qualified": "1F64D-1F3FD-200D-2642", - "image": "1f64d-1f3fd-200d-2642-fe0f.png", - "sheet_x": 33, - "sheet_y": 43, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F64D-1F3FE-200D-2642-FE0F", - "non_qualified": "1F64D-1F3FE-200D-2642", - "image": "1f64d-1f3fe-200d-2642-fe0f.png", - "sheet_x": 33, - "sheet_y": 44, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F64D-1F3FF-200D-2642-FE0F", - "non_qualified": "1F64D-1F3FF-200D-2642", - "image": "1f64d-1f3ff-200d-2642-fe0f.png", - "sheet_x": 33, - "sheet_y": 45, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - } - } - } - }, - "flag-sm": { - "char": "\ud83c\uddf8\ud83c\uddf2", - "key": "flag-sm", - "keywords": ["flag-sm", "San Marino Flag"], - "category": "flags", - "lib": { - "name": "San Marino Flag", - "unified": "1F1F8-1F1F2", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1f8-1f1f2.png", - "sheet_x": 4, - "sheet_y": 28, - "short_name": "flag-sm", - "short_names": ["flag-sm"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 217, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "woman-frowning": { - "char": "\ud83d\ude4d\u200d\u2640\ufe0f", - "key": "woman-frowning", - "keywords": ["woman-frowning", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F64D-200D-2640-FE0F", - "non_qualified": "1F64D-200D-2640", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f64d-200d-2640-fe0f.png", - "sheet_x": 33, - "sheet_y": 34, - "short_name": "woman-frowning", - "short_names": ["woman-frowning"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 217, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F64D-1F3FB-200D-2640-FE0F", - "non_qualified": "1F64D-1F3FB-200D-2640", - "image": "1f64d-1f3fb-200d-2640-fe0f.png", - "sheet_x": 33, - "sheet_y": 35, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F64D-1F3FC-200D-2640-FE0F", - "non_qualified": "1F64D-1F3FC-200D-2640", - "image": "1f64d-1f3fc-200d-2640-fe0f.png", - "sheet_x": 33, - "sheet_y": 36, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F64D-1F3FD-200D-2640-FE0F", - "non_qualified": "1F64D-1F3FD-200D-2640", - "image": "1f64d-1f3fd-200d-2640-fe0f.png", - "sheet_x": 33, - "sheet_y": 37, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F64D-1F3FE-200D-2640-FE0F", - "non_qualified": "1F64D-1F3FE-200D-2640", - "image": "1f64d-1f3fe-200d-2640-fe0f.png", - "sheet_x": 33, - "sheet_y": 38, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F64D-1F3FF-200D-2640-FE0F", - "non_qualified": "1F64D-1F3FF-200D-2640", - "image": "1f64d-1f3ff-200d-2640-fe0f.png", - "sheet_x": 33, - "sheet_y": 39, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - } - }, - "obsoletes": "1F64D" - } - }, - "flag-sn": { - "char": "\ud83c\uddf8\ud83c\uddf3", - "key": "flag-sn", - "keywords": ["flag-sn", "Senegal Flag"], - "category": "flags", - "lib": { - "name": "Senegal Flag", - "unified": "1F1F8-1F1F3", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1f8-1f1f3.png", - "sheet_x": 4, - "sheet_y": 29, - "short_name": "flag-sn", - "short_names": ["flag-sn"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 218, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-so": { - "char": "\ud83c\uddf8\ud83c\uddf4", - "key": "flag-so", - "keywords": ["flag-so", "Somalia Flag"], - "category": "flags", - "lib": { - "name": "Somalia Flag", - "unified": "1F1F8-1F1F4", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1f8-1f1f4.png", - "sheet_x": 4, - "sheet_y": 30, - "short_name": "flag-so", - "short_names": ["flag-so"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 219, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "man-pouting": { - "char": "\ud83d\ude4e\u200d\u2642\ufe0f", - "key": "man-pouting", - "keywords": ["man-pouting", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F64E-200D-2642-FE0F", - "non_qualified": "1F64E-200D-2642", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f64e-200d-2642-fe0f.png", - "sheet_x": 34, - "sheet_y": 5, - "short_name": "man-pouting", - "short_names": ["man-pouting"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 219, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F64E-1F3FB-200D-2642-FE0F", - "non_qualified": "1F64E-1F3FB-200D-2642", - "image": "1f64e-1f3fb-200d-2642-fe0f.png", - "sheet_x": 34, - "sheet_y": 6, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F64E-1F3FC-200D-2642-FE0F", - "non_qualified": "1F64E-1F3FC-200D-2642", - "image": "1f64e-1f3fc-200d-2642-fe0f.png", - "sheet_x": 34, - "sheet_y": 7, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F64E-1F3FD-200D-2642-FE0F", - "non_qualified": "1F64E-1F3FD-200D-2642", - "image": "1f64e-1f3fd-200d-2642-fe0f.png", - "sheet_x": 34, - "sheet_y": 8, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F64E-1F3FE-200D-2642-FE0F", - "non_qualified": "1F64E-1F3FE-200D-2642", - "image": "1f64e-1f3fe-200d-2642-fe0f.png", - "sheet_x": 34, - "sheet_y": 9, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F64E-1F3FF-200D-2642-FE0F", - "non_qualified": "1F64E-1F3FF-200D-2642", - "image": "1f64e-1f3ff-200d-2642-fe0f.png", - "sheet_x": 34, - "sheet_y": 10, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - } - } - } - }, - "flag-sr": { - "char": "\ud83c\uddf8\ud83c\uddf7", - "key": "flag-sr", - "keywords": ["flag-sr", "Suriname Flag"], - "category": "flags", - "lib": { - "name": "Suriname Flag", - "unified": "1F1F8-1F1F7", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1f8-1f1f7.png", - "sheet_x": 4, - "sheet_y": 31, - "short_name": "flag-sr", - "short_names": ["flag-sr"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 220, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "woman-pouting": { - "char": "\ud83d\ude4e\u200d\u2640\ufe0f", - "key": "woman-pouting", - "keywords": ["woman-pouting", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F64E-200D-2640-FE0F", - "non_qualified": "1F64E-200D-2640", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f64e-200d-2640-fe0f.png", - "sheet_x": 33, - "sheet_y": 52, - "short_name": "woman-pouting", - "short_names": ["woman-pouting"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 220, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F64E-1F3FB-200D-2640-FE0F", - "non_qualified": "1F64E-1F3FB-200D-2640", - "image": "1f64e-1f3fb-200d-2640-fe0f.png", - "sheet_x": 34, - "sheet_y": 0, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F64E-1F3FC-200D-2640-FE0F", - "non_qualified": "1F64E-1F3FC-200D-2640", - "image": "1f64e-1f3fc-200d-2640-fe0f.png", - "sheet_x": 34, - "sheet_y": 1, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F64E-1F3FD-200D-2640-FE0F", - "non_qualified": "1F64E-1F3FD-200D-2640", - "image": "1f64e-1f3fd-200d-2640-fe0f.png", - "sheet_x": 34, - "sheet_y": 2, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F64E-1F3FE-200D-2640-FE0F", - "non_qualified": "1F64E-1F3FE-200D-2640", - "image": "1f64e-1f3fe-200d-2640-fe0f.png", - "sheet_x": 34, - "sheet_y": 3, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F64E-1F3FF-200D-2640-FE0F", - "non_qualified": "1F64E-1F3FF-200D-2640", - "image": "1f64e-1f3ff-200d-2640-fe0f.png", - "sheet_x": 34, - "sheet_y": 4, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - } - }, - "obsoletes": "1F64E" - } - }, - "flag-ss": { - "char": "\ud83c\uddf8\ud83c\uddf8", - "key": "flag-ss", - "keywords": ["flag-ss", "South Sudan Flag"], - "category": "flags", - "lib": { - "name": "South Sudan Flag", - "unified": "1F1F8-1F1F8", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1f8-1f1f8.png", - "sheet_x": 4, - "sheet_y": 32, - "short_name": "flag-ss", - "short_names": ["flag-ss"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 221, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-st": { - "char": "\ud83c\uddf8\ud83c\uddf9", - "key": "flag-st", - "keywords": ["flag-st", "S\u00e3o Tom\u00e9 & Pr\u00edncipe Flag"], - "category": "flags", - "lib": { - "name": "S\u00e3o Tom\u00e9 & Pr\u00edncipe Flag", - "unified": "1F1F8-1F1F9", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1f8-1f1f9.png", - "sheet_x": 4, - "sheet_y": 33, - "short_name": "flag-st", - "short_names": ["flag-st"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 222, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "man-gesturing-no": { - "char": "\ud83d\ude45\u200d\u2642\ufe0f", - "key": "man-gesturing-no", - "keywords": ["man-gesturing-no", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F645-200D-2642-FE0F", - "non_qualified": "1F645-200D-2642", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f645-200d-2642-fe0f.png", - "sheet_x": 32, - "sheet_y": 12, - "short_name": "man-gesturing-no", - "short_names": ["man-gesturing-no"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 222, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F645-1F3FB-200D-2642-FE0F", - "non_qualified": "1F645-1F3FB-200D-2642", - "image": "1f645-1f3fb-200d-2642-fe0f.png", - "sheet_x": 32, - "sheet_y": 13, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F645-1F3FC-200D-2642-FE0F", - "non_qualified": "1F645-1F3FC-200D-2642", - "image": "1f645-1f3fc-200d-2642-fe0f.png", - "sheet_x": 32, - "sheet_y": 14, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F645-1F3FD-200D-2642-FE0F", - "non_qualified": "1F645-1F3FD-200D-2642", - "image": "1f645-1f3fd-200d-2642-fe0f.png", - "sheet_x": 32, - "sheet_y": 15, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F645-1F3FE-200D-2642-FE0F", - "non_qualified": "1F645-1F3FE-200D-2642", - "image": "1f645-1f3fe-200d-2642-fe0f.png", - "sheet_x": 32, - "sheet_y": 16, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F645-1F3FF-200D-2642-FE0F", - "non_qualified": "1F645-1F3FF-200D-2642", - "image": "1f645-1f3ff-200d-2642-fe0f.png", - "sheet_x": 32, - "sheet_y": 17, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - } - } - } - }, - "flag-sv": { - "char": "\ud83c\uddf8\ud83c\uddfb", - "key": "flag-sv", - "keywords": ["flag-sv", "El Salvador Flag"], - "category": "flags", - "lib": { - "name": "El Salvador Flag", - "unified": "1F1F8-1F1FB", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1f8-1f1fb.png", - "sheet_x": 4, - "sheet_y": 34, - "short_name": "flag-sv", - "short_names": ["flag-sv"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 223, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "woman-gesturing-no": { - "char": "\ud83d\ude45\u200d\u2640\ufe0f", - "key": "woman-gesturing-no", - "keywords": ["woman-gesturing-no", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F645-200D-2640-FE0F", - "non_qualified": "1F645-200D-2640", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f645-200d-2640-fe0f.png", - "sheet_x": 32, - "sheet_y": 6, - "short_name": "woman-gesturing-no", - "short_names": ["woman-gesturing-no"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 223, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F645-1F3FB-200D-2640-FE0F", - "non_qualified": "1F645-1F3FB-200D-2640", - "image": "1f645-1f3fb-200d-2640-fe0f.png", - "sheet_x": 32, - "sheet_y": 7, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F645-1F3FC-200D-2640-FE0F", - "non_qualified": "1F645-1F3FC-200D-2640", - "image": "1f645-1f3fc-200d-2640-fe0f.png", - "sheet_x": 32, - "sheet_y": 8, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F645-1F3FD-200D-2640-FE0F", - "non_qualified": "1F645-1F3FD-200D-2640", - "image": "1f645-1f3fd-200d-2640-fe0f.png", - "sheet_x": 32, - "sheet_y": 9, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F645-1F3FE-200D-2640-FE0F", - "non_qualified": "1F645-1F3FE-200D-2640", - "image": "1f645-1f3fe-200d-2640-fe0f.png", - "sheet_x": 32, - "sheet_y": 10, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F645-1F3FF-200D-2640-FE0F", - "non_qualified": "1F645-1F3FF-200D-2640", - "image": "1f645-1f3ff-200d-2640-fe0f.png", - "sheet_x": 32, - "sheet_y": 11, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - } - }, - "obsoletes": "1F645" - } - }, - "flag-sx": { - "char": "\ud83c\uddf8\ud83c\uddfd", - "key": "flag-sx", - "keywords": ["flag-sx", "Sint Maarten Flag"], - "category": "flags", - "lib": { - "name": "Sint Maarten Flag", - "unified": "1F1F8-1F1FD", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1f8-1f1fd.png", - "sheet_x": 4, - "sheet_y": 35, - "short_name": "flag-sx", - "short_names": ["flag-sx"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 224, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-sy": { - "char": "\ud83c\uddf8\ud83c\uddfe", - "key": "flag-sy", - "keywords": ["flag-sy", "Syria Flag"], - "category": "flags", - "lib": { - "name": "Syria Flag", - "unified": "1F1F8-1F1FE", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1f8-1f1fe.png", - "sheet_x": 4, - "sheet_y": 36, - "short_name": "flag-sy", - "short_names": ["flag-sy"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 225, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "man-gesturing-ok": { - "char": "\ud83d\ude46\u200d\u2642\ufe0f", - "key": "man-gesturing-ok", - "keywords": ["man-gesturing-ok", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F646-200D-2642-FE0F", - "non_qualified": "1F646-200D-2642", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f646-200d-2642-fe0f.png", - "sheet_x": 32, - "sheet_y": 30, - "short_name": "man-gesturing-ok", - "short_names": ["man-gesturing-ok"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 225, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F646-1F3FB-200D-2642-FE0F", - "non_qualified": "1F646-1F3FB-200D-2642", - "image": "1f646-1f3fb-200d-2642-fe0f.png", - "sheet_x": 32, - "sheet_y": 31, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F646-1F3FC-200D-2642-FE0F", - "non_qualified": "1F646-1F3FC-200D-2642", - "image": "1f646-1f3fc-200d-2642-fe0f.png", - "sheet_x": 32, - "sheet_y": 32, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F646-1F3FD-200D-2642-FE0F", - "non_qualified": "1F646-1F3FD-200D-2642", - "image": "1f646-1f3fd-200d-2642-fe0f.png", - "sheet_x": 32, - "sheet_y": 33, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F646-1F3FE-200D-2642-FE0F", - "non_qualified": "1F646-1F3FE-200D-2642", - "image": "1f646-1f3fe-200d-2642-fe0f.png", - "sheet_x": 32, - "sheet_y": 34, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F646-1F3FF-200D-2642-FE0F", - "non_qualified": "1F646-1F3FF-200D-2642", - "image": "1f646-1f3ff-200d-2642-fe0f.png", - "sheet_x": 32, - "sheet_y": 35, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - } - } - } - }, - "flag-sz": { - "char": "\ud83c\uddf8\ud83c\uddff", - "key": "flag-sz", - "keywords": ["flag-sz", "Swaziland Flag"], - "category": "flags", - "lib": { - "name": "Swaziland Flag", - "unified": "1F1F8-1F1FF", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1f8-1f1ff.png", - "sheet_x": 4, - "sheet_y": 37, - "short_name": "flag-sz", - "short_names": ["flag-sz"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 226, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "woman-gesturing-ok": { - "char": "\ud83d\ude46\u200d\u2640\ufe0f", - "key": "woman-gesturing-ok", - "keywords": ["woman-gesturing-ok", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F646-200D-2640-FE0F", - "non_qualified": "1F646-200D-2640", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f646-200d-2640-fe0f.png", - "sheet_x": 32, - "sheet_y": 24, - "short_name": "woman-gesturing-ok", - "short_names": ["woman-gesturing-ok"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 226, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F646-1F3FB-200D-2640-FE0F", - "non_qualified": "1F646-1F3FB-200D-2640", - "image": "1f646-1f3fb-200d-2640-fe0f.png", - "sheet_x": 32, - "sheet_y": 25, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F646-1F3FC-200D-2640-FE0F", - "non_qualified": "1F646-1F3FC-200D-2640", - "image": "1f646-1f3fc-200d-2640-fe0f.png", - "sheet_x": 32, - "sheet_y": 26, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F646-1F3FD-200D-2640-FE0F", - "non_qualified": "1F646-1F3FD-200D-2640", - "image": "1f646-1f3fd-200d-2640-fe0f.png", - "sheet_x": 32, - "sheet_y": 27, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F646-1F3FE-200D-2640-FE0F", - "non_qualified": "1F646-1F3FE-200D-2640", - "image": "1f646-1f3fe-200d-2640-fe0f.png", - "sheet_x": 32, - "sheet_y": 28, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F646-1F3FF-200D-2640-FE0F", - "non_qualified": "1F646-1F3FF-200D-2640", - "image": "1f646-1f3ff-200d-2640-fe0f.png", - "sheet_x": 32, - "sheet_y": 29, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - } - }, - "obsoletes": "1F646" - } - }, - "flag-ta": { - "char": "\ud83c\uddf9\ud83c\udde6", - "key": "flag-ta", - "keywords": ["flag-ta", "Tristan da Cunha Flag"], - "category": "flags", - "lib": { - "name": "Tristan da Cunha Flag", - "unified": "1F1F9-1F1E6", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1f9-1f1e6.png", - "sheet_x": 4, - "sheet_y": 38, - "short_name": "flag-ta", - "short_names": ["flag-ta"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 227, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-tc": { - "char": "\ud83c\uddf9\ud83c\udde8", - "key": "flag-tc", - "keywords": ["flag-tc", "Turks & Caicos Islands Flag"], - "category": "flags", - "lib": { - "name": "Turks & Caicos Islands Flag", - "unified": "1F1F9-1F1E8", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1f9-1f1e8.png", - "sheet_x": 4, - "sheet_y": 39, - "short_name": "flag-tc", - "short_names": ["flag-tc"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 228, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "man-tipping-hand": { - "char": "\ud83d\udc81\u200d\u2642\ufe0f", - "key": "man-tipping-hand", - "keywords": ["man-tipping-hand", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F481-200D-2642-FE0F", - "non_qualified": "1F481-200D-2642", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f481-200d-2642-fe0f.png", - "sheet_x": 23, - "sheet_y": 33, - "short_name": "man-tipping-hand", - "short_names": ["man-tipping-hand"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 228, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F481-1F3FB-200D-2642-FE0F", - "non_qualified": "1F481-1F3FB-200D-2642", - "image": "1f481-1f3fb-200d-2642-fe0f.png", - "sheet_x": 23, - "sheet_y": 34, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F481-1F3FC-200D-2642-FE0F", - "non_qualified": "1F481-1F3FC-200D-2642", - "image": "1f481-1f3fc-200d-2642-fe0f.png", - "sheet_x": 23, - "sheet_y": 35, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F481-1F3FD-200D-2642-FE0F", - "non_qualified": "1F481-1F3FD-200D-2642", - "image": "1f481-1f3fd-200d-2642-fe0f.png", - "sheet_x": 23, - "sheet_y": 36, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F481-1F3FE-200D-2642-FE0F", - "non_qualified": "1F481-1F3FE-200D-2642", - "image": "1f481-1f3fe-200d-2642-fe0f.png", - "sheet_x": 23, - "sheet_y": 37, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F481-1F3FF-200D-2642-FE0F", - "non_qualified": "1F481-1F3FF-200D-2642", - "image": "1f481-1f3ff-200d-2642-fe0f.png", - "sheet_x": 23, - "sheet_y": 38, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - } - } - } - }, - "flag-td": { - "char": "\ud83c\uddf9\ud83c\udde9", - "key": "flag-td", - "keywords": ["flag-td", "Chad Flag"], - "category": "flags", - "lib": { - "name": "Chad Flag", - "unified": "1F1F9-1F1E9", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1f9-1f1e9.png", - "sheet_x": 4, - "sheet_y": 40, - "short_name": "flag-td", - "short_names": ["flag-td"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 229, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "woman-tipping-hand": { - "char": "\ud83d\udc81\u200d\u2640\ufe0f", - "key": "woman-tipping-hand", - "keywords": ["woman-tipping-hand", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F481-200D-2640-FE0F", - "non_qualified": "1F481-200D-2640", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f481-200d-2640-fe0f.png", - "sheet_x": 23, - "sheet_y": 27, - "short_name": "woman-tipping-hand", - "short_names": ["woman-tipping-hand"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 229, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F481-1F3FB-200D-2640-FE0F", - "non_qualified": "1F481-1F3FB-200D-2640", - "image": "1f481-1f3fb-200d-2640-fe0f.png", - "sheet_x": 23, - "sheet_y": 28, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F481-1F3FC-200D-2640-FE0F", - "non_qualified": "1F481-1F3FC-200D-2640", - "image": "1f481-1f3fc-200d-2640-fe0f.png", - "sheet_x": 23, - "sheet_y": 29, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F481-1F3FD-200D-2640-FE0F", - "non_qualified": "1F481-1F3FD-200D-2640", - "image": "1f481-1f3fd-200d-2640-fe0f.png", - "sheet_x": 23, - "sheet_y": 30, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F481-1F3FE-200D-2640-FE0F", - "non_qualified": "1F481-1F3FE-200D-2640", - "image": "1f481-1f3fe-200d-2640-fe0f.png", - "sheet_x": 23, - "sheet_y": 31, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F481-1F3FF-200D-2640-FE0F", - "non_qualified": "1F481-1F3FF-200D-2640", - "image": "1f481-1f3ff-200d-2640-fe0f.png", - "sheet_x": 23, - "sheet_y": 32, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - } - }, - "obsoletes": "1F481" - } - }, - "flag-tf": { - "char": "\ud83c\uddf9\ud83c\uddeb", - "key": "flag-tf", - "keywords": ["flag-tf", "French Southern Territories Flag"], - "category": "flags", - "lib": { - "name": "French Southern Territories Flag", - "unified": "1F1F9-1F1EB", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1f9-1f1eb.png", - "sheet_x": 4, - "sheet_y": 41, - "short_name": "flag-tf", - "short_names": ["flag-tf"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 230, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-tg": { - "char": "\ud83c\uddf9\ud83c\uddec", - "key": "flag-tg", - "keywords": ["flag-tg", "Togo Flag"], - "category": "flags", - "lib": { - "name": "Togo Flag", - "unified": "1F1F9-1F1EC", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1f9-1f1ec.png", - "sheet_x": 4, - "sheet_y": 42, - "short_name": "flag-tg", - "short_names": ["flag-tg"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 231, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "man-raising-hand": { - "char": "\ud83d\ude4b\u200d\u2642\ufe0f", - "key": "man-raising-hand", - "keywords": ["man-raising-hand", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F64B-200D-2642-FE0F", - "non_qualified": "1F64B-200D-2642", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f64b-200d-2642-fe0f.png", - "sheet_x": 33, - "sheet_y": 16, - "short_name": "man-raising-hand", - "short_names": ["man-raising-hand"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 231, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F64B-1F3FB-200D-2642-FE0F", - "non_qualified": "1F64B-1F3FB-200D-2642", - "image": "1f64b-1f3fb-200d-2642-fe0f.png", - "sheet_x": 33, - "sheet_y": 17, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F64B-1F3FC-200D-2642-FE0F", - "non_qualified": "1F64B-1F3FC-200D-2642", - "image": "1f64b-1f3fc-200d-2642-fe0f.png", - "sheet_x": 33, - "sheet_y": 18, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F64B-1F3FD-200D-2642-FE0F", - "non_qualified": "1F64B-1F3FD-200D-2642", - "image": "1f64b-1f3fd-200d-2642-fe0f.png", - "sheet_x": 33, - "sheet_y": 19, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F64B-1F3FE-200D-2642-FE0F", - "non_qualified": "1F64B-1F3FE-200D-2642", - "image": "1f64b-1f3fe-200d-2642-fe0f.png", - "sheet_x": 33, - "sheet_y": 20, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F64B-1F3FF-200D-2642-FE0F", - "non_qualified": "1F64B-1F3FF-200D-2642", - "image": "1f64b-1f3ff-200d-2642-fe0f.png", - "sheet_x": 33, - "sheet_y": 21, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - } - } - } - }, - "flag-th": { - "char": "\ud83c\uddf9\ud83c\udded", - "key": "flag-th", - "keywords": ["flag-th", "Thailand Flag"], - "category": "flags", - "lib": { - "name": "Thailand Flag", - "unified": "1F1F9-1F1ED", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1f9-1f1ed.png", - "sheet_x": 4, - "sheet_y": 43, - "short_name": "flag-th", - "short_names": ["flag-th"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 232, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "woman-raising-hand": { - "char": "\ud83d\ude4b\u200d\u2640\ufe0f", - "key": "woman-raising-hand", - "keywords": ["woman-raising-hand", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F64B-200D-2640-FE0F", - "non_qualified": "1F64B-200D-2640", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f64b-200d-2640-fe0f.png", - "sheet_x": 33, - "sheet_y": 10, - "short_name": "woman-raising-hand", - "short_names": ["woman-raising-hand"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 232, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F64B-1F3FB-200D-2640-FE0F", - "non_qualified": "1F64B-1F3FB-200D-2640", - "image": "1f64b-1f3fb-200d-2640-fe0f.png", - "sheet_x": 33, - "sheet_y": 11, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F64B-1F3FC-200D-2640-FE0F", - "non_qualified": "1F64B-1F3FC-200D-2640", - "image": "1f64b-1f3fc-200d-2640-fe0f.png", - "sheet_x": 33, - "sheet_y": 12, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F64B-1F3FD-200D-2640-FE0F", - "non_qualified": "1F64B-1F3FD-200D-2640", - "image": "1f64b-1f3fd-200d-2640-fe0f.png", - "sheet_x": 33, - "sheet_y": 13, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F64B-1F3FE-200D-2640-FE0F", - "non_qualified": "1F64B-1F3FE-200D-2640", - "image": "1f64b-1f3fe-200d-2640-fe0f.png", - "sheet_x": 33, - "sheet_y": 14, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F64B-1F3FF-200D-2640-FE0F", - "non_qualified": "1F64B-1F3FF-200D-2640", - "image": "1f64b-1f3ff-200d-2640-fe0f.png", - "sheet_x": 33, - "sheet_y": 15, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - } - }, - "obsoletes": "1F64B" - } - }, - "flag-tj": { - "char": "\ud83c\uddf9\ud83c\uddef", - "key": "flag-tj", - "keywords": ["flag-tj", "Tajikistan Flag"], - "category": "flags", - "lib": { - "name": "Tajikistan Flag", - "unified": "1F1F9-1F1EF", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1f9-1f1ef.png", - "sheet_x": 4, - "sheet_y": 44, - "short_name": "flag-tj", - "short_names": ["flag-tj"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 233, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-tk": { - "char": "\ud83c\uddf9\ud83c\uddf0", - "key": "flag-tk", - "keywords": ["flag-tk", "Tokelau Flag"], - "category": "flags", - "lib": { - "name": "Tokelau Flag", - "unified": "1F1F9-1F1F0", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1f9-1f1f0.png", - "sheet_x": 4, - "sheet_y": 45, - "short_name": "flag-tk", - "short_names": ["flag-tk"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 234, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "man-bowing": { - "char": "\ud83d\ude47\u200d\u2642\ufe0f", - "key": "man-bowing", - "keywords": ["man-bowing", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F647-200D-2642-FE0F", - "non_qualified": "1F647-200D-2642", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f647-200d-2642-fe0f.png", - "sheet_x": 32, - "sheet_y": 48, - "short_name": "man-bowing", - "short_names": ["man-bowing"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 234, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F647-1F3FB-200D-2642-FE0F", - "non_qualified": "1F647-1F3FB-200D-2642", - "image": "1f647-1f3fb-200d-2642-fe0f.png", - "sheet_x": 32, - "sheet_y": 49, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F647-1F3FC-200D-2642-FE0F", - "non_qualified": "1F647-1F3FC-200D-2642", - "image": "1f647-1f3fc-200d-2642-fe0f.png", - "sheet_x": 32, - "sheet_y": 50, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F647-1F3FD-200D-2642-FE0F", - "non_qualified": "1F647-1F3FD-200D-2642", - "image": "1f647-1f3fd-200d-2642-fe0f.png", - "sheet_x": 32, - "sheet_y": 51, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F647-1F3FE-200D-2642-FE0F", - "non_qualified": "1F647-1F3FE-200D-2642", - "image": "1f647-1f3fe-200d-2642-fe0f.png", - "sheet_x": 32, - "sheet_y": 52, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F647-1F3FF-200D-2642-FE0F", - "non_qualified": "1F647-1F3FF-200D-2642", - "image": "1f647-1f3ff-200d-2642-fe0f.png", - "sheet_x": 33, - "sheet_y": 0, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - } - }, - "obsoletes": "1F647" - } - }, - "flag-tl": { - "char": "\ud83c\uddf9\ud83c\uddf1", - "key": "flag-tl", - "keywords": ["flag-tl", "Timor-Leste Flag"], - "category": "flags", - "lib": { - "name": "Timor-Leste Flag", - "unified": "1F1F9-1F1F1", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1f9-1f1f1.png", - "sheet_x": 4, - "sheet_y": 46, - "short_name": "flag-tl", - "short_names": ["flag-tl"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 235, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "woman-bowing": { - "char": "\ud83d\ude47\u200d\u2640\ufe0f", - "key": "woman-bowing", - "keywords": ["woman-bowing", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F647-200D-2640-FE0F", - "non_qualified": "1F647-200D-2640", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f647-200d-2640-fe0f.png", - "sheet_x": 32, - "sheet_y": 42, - "short_name": "woman-bowing", - "short_names": ["woman-bowing"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 235, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F647-1F3FB-200D-2640-FE0F", - "non_qualified": "1F647-1F3FB-200D-2640", - "image": "1f647-1f3fb-200d-2640-fe0f.png", - "sheet_x": 32, - "sheet_y": 43, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F647-1F3FC-200D-2640-FE0F", - "non_qualified": "1F647-1F3FC-200D-2640", - "image": "1f647-1f3fc-200d-2640-fe0f.png", - "sheet_x": 32, - "sheet_y": 44, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F647-1F3FD-200D-2640-FE0F", - "non_qualified": "1F647-1F3FD-200D-2640", - "image": "1f647-1f3fd-200d-2640-fe0f.png", - "sheet_x": 32, - "sheet_y": 45, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F647-1F3FE-200D-2640-FE0F", - "non_qualified": "1F647-1F3FE-200D-2640", - "image": "1f647-1f3fe-200d-2640-fe0f.png", - "sheet_x": 32, - "sheet_y": 46, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F647-1F3FF-200D-2640-FE0F", - "non_qualified": "1F647-1F3FF-200D-2640", - "image": "1f647-1f3ff-200d-2640-fe0f.png", - "sheet_x": 32, - "sheet_y": 47, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - } - } - } - }, - "flag-tm": { - "char": "\ud83c\uddf9\ud83c\uddf2", - "key": "flag-tm", - "keywords": ["flag-tm", "Turkmenistan Flag"], - "category": "flags", - "lib": { - "name": "Turkmenistan Flag", - "unified": "1F1F9-1F1F2", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1f9-1f1f2.png", - "sheet_x": 4, - "sheet_y": 47, - "short_name": "flag-tm", - "short_names": ["flag-tm"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 236, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-tn": { - "char": "\ud83c\uddf9\ud83c\uddf3", - "key": "flag-tn", - "keywords": ["flag-tn", "Tunisia Flag"], - "category": "flags", - "lib": { - "name": "Tunisia Flag", - "unified": "1F1F9-1F1F3", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1f9-1f1f3.png", - "sheet_x": 4, - "sheet_y": 48, - "short_name": "flag-tn", - "short_names": ["flag-tn"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 237, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "man-facepalming": { - "char": "\ud83e\udd26\u200d\u2642\ufe0f", - "key": "man-facepalming", - "keywords": ["man-facepalming", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F926-200D-2642-FE0F", - "non_qualified": "1F926-200D-2642", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f926-200d-2642-fe0f.png", - "sheet_x": 38, - "sheet_y": 47, - "short_name": "man-facepalming", - "short_names": ["man-facepalming"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 237, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F926-1F3FB-200D-2642-FE0F", - "non_qualified": "1F926-1F3FB-200D-2642", - "image": "1f926-1f3fb-200d-2642-fe0f.png", - "sheet_x": 38, - "sheet_y": 48, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F926-1F3FC-200D-2642-FE0F", - "non_qualified": "1F926-1F3FC-200D-2642", - "image": "1f926-1f3fc-200d-2642-fe0f.png", - "sheet_x": 38, - "sheet_y": 49, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F926-1F3FD-200D-2642-FE0F", - "non_qualified": "1F926-1F3FD-200D-2642", - "image": "1f926-1f3fd-200d-2642-fe0f.png", - "sheet_x": 38, - "sheet_y": 50, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F926-1F3FE-200D-2642-FE0F", - "non_qualified": "1F926-1F3FE-200D-2642", - "image": "1f926-1f3fe-200d-2642-fe0f.png", - "sheet_x": 38, - "sheet_y": 51, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F926-1F3FF-200D-2642-FE0F", - "non_qualified": "1F926-1F3FF-200D-2642", - "image": "1f926-1f3ff-200d-2642-fe0f.png", - "sheet_x": 38, - "sheet_y": 52, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - } - } - } - }, - "flag-to": { - "char": "\ud83c\uddf9\ud83c\uddf4", - "key": "flag-to", - "keywords": ["flag-to", "Tonga Flag"], - "category": "flags", - "lib": { - "name": "Tonga Flag", - "unified": "1F1F9-1F1F4", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1f9-1f1f4.png", - "sheet_x": 4, - "sheet_y": 49, - "short_name": "flag-to", - "short_names": ["flag-to"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 238, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "woman-facepalming": { - "char": "\ud83e\udd26\u200d\u2640\ufe0f", - "key": "woman-facepalming", - "keywords": ["woman-facepalming", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F926-200D-2640-FE0F", - "non_qualified": "1F926-200D-2640", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f926-200d-2640-fe0f.png", - "sheet_x": 38, - "sheet_y": 41, - "short_name": "woman-facepalming", - "short_names": ["woman-facepalming"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 238, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F926-1F3FB-200D-2640-FE0F", - "non_qualified": "1F926-1F3FB-200D-2640", - "image": "1f926-1f3fb-200d-2640-fe0f.png", - "sheet_x": 38, - "sheet_y": 42, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F926-1F3FC-200D-2640-FE0F", - "non_qualified": "1F926-1F3FC-200D-2640", - "image": "1f926-1f3fc-200d-2640-fe0f.png", - "sheet_x": 38, - "sheet_y": 43, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F926-1F3FD-200D-2640-FE0F", - "non_qualified": "1F926-1F3FD-200D-2640", - "image": "1f926-1f3fd-200d-2640-fe0f.png", - "sheet_x": 38, - "sheet_y": 44, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F926-1F3FE-200D-2640-FE0F", - "non_qualified": "1F926-1F3FE-200D-2640", - "image": "1f926-1f3fe-200d-2640-fe0f.png", - "sheet_x": 38, - "sheet_y": 45, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F926-1F3FF-200D-2640-FE0F", - "non_qualified": "1F926-1F3FF-200D-2640", - "image": "1f926-1f3ff-200d-2640-fe0f.png", - "sheet_x": 38, - "sheet_y": 46, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - } - } - } - }, - "flag-tr": { - "char": "\ud83c\uddf9\ud83c\uddf7", - "key": "flag-tr", - "keywords": ["flag-tr", "Turkey Flag"], - "category": "flags", - "lib": { - "name": "Turkey Flag", - "unified": "1F1F9-1F1F7", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1f9-1f1f7.png", - "sheet_x": 4, - "sheet_y": 50, - "short_name": "flag-tr", - "short_names": ["flag-tr"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 239, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-tt": { - "char": "\ud83c\uddf9\ud83c\uddf9", - "key": "flag-tt", - "keywords": ["flag-tt", "Trinidad & Tobago Flag"], - "category": "flags", - "lib": { - "name": "Trinidad & Tobago Flag", - "unified": "1F1F9-1F1F9", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1f9-1f1f9.png", - "sheet_x": 4, - "sheet_y": 51, - "short_name": "flag-tt", - "short_names": ["flag-tt"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 240, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "man-shrugging": { - "char": "\ud83e\udd37\u200d\u2642\ufe0f", - "key": "man-shrugging", - "keywords": ["man-shrugging", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F937-200D-2642-FE0F", - "non_qualified": "1F937-200D-2642", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f937-200d-2642-fe0f.png", - "sheet_x": 40, - "sheet_y": 10, - "short_name": "man-shrugging", - "short_names": ["man-shrugging"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 240, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F937-1F3FB-200D-2642-FE0F", - "non_qualified": "1F937-1F3FB-200D-2642", - "image": "1f937-1f3fb-200d-2642-fe0f.png", - "sheet_x": 40, - "sheet_y": 11, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F937-1F3FC-200D-2642-FE0F", - "non_qualified": "1F937-1F3FC-200D-2642", - "image": "1f937-1f3fc-200d-2642-fe0f.png", - "sheet_x": 40, - "sheet_y": 12, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F937-1F3FD-200D-2642-FE0F", - "non_qualified": "1F937-1F3FD-200D-2642", - "image": "1f937-1f3fd-200d-2642-fe0f.png", - "sheet_x": 40, - "sheet_y": 13, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F937-1F3FE-200D-2642-FE0F", - "non_qualified": "1F937-1F3FE-200D-2642", - "image": "1f937-1f3fe-200d-2642-fe0f.png", - "sheet_x": 40, - "sheet_y": 14, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F937-1F3FF-200D-2642-FE0F", - "non_qualified": "1F937-1F3FF-200D-2642", - "image": "1f937-1f3ff-200d-2642-fe0f.png", - "sheet_x": 40, - "sheet_y": 15, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - } - } - } - }, - "flag-tv": { - "char": "\ud83c\uddf9\ud83c\uddfb", - "key": "flag-tv", - "keywords": ["flag-tv", "Tuvalu Flag"], - "category": "flags", - "lib": { - "name": "Tuvalu Flag", - "unified": "1F1F9-1F1FB", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1f9-1f1fb.png", - "sheet_x": 4, - "sheet_y": 52, - "short_name": "flag-tv", - "short_names": ["flag-tv"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 241, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "woman-shrugging": { - "char": "\ud83e\udd37\u200d\u2640\ufe0f", - "key": "woman-shrugging", - "keywords": ["woman-shrugging", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F937-200D-2640-FE0F", - "non_qualified": "1F937-200D-2640", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f937-200d-2640-fe0f.png", - "sheet_x": 40, - "sheet_y": 4, - "short_name": "woman-shrugging", - "short_names": ["woman-shrugging"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 241, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F937-1F3FB-200D-2640-FE0F", - "non_qualified": "1F937-1F3FB-200D-2640", - "image": "1f937-1f3fb-200d-2640-fe0f.png", - "sheet_x": 40, - "sheet_y": 5, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F937-1F3FC-200D-2640-FE0F", - "non_qualified": "1F937-1F3FC-200D-2640", - "image": "1f937-1f3fc-200d-2640-fe0f.png", - "sheet_x": 40, - "sheet_y": 6, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F937-1F3FD-200D-2640-FE0F", - "non_qualified": "1F937-1F3FD-200D-2640", - "image": "1f937-1f3fd-200d-2640-fe0f.png", - "sheet_x": 40, - "sheet_y": 7, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F937-1F3FE-200D-2640-FE0F", - "non_qualified": "1F937-1F3FE-200D-2640", - "image": "1f937-1f3fe-200d-2640-fe0f.png", - "sheet_x": 40, - "sheet_y": 8, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F937-1F3FF-200D-2640-FE0F", - "non_qualified": "1F937-1F3FF-200D-2640", - "image": "1f937-1f3ff-200d-2640-fe0f.png", - "sheet_x": 40, - "sheet_y": 9, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - } - } - } - }, - "flag-tw": { - "char": "\ud83c\uddf9\ud83c\uddfc", - "key": "flag-tw", - "keywords": ["flag-tw", "Taiwan Flag"], - "category": "flags", - "lib": { - "name": "Taiwan Flag", - "unified": "1F1F9-1F1FC", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1f9-1f1fc.png", - "sheet_x": 5, - "sheet_y": 0, - "short_name": "flag-tw", - "short_names": ["flag-tw"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 242, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-tz": { - "char": "\ud83c\uddf9\ud83c\uddff", - "key": "flag-tz", - "keywords": ["flag-tz", "Tanzania Flag"], - "category": "flags", - "lib": { - "name": "Tanzania Flag", - "unified": "1F1F9-1F1FF", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1f9-1f1ff.png", - "sheet_x": 5, - "sheet_y": 1, - "short_name": "flag-tz", - "short_names": ["flag-tz"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 243, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "man-getting-massage": { - "char": "\ud83d\udc86\u200d\u2642\ufe0f", - "key": "man-getting-massage", - "keywords": ["man-getting-massage", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F486-200D-2642-FE0F", - "non_qualified": "1F486-200D-2642", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f486-200d-2642-fe0f.png", - "sheet_x": 24, - "sheet_y": 29, - "short_name": "man-getting-massage", - "short_names": ["man-getting-massage"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 243, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F486-1F3FB-200D-2642-FE0F", - "non_qualified": "1F486-1F3FB-200D-2642", - "image": "1f486-1f3fb-200d-2642-fe0f.png", - "sheet_x": 24, - "sheet_y": 30, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F486-1F3FC-200D-2642-FE0F", - "non_qualified": "1F486-1F3FC-200D-2642", - "image": "1f486-1f3fc-200d-2642-fe0f.png", - "sheet_x": 24, - "sheet_y": 31, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F486-1F3FD-200D-2642-FE0F", - "non_qualified": "1F486-1F3FD-200D-2642", - "image": "1f486-1f3fd-200d-2642-fe0f.png", - "sheet_x": 24, - "sheet_y": 32, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F486-1F3FE-200D-2642-FE0F", - "non_qualified": "1F486-1F3FE-200D-2642", - "image": "1f486-1f3fe-200d-2642-fe0f.png", - "sheet_x": 24, - "sheet_y": 33, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F486-1F3FF-200D-2642-FE0F", - "non_qualified": "1F486-1F3FF-200D-2642", - "image": "1f486-1f3ff-200d-2642-fe0f.png", - "sheet_x": 24, - "sheet_y": 34, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - } - } - } - }, - "flag-ua": { - "char": "\ud83c\uddfa\ud83c\udde6", - "key": "flag-ua", - "keywords": ["flag-ua", "Ukraine Flag"], - "category": "flags", - "lib": { - "name": "Ukraine Flag", - "unified": "1F1FA-1F1E6", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1fa-1f1e6.png", - "sheet_x": 5, - "sheet_y": 2, - "short_name": "flag-ua", - "short_names": ["flag-ua"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 244, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "woman-getting-massage": { - "char": "\ud83d\udc86\u200d\u2640\ufe0f", - "key": "woman-getting-massage", - "keywords": ["woman-getting-massage", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F486-200D-2640-FE0F", - "non_qualified": "1F486-200D-2640", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f486-200d-2640-fe0f.png", - "sheet_x": 24, - "sheet_y": 23, - "short_name": "woman-getting-massage", - "short_names": ["woman-getting-massage"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 244, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F486-1F3FB-200D-2640-FE0F", - "non_qualified": "1F486-1F3FB-200D-2640", - "image": "1f486-1f3fb-200d-2640-fe0f.png", - "sheet_x": 24, - "sheet_y": 24, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F486-1F3FC-200D-2640-FE0F", - "non_qualified": "1F486-1F3FC-200D-2640", - "image": "1f486-1f3fc-200d-2640-fe0f.png", - "sheet_x": 24, - "sheet_y": 25, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F486-1F3FD-200D-2640-FE0F", - "non_qualified": "1F486-1F3FD-200D-2640", - "image": "1f486-1f3fd-200d-2640-fe0f.png", - "sheet_x": 24, - "sheet_y": 26, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F486-1F3FE-200D-2640-FE0F", - "non_qualified": "1F486-1F3FE-200D-2640", - "image": "1f486-1f3fe-200d-2640-fe0f.png", - "sheet_x": 24, - "sheet_y": 27, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F486-1F3FF-200D-2640-FE0F", - "non_qualified": "1F486-1F3FF-200D-2640", - "image": "1f486-1f3ff-200d-2640-fe0f.png", - "sheet_x": 24, - "sheet_y": 28, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - } - }, - "obsoletes": "1F486" - } - }, - "flag-ug": { - "char": "\ud83c\uddfa\ud83c\uddec", - "key": "flag-ug", - "keywords": ["flag-ug", "Uganda Flag"], - "category": "flags", - "lib": { - "name": "Uganda Flag", - "unified": "1F1FA-1F1EC", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1fa-1f1ec.png", - "sheet_x": 5, - "sheet_y": 3, - "short_name": "flag-ug", - "short_names": ["flag-ug"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 245, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-um": { - "char": "\ud83c\uddfa\ud83c\uddf2", - "key": "flag-um", - "keywords": ["flag-um", "U.S. Outlying Islands Flag"], - "category": "flags", - "lib": { - "name": "U.S. Outlying Islands Flag", - "unified": "1F1FA-1F1F2", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1fa-1f1f2.png", - "sheet_x": 5, - "sheet_y": 4, - "short_name": "flag-um", - "short_names": ["flag-um"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 246, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "man-getting-haircut": { - "char": "\ud83d\udc87\u200d\u2642\ufe0f", - "key": "man-getting-haircut", - "keywords": ["man-getting-haircut", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F487-200D-2642-FE0F", - "non_qualified": "1F487-200D-2642", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f487-200d-2642-fe0f.png", - "sheet_x": 24, - "sheet_y": 47, - "short_name": "man-getting-haircut", - "short_names": ["man-getting-haircut"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 246, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F487-1F3FB-200D-2642-FE0F", - "non_qualified": "1F487-1F3FB-200D-2642", - "image": "1f487-1f3fb-200d-2642-fe0f.png", - "sheet_x": 24, - "sheet_y": 48, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F487-1F3FC-200D-2642-FE0F", - "non_qualified": "1F487-1F3FC-200D-2642", - "image": "1f487-1f3fc-200d-2642-fe0f.png", - "sheet_x": 24, - "sheet_y": 49, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F487-1F3FD-200D-2642-FE0F", - "non_qualified": "1F487-1F3FD-200D-2642", - "image": "1f487-1f3fd-200d-2642-fe0f.png", - "sheet_x": 24, - "sheet_y": 50, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F487-1F3FE-200D-2642-FE0F", - "non_qualified": "1F487-1F3FE-200D-2642", - "image": "1f487-1f3fe-200d-2642-fe0f.png", - "sheet_x": 24, - "sheet_y": 51, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F487-1F3FF-200D-2642-FE0F", - "non_qualified": "1F487-1F3FF-200D-2642", - "image": "1f487-1f3ff-200d-2642-fe0f.png", - "sheet_x": 24, - "sheet_y": 52, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - } - } - } - }, - "flag-un": { - "char": "\ud83c\uddfa\ud83c\uddf3", - "key": "flag-un", - "keywords": ["flag-un", "United Nations Flag"], - "category": "flags", - "lib": { - "name": "United Nations Flag", - "unified": "1F1FA-1F1F3", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1fa-1f1f3.png", - "sheet_x": 5, - "sheet_y": 5, - "short_name": "flag-un", - "short_names": ["flag-un"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 247, - "added_in": "6.0", - "has_img_apple": false, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "woman-getting-haircut": { - "char": "\ud83d\udc87\u200d\u2640\ufe0f", - "key": "woman-getting-haircut", - "keywords": ["woman-getting-haircut", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F487-200D-2640-FE0F", - "non_qualified": "1F487-200D-2640", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f487-200d-2640-fe0f.png", - "sheet_x": 24, - "sheet_y": 41, - "short_name": "woman-getting-haircut", - "short_names": ["woman-getting-haircut"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 247, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F487-1F3FB-200D-2640-FE0F", - "non_qualified": "1F487-1F3FB-200D-2640", - "image": "1f487-1f3fb-200d-2640-fe0f.png", - "sheet_x": 24, - "sheet_y": 42, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F487-1F3FC-200D-2640-FE0F", - "non_qualified": "1F487-1F3FC-200D-2640", - "image": "1f487-1f3fc-200d-2640-fe0f.png", - "sheet_x": 24, - "sheet_y": 43, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F487-1F3FD-200D-2640-FE0F", - "non_qualified": "1F487-1F3FD-200D-2640", - "image": "1f487-1f3fd-200d-2640-fe0f.png", - "sheet_x": 24, - "sheet_y": 44, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F487-1F3FE-200D-2640-FE0F", - "non_qualified": "1F487-1F3FE-200D-2640", - "image": "1f487-1f3fe-200d-2640-fe0f.png", - "sheet_x": 24, - "sheet_y": 45, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F487-1F3FF-200D-2640-FE0F", - "non_qualified": "1F487-1F3FF-200D-2640", - "image": "1f487-1f3ff-200d-2640-fe0f.png", - "sheet_x": 24, - "sheet_y": 46, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - } - }, - "obsoletes": "1F487" - } - }, - "us": { - "char": "\ud83c\uddfa\ud83c\uddf8", - "key": "us", - "keywords": ["us", "United States Flag"], - "category": "flags", - "lib": { - "name": "United States Flag", - "unified": "1F1FA-1F1F8", - "non_qualified": null, - "docomo": null, - "au": "E573", - "softbank": "E50C", - "google": "FE4E6", - "image": "1f1fa-1f1f8.png", - "sheet_x": 5, - "sheet_y": 6, - "short_name": "us", - "short_names": ["us", "flag-us"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 248, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-uy": { - "char": "\ud83c\uddfa\ud83c\uddfe", - "key": "flag-uy", - "keywords": ["flag-uy", "Uruguay Flag"], - "category": "flags", - "lib": { - "name": "Uruguay Flag", - "unified": "1F1FA-1F1FE", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1fa-1f1fe.png", - "sheet_x": 5, - "sheet_y": 7, - "short_name": "flag-uy", - "short_names": ["flag-uy"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 249, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "man-walking": { - "char": "\ud83d\udeb6\u200d\u2642\ufe0f", - "key": "man-walking", - "keywords": ["man-walking", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F6B6-200D-2642-FE0F", - "non_qualified": "1F6B6-200D-2642", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f6b6-200d-2642-fe0f.png", - "sheet_x": 36, - "sheet_y": 28, - "short_name": "man-walking", - "short_names": ["man-walking"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 249, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F6B6-1F3FB-200D-2642-FE0F", - "non_qualified": "1F6B6-1F3FB-200D-2642", - "image": "1f6b6-1f3fb-200d-2642-fe0f.png", - "sheet_x": 36, - "sheet_y": 29, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F6B6-1F3FC-200D-2642-FE0F", - "non_qualified": "1F6B6-1F3FC-200D-2642", - "image": "1f6b6-1f3fc-200d-2642-fe0f.png", - "sheet_x": 36, - "sheet_y": 30, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F6B6-1F3FD-200D-2642-FE0F", - "non_qualified": "1F6B6-1F3FD-200D-2642", - "image": "1f6b6-1f3fd-200d-2642-fe0f.png", - "sheet_x": 36, - "sheet_y": 31, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F6B6-1F3FE-200D-2642-FE0F", - "non_qualified": "1F6B6-1F3FE-200D-2642", - "image": "1f6b6-1f3fe-200d-2642-fe0f.png", - "sheet_x": 36, - "sheet_y": 32, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F6B6-1F3FF-200D-2642-FE0F", - "non_qualified": "1F6B6-1F3FF-200D-2642", - "image": "1f6b6-1f3ff-200d-2642-fe0f.png", - "sheet_x": 36, - "sheet_y": 33, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - } - }, - "obsoletes": "1F6B6" - } - }, - "flag-uz": { - "char": "\ud83c\uddfa\ud83c\uddff", - "key": "flag-uz", - "keywords": ["flag-uz", "Uzbekistan Flag"], - "category": "flags", - "lib": { - "name": "Uzbekistan Flag", - "unified": "1F1FA-1F1FF", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1fa-1f1ff.png", - "sheet_x": 5, - "sheet_y": 8, - "short_name": "flag-uz", - "short_names": ["flag-uz"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 250, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "woman-walking": { - "char": "\ud83d\udeb6\u200d\u2640\ufe0f", - "key": "woman-walking", - "keywords": ["woman-walking", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F6B6-200D-2640-FE0F", - "non_qualified": "1F6B6-200D-2640", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f6b6-200d-2640-fe0f.png", - "sheet_x": 36, - "sheet_y": 22, - "short_name": "woman-walking", - "short_names": ["woman-walking"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 250, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F6B6-1F3FB-200D-2640-FE0F", - "non_qualified": "1F6B6-1F3FB-200D-2640", - "image": "1f6b6-1f3fb-200d-2640-fe0f.png", - "sheet_x": 36, - "sheet_y": 23, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F6B6-1F3FC-200D-2640-FE0F", - "non_qualified": "1F6B6-1F3FC-200D-2640", - "image": "1f6b6-1f3fc-200d-2640-fe0f.png", - "sheet_x": 36, - "sheet_y": 24, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F6B6-1F3FD-200D-2640-FE0F", - "non_qualified": "1F6B6-1F3FD-200D-2640", - "image": "1f6b6-1f3fd-200d-2640-fe0f.png", - "sheet_x": 36, - "sheet_y": 25, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F6B6-1F3FE-200D-2640-FE0F", - "non_qualified": "1F6B6-1F3FE-200D-2640", - "image": "1f6b6-1f3fe-200d-2640-fe0f.png", - "sheet_x": 36, - "sheet_y": 26, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F6B6-1F3FF-200D-2640-FE0F", - "non_qualified": "1F6B6-1F3FF-200D-2640", - "image": "1f6b6-1f3ff-200d-2640-fe0f.png", - "sheet_x": 36, - "sheet_y": 27, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - } - } - } - }, - "flag-va": { - "char": "\ud83c\uddfb\ud83c\udde6", - "key": "flag-va", - "keywords": ["flag-va", "Vatican City Flag"], - "category": "flags", - "lib": { - "name": "Vatican City Flag", - "unified": "1F1FB-1F1E6", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1fb-1f1e6.png", - "sheet_x": 5, - "sheet_y": 9, - "short_name": "flag-va", - "short_names": ["flag-va"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 251, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-vc": { - "char": "\ud83c\uddfb\ud83c\udde8", - "key": "flag-vc", - "keywords": ["flag-vc", "St. Vincent & Grenadines Flag"], - "category": "flags", - "lib": { - "name": "St. Vincent & Grenadines Flag", - "unified": "1F1FB-1F1E8", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1fb-1f1e8.png", - "sheet_x": 5, - "sheet_y": 10, - "short_name": "flag-vc", - "short_names": ["flag-vc"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 252, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "man-running": { - "char": "\ud83c\udfc3\u200d\u2642\ufe0f", - "key": "man-running", - "keywords": ["man-running", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F3C3-200D-2642-FE0F", - "non_qualified": "1F3C3-200D-2642", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f3c3-200d-2642-fe0f.png", - "sheet_x": 9, - "sheet_y": 31, - "short_name": "man-running", - "short_names": ["man-running"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 252, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F3C3-1F3FB-200D-2642-FE0F", - "non_qualified": "1F3C3-1F3FB-200D-2642", - "image": "1f3c3-1f3fb-200d-2642-fe0f.png", - "sheet_x": 9, - "sheet_y": 32, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F3C3-1F3FC-200D-2642-FE0F", - "non_qualified": "1F3C3-1F3FC-200D-2642", - "image": "1f3c3-1f3fc-200d-2642-fe0f.png", - "sheet_x": 9, - "sheet_y": 33, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F3C3-1F3FD-200D-2642-FE0F", - "non_qualified": "1F3C3-1F3FD-200D-2642", - "image": "1f3c3-1f3fd-200d-2642-fe0f.png", - "sheet_x": 9, - "sheet_y": 34, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F3C3-1F3FE-200D-2642-FE0F", - "non_qualified": "1F3C3-1F3FE-200D-2642", - "image": "1f3c3-1f3fe-200d-2642-fe0f.png", - "sheet_x": 9, - "sheet_y": 35, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F3C3-1F3FF-200D-2642-FE0F", - "non_qualified": "1F3C3-1F3FF-200D-2642", - "image": "1f3c3-1f3ff-200d-2642-fe0f.png", - "sheet_x": 9, - "sheet_y": 36, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - } - }, - "obsoletes": "1F3C3" - } - }, - "flag-ve": { - "char": "\ud83c\uddfb\ud83c\uddea", - "key": "flag-ve", - "keywords": ["flag-ve", "Venezuela Flag"], - "category": "flags", - "lib": { - "name": "Venezuela Flag", - "unified": "1F1FB-1F1EA", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1fb-1f1ea.png", - "sheet_x": 5, - "sheet_y": 11, - "short_name": "flag-ve", - "short_names": ["flag-ve"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 253, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "woman-running": { - "char": "\ud83c\udfc3\u200d\u2640\ufe0f", - "key": "woman-running", - "keywords": ["woman-running", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F3C3-200D-2640-FE0F", - "non_qualified": "1F3C3-200D-2640", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f3c3-200d-2640-fe0f.png", - "sheet_x": 9, - "sheet_y": 25, - "short_name": "woman-running", - "short_names": ["woman-running"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 253, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F3C3-1F3FB-200D-2640-FE0F", - "non_qualified": "1F3C3-1F3FB-200D-2640", - "image": "1f3c3-1f3fb-200d-2640-fe0f.png", - "sheet_x": 9, - "sheet_y": 26, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F3C3-1F3FC-200D-2640-FE0F", - "non_qualified": "1F3C3-1F3FC-200D-2640", - "image": "1f3c3-1f3fc-200d-2640-fe0f.png", - "sheet_x": 9, - "sheet_y": 27, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F3C3-1F3FD-200D-2640-FE0F", - "non_qualified": "1F3C3-1F3FD-200D-2640", - "image": "1f3c3-1f3fd-200d-2640-fe0f.png", - "sheet_x": 9, - "sheet_y": 28, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F3C3-1F3FE-200D-2640-FE0F", - "non_qualified": "1F3C3-1F3FE-200D-2640", - "image": "1f3c3-1f3fe-200d-2640-fe0f.png", - "sheet_x": 9, - "sheet_y": 29, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F3C3-1F3FF-200D-2640-FE0F", - "non_qualified": "1F3C3-1F3FF-200D-2640", - "image": "1f3c3-1f3ff-200d-2640-fe0f.png", - "sheet_x": 9, - "sheet_y": 30, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - } - } - } - }, - "flag-vg": { - "char": "\ud83c\uddfb\ud83c\uddec", - "key": "flag-vg", - "keywords": ["flag-vg", "British Virgin Islands Flag"], - "category": "flags", - "lib": { - "name": "British Virgin Islands Flag", - "unified": "1F1FB-1F1EC", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1fb-1f1ec.png", - "sheet_x": 5, - "sheet_y": 12, - "short_name": "flag-vg", - "short_names": ["flag-vg"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 254, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "dancer": { - "char": "\ud83d\udc83", - "key": "dancer", - "keywords": ["dancer", "DANCER"], - "category": "people", - "lib": { - "name": "DANCER", - "unified": "1F483", - "non_qualified": null, - "docomo": null, - "au": "EB1C", - "softbank": "E51F", - "google": "FE1B6", - "image": "1f483.png", - "sheet_x": 24, - "sheet_y": 10, - "short_name": "dancer", - "short_names": ["dancer"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 254, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true, - "skin_variations": { - "1F3FB": { - "unified": "1F483-1F3FB", - "non_qualified": null, - "image": "1f483-1f3fb.png", - "sheet_x": 24, - "sheet_y": 11, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FC": { - "unified": "1F483-1F3FC", - "non_qualified": null, - "image": "1f483-1f3fc.png", - "sheet_x": 24, - "sheet_y": 12, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FD": { - "unified": "1F483-1F3FD", - "non_qualified": null, - "image": "1f483-1f3fd.png", - "sheet_x": 24, - "sheet_y": 13, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FE": { - "unified": "1F483-1F3FE", - "non_qualified": null, - "image": "1f483-1f3fe.png", - "sheet_x": 24, - "sheet_y": 14, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FF": { - "unified": "1F483-1F3FF", - "non_qualified": null, - "image": "1f483-1f3ff.png", - "sheet_x": 24, - "sheet_y": 15, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - } - } - }, - "flag-vi": { - "char": "\ud83c\uddfb\ud83c\uddee", - "key": "flag-vi", - "keywords": ["flag-vi", "U.S. Virgin Islands Flag"], - "category": "flags", - "lib": { - "name": "U.S. Virgin Islands Flag", - "unified": "1F1FB-1F1EE", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1fb-1f1ee.png", - "sheet_x": 5, - "sheet_y": 13, - "short_name": "flag-vi", - "short_names": ["flag-vi"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 255, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "man_dancing": { - "char": "\ud83d\udd7a", - "key": "man_dancing", - "keywords": ["man_dancing", "MAN DANCING"], - "category": "people", - "lib": { - "name": "MAN DANCING", - "unified": "1F57A", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f57a.png", - "sheet_x": 29, - "sheet_y": 41, - "short_name": "man_dancing", - "short_names": ["man_dancing"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 255, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F57A-1F3FB", - "non_qualified": null, - "image": "1f57a-1f3fb.png", - "sheet_x": 29, - "sheet_y": 42, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F57A-1F3FC", - "non_qualified": null, - "image": "1f57a-1f3fc.png", - "sheet_x": 29, - "sheet_y": 43, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F57A-1F3FD", - "non_qualified": null, - "image": "1f57a-1f3fd.png", - "sheet_x": 29, - "sheet_y": 44, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F57A-1F3FE", - "non_qualified": null, - "image": "1f57a-1f3fe.png", - "sheet_x": 29, - "sheet_y": 45, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F57A-1F3FF", - "non_qualified": null, - "image": "1f57a-1f3ff.png", - "sheet_x": 29, - "sheet_y": 46, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - } - } - }, - "flag-vn": { - "char": "\ud83c\uddfb\ud83c\uddf3", - "key": "flag-vn", - "keywords": ["flag-vn", "Vietnam Flag"], - "category": "flags", - "lib": { - "name": "Vietnam Flag", - "unified": "1F1FB-1F1F3", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1fb-1f1f3.png", - "sheet_x": 5, - "sheet_y": 14, - "short_name": "flag-vn", - "short_names": ["flag-vn"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 256, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-vu": { - "char": "\ud83c\uddfb\ud83c\uddfa", - "key": "flag-vu", - "keywords": ["flag-vu", "Vanuatu Flag"], - "category": "flags", - "lib": { - "name": "Vanuatu Flag", - "unified": "1F1FB-1F1FA", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1fb-1f1fa.png", - "sheet_x": 5, - "sheet_y": 15, - "short_name": "flag-vu", - "short_names": ["flag-vu"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 257, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "man-with-bunny-ears-partying": { - "char": "\ud83d\udc6f\u200d\u2642\ufe0f", - "key": "man-with-bunny-ears-partying", - "keywords": ["man-with-bunny-ears-partying", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F46F-200D-2642-FE0F", - "non_qualified": "1F46F-200D-2642", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f46f-200d-2642-fe0f.png", - "sheet_x": 21, - "sheet_y": 28, - "short_name": "man-with-bunny-ears-partying", - "short_names": ["man-with-bunny-ears-partying"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 257, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "flag-wf": { - "char": "\ud83c\uddfc\ud83c\uddeb", - "key": "flag-wf", - "keywords": ["flag-wf", "Wallis & Futuna Flag"], - "category": "flags", - "lib": { - "name": "Wallis & Futuna Flag", - "unified": "1F1FC-1F1EB", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1fc-1f1eb.png", - "sheet_x": 5, - "sheet_y": 16, - "short_name": "flag-wf", - "short_names": ["flag-wf"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 258, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "woman-with-bunny-ears-partying": { - "char": "\ud83d\udc6f\u200d\u2640\ufe0f", - "key": "woman-with-bunny-ears-partying", - "keywords": ["woman-with-bunny-ears-partying", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F46F-200D-2640-FE0F", - "non_qualified": "1F46F-200D-2640", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f46f-200d-2640-fe0f.png", - "sheet_x": 21, - "sheet_y": 27, - "short_name": "woman-with-bunny-ears-partying", - "short_names": ["woman-with-bunny-ears-partying"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 258, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "obsoletes": "1F46F" - } - }, - "flag-ws": { - "char": "\ud83c\uddfc\ud83c\uddf8", - "key": "flag-ws", - "keywords": ["flag-ws", "Samoa Flag"], - "category": "flags", - "lib": { - "name": "Samoa Flag", - "unified": "1F1FC-1F1F8", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1fc-1f1f8.png", - "sheet_x": 5, - "sheet_y": 17, - "short_name": "flag-ws", - "short_names": ["flag-ws"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 259, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-xk": { - "char": "\ud83c\uddfd\ud83c\uddf0", - "key": "flag-xk", - "keywords": ["flag-xk", "Kosovo Flag"], - "category": "flags", - "lib": { - "name": "Kosovo Flag", - "unified": "1F1FD-1F1F0", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1fd-1f1f0.png", - "sheet_x": 5, - "sheet_y": 18, - "short_name": "flag-xk", - "short_names": ["flag-xk"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 260, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "woman_in_steamy_room": { - "char": "\ud83e\uddd6\u200d\u2640\ufe0f", - "key": "woman_in_steamy_room", - "keywords": ["woman_in_steamy_room", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F9D6-200D-2640-FE0F", - "non_qualified": "1F9D6-200D-2640", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f9d6-200d-2640-fe0f.png", - "sheet_x": 44, - "sheet_y": 50, - "short_name": "woman_in_steamy_room", - "short_names": ["woman_in_steamy_room"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 260, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F9D6-1F3FB-200D-2640-FE0F", - "non_qualified": "1F9D6-1F3FB-200D-2640", - "image": "1f9d6-1f3fb-200d-2640-fe0f.png", - "sheet_x": 44, - "sheet_y": 51, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F9D6-1F3FC-200D-2640-FE0F", - "non_qualified": "1F9D6-1F3FC-200D-2640", - "image": "1f9d6-1f3fc-200d-2640-fe0f.png", - "sheet_x": 44, - "sheet_y": 52, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F9D6-1F3FD-200D-2640-FE0F", - "non_qualified": "1F9D6-1F3FD-200D-2640", - "image": "1f9d6-1f3fd-200d-2640-fe0f.png", - "sheet_x": 45, - "sheet_y": 0, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F9D6-1F3FE-200D-2640-FE0F", - "non_qualified": "1F9D6-1F3FE-200D-2640", - "image": "1f9d6-1f3fe-200d-2640-fe0f.png", - "sheet_x": 45, - "sheet_y": 1, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F9D6-1F3FF-200D-2640-FE0F", - "non_qualified": "1F9D6-1F3FF-200D-2640", - "image": "1f9d6-1f3ff-200d-2640-fe0f.png", - "sheet_x": 45, - "sheet_y": 2, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - } - } - } - }, - "flag-ye": { - "char": "\ud83c\uddfe\ud83c\uddea", - "key": "flag-ye", - "keywords": ["flag-ye", "Yemen Flag"], - "category": "flags", - "lib": { - "name": "Yemen Flag", - "unified": "1F1FE-1F1EA", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1fe-1f1ea.png", - "sheet_x": 5, - "sheet_y": 19, - "short_name": "flag-ye", - "short_names": ["flag-ye"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 261, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "man_in_steamy_room": { - "char": "\ud83e\uddd6\u200d\u2642\ufe0f", - "key": "man_in_steamy_room", - "keywords": ["man_in_steamy_room", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F9D6-200D-2642-FE0F", - "non_qualified": "1F9D6-200D-2642", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f9d6-200d-2642-fe0f.png", - "sheet_x": 45, - "sheet_y": 3, - "short_name": "man_in_steamy_room", - "short_names": ["man_in_steamy_room"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 261, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F9D6-1F3FB-200D-2642-FE0F", - "non_qualified": "1F9D6-1F3FB-200D-2642", - "image": "1f9d6-1f3fb-200d-2642-fe0f.png", - "sheet_x": 45, - "sheet_y": 4, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false, - "obsoletes": "1F9D6-1F3FB" - }, - "1F3FC": { - "unified": "1F9D6-1F3FC-200D-2642-FE0F", - "non_qualified": "1F9D6-1F3FC-200D-2642", - "image": "1f9d6-1f3fc-200d-2642-fe0f.png", - "sheet_x": 45, - "sheet_y": 5, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false, - "obsoletes": "1F9D6-1F3FC" - }, - "1F3FD": { - "unified": "1F9D6-1F3FD-200D-2642-FE0F", - "non_qualified": "1F9D6-1F3FD-200D-2642", - "image": "1f9d6-1f3fd-200d-2642-fe0f.png", - "sheet_x": 45, - "sheet_y": 6, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false, - "obsoletes": "1F9D6-1F3FD" - }, - "1F3FE": { - "unified": "1F9D6-1F3FE-200D-2642-FE0F", - "non_qualified": "1F9D6-1F3FE-200D-2642", - "image": "1f9d6-1f3fe-200d-2642-fe0f.png", - "sheet_x": 45, - "sheet_y": 7, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false, - "obsoletes": "1F9D6-1F3FE" - }, - "1F3FF": { - "unified": "1F9D6-1F3FF-200D-2642-FE0F", - "non_qualified": "1F9D6-1F3FF-200D-2642", - "image": "1f9d6-1f3ff-200d-2642-fe0f.png", - "sheet_x": 45, - "sheet_y": 8, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false, - "obsoletes": "1F9D6-1F3FF" - } - }, - "obsoletes": "1F9D6" - } - }, - "flag-yt": { - "char": "\ud83c\uddfe\ud83c\uddf9", - "key": "flag-yt", - "keywords": ["flag-yt", "Mayotte Flag"], - "category": "flags", - "lib": { - "name": "Mayotte Flag", - "unified": "1F1FE-1F1F9", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1fe-1f1f9.png", - "sheet_x": 5, - "sheet_y": 20, - "short_name": "flag-yt", - "short_names": ["flag-yt"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 262, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": false, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-za": { - "char": "\ud83c\uddff\ud83c\udde6", - "key": "flag-za", - "keywords": ["flag-za", "South Africa Flag"], - "category": "flags", - "lib": { - "name": "South Africa Flag", - "unified": "1F1FF-1F1E6", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1ff-1f1e6.png", - "sheet_x": 5, - "sheet_y": 21, - "short_name": "flag-za", - "short_names": ["flag-za"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 263, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "woman_climbing": { - "char": "\ud83e\uddd7\u200d\u2640\ufe0f", - "key": "woman_climbing", - "keywords": ["woman_climbing", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F9D7-200D-2640-FE0F", - "non_qualified": "1F9D7-200D-2640", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f9d7-200d-2640-fe0f.png", - "sheet_x": 45, - "sheet_y": 15, - "short_name": "woman_climbing", - "short_names": ["woman_climbing"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 263, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F9D7-1F3FB-200D-2640-FE0F", - "non_qualified": "1F9D7-1F3FB-200D-2640", - "image": "1f9d7-1f3fb-200d-2640-fe0f.png", - "sheet_x": 45, - "sheet_y": 16, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false, - "obsoletes": "1F9D7-1F3FB" - }, - "1F3FC": { - "unified": "1F9D7-1F3FC-200D-2640-FE0F", - "non_qualified": "1F9D7-1F3FC-200D-2640", - "image": "1f9d7-1f3fc-200d-2640-fe0f.png", - "sheet_x": 45, - "sheet_y": 17, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false, - "obsoletes": "1F9D7-1F3FC" - }, - "1F3FD": { - "unified": "1F9D7-1F3FD-200D-2640-FE0F", - "non_qualified": "1F9D7-1F3FD-200D-2640", - "image": "1f9d7-1f3fd-200d-2640-fe0f.png", - "sheet_x": 45, - "sheet_y": 18, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false, - "obsoletes": "1F9D7-1F3FD" - }, - "1F3FE": { - "unified": "1F9D7-1F3FE-200D-2640-FE0F", - "non_qualified": "1F9D7-1F3FE-200D-2640", - "image": "1f9d7-1f3fe-200d-2640-fe0f.png", - "sheet_x": 45, - "sheet_y": 19, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false, - "obsoletes": "1F9D7-1F3FE" - }, - "1F3FF": { - "unified": "1F9D7-1F3FF-200D-2640-FE0F", - "non_qualified": "1F9D7-1F3FF-200D-2640", - "image": "1f9d7-1f3ff-200d-2640-fe0f.png", - "sheet_x": 45, - "sheet_y": 20, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false, - "obsoletes": "1F9D7-1F3FF" - } - }, - "obsoletes": "1F9D7" - } - }, - "flag-zm": { - "char": "\ud83c\uddff\ud83c\uddf2", - "key": "flag-zm", - "keywords": ["flag-zm", "Zambia Flag"], - "category": "flags", - "lib": { - "name": "Zambia Flag", - "unified": "1F1FF-1F1F2", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1ff-1f1f2.png", - "sheet_x": 5, - "sheet_y": 22, - "short_name": "flag-zm", - "short_names": ["flag-zm"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 264, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "man_climbing": { - "char": "\ud83e\uddd7\u200d\u2642\ufe0f", - "key": "man_climbing", - "keywords": ["man_climbing", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F9D7-200D-2642-FE0F", - "non_qualified": "1F9D7-200D-2642", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f9d7-200d-2642-fe0f.png", - "sheet_x": 45, - "sheet_y": 21, - "short_name": "man_climbing", - "short_names": ["man_climbing"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 264, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F9D7-1F3FB-200D-2642-FE0F", - "non_qualified": "1F9D7-1F3FB-200D-2642", - "image": "1f9d7-1f3fb-200d-2642-fe0f.png", - "sheet_x": 45, - "sheet_y": 22, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F9D7-1F3FC-200D-2642-FE0F", - "non_qualified": "1F9D7-1F3FC-200D-2642", - "image": "1f9d7-1f3fc-200d-2642-fe0f.png", - "sheet_x": 45, - "sheet_y": 23, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F9D7-1F3FD-200D-2642-FE0F", - "non_qualified": "1F9D7-1F3FD-200D-2642", - "image": "1f9d7-1f3fd-200d-2642-fe0f.png", - "sheet_x": 45, - "sheet_y": 24, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F9D7-1F3FE-200D-2642-FE0F", - "non_qualified": "1F9D7-1F3FE-200D-2642", - "image": "1f9d7-1f3fe-200d-2642-fe0f.png", - "sheet_x": 45, - "sheet_y": 25, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F9D7-1F3FF-200D-2642-FE0F", - "non_qualified": "1F9D7-1F3FF-200D-2642", - "image": "1f9d7-1f3ff-200d-2642-fe0f.png", - "sheet_x": 45, - "sheet_y": 26, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - } - } - } - }, - "flag-zw": { - "char": "\ud83c\uddff\ud83c\uddfc", - "key": "flag-zw", - "keywords": ["flag-zw", "Zimbabwe Flag"], - "category": "flags", - "lib": { - "name": "Zimbabwe Flag", - "unified": "1F1FF-1F1FC", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f1ff-1f1fc.png", - "sheet_x": 5, - "sheet_y": 23, - "short_name": "flag-zw", - "short_names": ["flag-zw"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 265, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "flag-england": { - "char": "\ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc65\udb40\udc6e\udb40\udc67\udb40\udc7f", - "key": "flag-england", - "keywords": ["flag-england", "England Flag"], - "category": "flags", - "lib": { - "name": "England Flag", - "unified": "1F3F4-E0067-E0062-E0065-E006E-E0067-E007F", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f3f4-e0067-e0062-e0065-e006e-e0067-e007f.png", - "sheet_x": 12, - "sheet_y": 5, - "short_name": "flag-england", - "short_names": ["flag-england"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 266, - "added_in": "7.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "woman_in_lotus_position": { - "char": "\ud83e\uddd8\u200d\u2640\ufe0f", - "key": "woman_in_lotus_position", - "keywords": ["woman_in_lotus_position", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F9D8-200D-2640-FE0F", - "non_qualified": "1F9D8-200D-2640", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f9d8-200d-2640-fe0f.png", - "sheet_x": 45, - "sheet_y": 33, - "short_name": "woman_in_lotus_position", - "short_names": ["woman_in_lotus_position"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 266, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F9D8-1F3FB-200D-2640-FE0F", - "non_qualified": "1F9D8-1F3FB-200D-2640", - "image": "1f9d8-1f3fb-200d-2640-fe0f.png", - "sheet_x": 45, - "sheet_y": 34, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false, - "obsoletes": "1F9D8-1F3FB" - }, - "1F3FC": { - "unified": "1F9D8-1F3FC-200D-2640-FE0F", - "non_qualified": "1F9D8-1F3FC-200D-2640", - "image": "1f9d8-1f3fc-200d-2640-fe0f.png", - "sheet_x": 45, - "sheet_y": 35, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false, - "obsoletes": "1F9D8-1F3FC" - }, - "1F3FD": { - "unified": "1F9D8-1F3FD-200D-2640-FE0F", - "non_qualified": "1F9D8-1F3FD-200D-2640", - "image": "1f9d8-1f3fd-200d-2640-fe0f.png", - "sheet_x": 45, - "sheet_y": 36, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false, - "obsoletes": "1F9D8-1F3FD" - }, - "1F3FE": { - "unified": "1F9D8-1F3FE-200D-2640-FE0F", - "non_qualified": "1F9D8-1F3FE-200D-2640", - "image": "1f9d8-1f3fe-200d-2640-fe0f.png", - "sheet_x": 45, - "sheet_y": 37, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false, - "obsoletes": "1F9D8-1F3FE" - }, - "1F3FF": { - "unified": "1F9D8-1F3FF-200D-2640-FE0F", - "non_qualified": "1F9D8-1F3FF-200D-2640", - "image": "1f9d8-1f3ff-200d-2640-fe0f.png", - "sheet_x": 45, - "sheet_y": 38, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false, - "obsoletes": "1F9D8-1F3FF" - } - }, - "obsoletes": "1F9D8" - } - }, - "flag-scotland": { - "char": "\ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc73\udb40\udc63\udb40\udc74\udb40\udc7f", - "key": "flag-scotland", - "keywords": ["flag-scotland", "Scotland Flag"], - "category": "flags", - "lib": { - "name": "Scotland Flag", - "unified": "1F3F4-E0067-E0062-E0073-E0063-E0074-E007F", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f3f4-e0067-e0062-e0073-e0063-e0074-e007f.png", - "sheet_x": 12, - "sheet_y": 6, - "short_name": "flag-scotland", - "short_names": ["flag-scotland"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 267, - "added_in": "7.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "man_in_lotus_position": { - "char": "\ud83e\uddd8\u200d\u2642\ufe0f", - "key": "man_in_lotus_position", - "keywords": ["man_in_lotus_position", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F9D8-200D-2642-FE0F", - "non_qualified": "1F9D8-200D-2642", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f9d8-200d-2642-fe0f.png", - "sheet_x": 45, - "sheet_y": 39, - "short_name": "man_in_lotus_position", - "short_names": ["man_in_lotus_position"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 267, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F9D8-1F3FB-200D-2642-FE0F", - "non_qualified": "1F9D8-1F3FB-200D-2642", - "image": "1f9d8-1f3fb-200d-2642-fe0f.png", - "sheet_x": 45, - "sheet_y": 40, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F9D8-1F3FC-200D-2642-FE0F", - "non_qualified": "1F9D8-1F3FC-200D-2642", - "image": "1f9d8-1f3fc-200d-2642-fe0f.png", - "sheet_x": 45, - "sheet_y": 41, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F9D8-1F3FD-200D-2642-FE0F", - "non_qualified": "1F9D8-1F3FD-200D-2642", - "image": "1f9d8-1f3fd-200d-2642-fe0f.png", - "sheet_x": 45, - "sheet_y": 42, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F9D8-1F3FE-200D-2642-FE0F", - "non_qualified": "1F9D8-1F3FE-200D-2642", - "image": "1f9d8-1f3fe-200d-2642-fe0f.png", - "sheet_x": 45, - "sheet_y": 43, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F9D8-1F3FF-200D-2642-FE0F", - "non_qualified": "1F9D8-1F3FF-200D-2642", - "image": "1f9d8-1f3ff-200d-2642-fe0f.png", - "sheet_x": 45, - "sheet_y": 44, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - } - } - } - }, - "flag-wales": { - "char": "\ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc77\udb40\udc6c\udb40\udc73\udb40\udc7f", - "key": "flag-wales", - "keywords": ["flag-wales", "Wales Flag"], - "category": "flags", - "lib": { - "name": "Wales Flag", - "unified": "1F3F4-E0067-E0062-E0077-E006C-E0073-E007F", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f3f4-e0067-e0062-e0077-e006c-e0073-e007f.png", - "sheet_x": 12, - "sheet_y": 7, - "short_name": "flag-wales", - "short_names": ["flag-wales"], - "text": null, - "texts": null, - "category": "Flags", - "sort_order": 268, - "added_in": "7.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "bath": { - "char": "\ud83d\udec0", - "key": "bath", - "keywords": ["bath", "BATH"], - "category": "people", - "lib": { - "name": "BATH", - "unified": "1F6C0", - "non_qualified": null, - "docomo": "E6F7", - "au": "E5D8", - "softbank": "E13F", - "google": "FE505", - "image": "1f6c0.png", - "sheet_x": 36, - "sheet_y": 49, - "short_name": "bath", - "short_names": ["bath"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 268, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true, - "skin_variations": { - "1F3FB": { - "unified": "1F6C0-1F3FB", - "non_qualified": null, - "image": "1f6c0-1f3fb.png", - "sheet_x": 36, - "sheet_y": 50, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FC": { - "unified": "1F6C0-1F3FC", - "non_qualified": null, - "image": "1f6c0-1f3fc.png", - "sheet_x": 36, - "sheet_y": 51, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FD": { - "unified": "1F6C0-1F3FD", - "non_qualified": null, - "image": "1f6c0-1f3fd.png", - "sheet_x": 36, - "sheet_y": 52, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FE": { - "unified": "1F6C0-1F3FE", - "non_qualified": null, - "image": "1f6c0-1f3fe.png", - "sheet_x": 37, - "sheet_y": 0, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FF": { - "unified": "1F6C0-1F3FF", - "non_qualified": null, - "image": "1f6c0-1f3ff.png", - "sheet_x": 37, - "sheet_y": 1, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - } - } - }, - "sleeping_accommodation": { - "char": "\ud83d\udecc", - "key": "sleeping_accommodation", - "keywords": ["sleeping_accommodation", "SLEEPING ACCOMMODATION"], - "category": "people", - "lib": { - "name": "SLEEPING ACCOMMODATION", - "unified": "1F6CC", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f6cc.png", - "sheet_x": 37, - "sheet_y": 8, - "short_name": "sleeping_accommodation", - "short_names": ["sleeping_accommodation"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 269, - "added_in": "7.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F6CC-1F3FB", - "non_qualified": null, - "image": "1f6cc-1f3fb.png", - "sheet_x": 37, - "sheet_y": 9, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F6CC-1F3FC", - "non_qualified": null, - "image": "1f6cc-1f3fc.png", - "sheet_x": 37, - "sheet_y": 10, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F6CC-1F3FD", - "non_qualified": null, - "image": "1f6cc-1f3fd.png", - "sheet_x": 37, - "sheet_y": 11, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F6CC-1F3FE", - "non_qualified": null, - "image": "1f6cc-1f3fe.png", - "sheet_x": 37, - "sheet_y": 12, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F6CC-1F3FF", - "non_qualified": null, - "image": "1f6cc-1f3ff.png", - "sheet_x": 37, - "sheet_y": 13, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - } - } - }, - "man_in_business_suit_levitating": { - "char": "\ud83d\udd74\ufe0f", - "key": "man_in_business_suit_levitating", - "keywords": ["man_in_business_suit_levitating", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F574-FE0F", - "non_qualified": "1F574", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f574-fe0f.png", - "sheet_x": 29, - "sheet_y": 13, - "short_name": "man_in_business_suit_levitating", - "short_names": ["man_in_business_suit_levitating"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 270, - "added_in": "7.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F574-1F3FB", - "non_qualified": null, - "image": "1f574-1f3fb.png", - "sheet_x": 29, - "sheet_y": 14, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F574-1F3FC", - "non_qualified": null, - "image": "1f574-1f3fc.png", - "sheet_x": 29, - "sheet_y": 15, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F574-1F3FD", - "non_qualified": null, - "image": "1f574-1f3fd.png", - "sheet_x": 29, - "sheet_y": 16, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F574-1F3FE", - "non_qualified": null, - "image": "1f574-1f3fe.png", - "sheet_x": 29, - "sheet_y": 17, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F574-1F3FF", - "non_qualified": null, - "image": "1f574-1f3ff.png", - "sheet_x": 29, - "sheet_y": 18, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - } - } - }, - "speaking_head_in_silhouette": { - "char": "\ud83d\udde3\ufe0f", - "key": "speaking_head_in_silhouette", - "keywords": ["speaking_head_in_silhouette", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F5E3-FE0F", - "non_qualified": "1F5E3", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f5e3-fe0f.png", - "sheet_x": 30, - "sheet_y": 33, - "short_name": "speaking_head_in_silhouette", - "short_names": ["speaking_head_in_silhouette"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 271, - "added_in": "7.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "bust_in_silhouette": { - "char": "\ud83d\udc64", - "key": "bust_in_silhouette", - "keywords": ["bust_in_silhouette", "BUST IN SILHOUETTE"], - "category": "people", - "lib": { - "name": "BUST IN SILHOUETTE", - "unified": "1F464", - "non_qualified": null, - "docomo": "E6B1", - "au": null, - "softbank": null, - "google": "FE19A", - "image": "1f464.png", - "sheet_x": 15, - "sheet_y": 26, - "short_name": "bust_in_silhouette", - "short_names": ["bust_in_silhouette"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 272, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "busts_in_silhouette": { - "char": "\ud83d\udc65", - "key": "busts_in_silhouette", - "keywords": ["busts_in_silhouette", "BUSTS IN SILHOUETTE"], - "category": "people", - "lib": { - "name": "BUSTS IN SILHOUETTE", - "unified": "1F465", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f465.png", - "sheet_x": 15, - "sheet_y": 27, - "short_name": "busts_in_silhouette", - "short_names": ["busts_in_silhouette"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 273, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "fencer": { - "char": "\ud83e\udd3a", - "key": "fencer", - "keywords": ["fencer", "FENCER"], - "category": "people", - "lib": { - "name": "FENCER", - "unified": "1F93A", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f93a.png", - "sheet_x": 41, - "sheet_y": 5, - "short_name": "fencer", - "short_names": ["fencer"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 274, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "horse_racing": { - "char": "\ud83c\udfc7", - "key": "horse_racing", - "keywords": ["horse_racing", "HORSE RACING"], - "category": "people", - "lib": { - "name": "HORSE RACING", - "unified": "1F3C7", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f3c7.png", - "sheet_x": 10, - "sheet_y": 10, - "short_name": "horse_racing", - "short_names": ["horse_racing"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 275, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true, - "skin_variations": { - "1F3FB": { - "unified": "1F3C7-1F3FB", - "non_qualified": null, - "image": "1f3c7-1f3fb.png", - "sheet_x": 10, - "sheet_y": 11, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FC": { - "unified": "1F3C7-1F3FC", - "non_qualified": null, - "image": "1f3c7-1f3fc.png", - "sheet_x": 10, - "sheet_y": 12, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FD": { - "unified": "1F3C7-1F3FD", - "non_qualified": null, - "image": "1f3c7-1f3fd.png", - "sheet_x": 10, - "sheet_y": 13, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FE": { - "unified": "1F3C7-1F3FE", - "non_qualified": null, - "image": "1f3c7-1f3fe.png", - "sheet_x": 10, - "sheet_y": 14, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FF": { - "unified": "1F3C7-1F3FF", - "non_qualified": null, - "image": "1f3c7-1f3ff.png", - "sheet_x": 10, - "sheet_y": 15, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - } - } - }, - "skier": { - "char": "\u26f7\ufe0f", - "key": "skier", - "keywords": ["skier", ""], - "category": "people", - "lib": { - "name": null, - "unified": "26F7-FE0F", - "non_qualified": "26F7", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "26f7-fe0f.png", - "sheet_x": 50, - "sheet_y": 35, - "short_name": "skier", - "short_names": ["skier"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 276, - "added_in": "5.2", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "snowboarder": { - "char": "\ud83c\udfc2", - "key": "snowboarder", - "keywords": ["snowboarder", "SNOWBOARDER"], - "category": "people", - "lib": { - "name": "SNOWBOARDER", - "unified": "1F3C2", - "non_qualified": null, - "docomo": "E712", - "au": "E4B8", - "softbank": null, - "google": "FE7D8", - "image": "1f3c2.png", - "sheet_x": 9, - "sheet_y": 19, - "short_name": "snowboarder", - "short_names": ["snowboarder"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 277, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true, - "skin_variations": { - "1F3FB": { - "unified": "1F3C2-1F3FB", - "non_qualified": null, - "image": "1f3c2-1f3fb.png", - "sheet_x": 9, - "sheet_y": 20, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FC": { - "unified": "1F3C2-1F3FC", - "non_qualified": null, - "image": "1f3c2-1f3fc.png", - "sheet_x": 9, - "sheet_y": 21, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FD": { - "unified": "1F3C2-1F3FD", - "non_qualified": null, - "image": "1f3c2-1f3fd.png", - "sheet_x": 9, - "sheet_y": 22, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FE": { - "unified": "1F3C2-1F3FE", - "non_qualified": null, - "image": "1f3c2-1f3fe.png", - "sheet_x": 9, - "sheet_y": 23, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FF": { - "unified": "1F3C2-1F3FF", - "non_qualified": null, - "image": "1f3c2-1f3ff.png", - "sheet_x": 9, - "sheet_y": 24, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - } - } - }, - "man-golfing": { - "char": "\ud83c\udfcc\ufe0f\u200d\u2642\ufe0f", - "key": "man-golfing", - "keywords": ["man-golfing", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F3CC-FE0F-200D-2642-FE0F", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f3cc-fe0f-200d-2642-fe0f.png", - "sheet_x": 11, - "sheet_y": 7, - "short_name": "man-golfing", - "short_names": ["man-golfing"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 279, - "added_in": "7.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F3CC-1F3FB-200D-2642-FE0F", - "non_qualified": "1F3CC-1F3FB-200D-2642", - "image": "1f3cc-1f3fb-200d-2642-fe0f.png", - "sheet_x": 11, - "sheet_y": 8, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F3CC-1F3FC-200D-2642-FE0F", - "non_qualified": "1F3CC-1F3FC-200D-2642", - "image": "1f3cc-1f3fc-200d-2642-fe0f.png", - "sheet_x": 11, - "sheet_y": 9, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F3CC-1F3FD-200D-2642-FE0F", - "non_qualified": "1F3CC-1F3FD-200D-2642", - "image": "1f3cc-1f3fd-200d-2642-fe0f.png", - "sheet_x": 11, - "sheet_y": 10, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F3CC-1F3FE-200D-2642-FE0F", - "non_qualified": "1F3CC-1F3FE-200D-2642", - "image": "1f3cc-1f3fe-200d-2642-fe0f.png", - "sheet_x": 11, - "sheet_y": 11, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F3CC-1F3FF-200D-2642-FE0F", - "non_qualified": "1F3CC-1F3FF-200D-2642", - "image": "1f3cc-1f3ff-200d-2642-fe0f.png", - "sheet_x": 11, - "sheet_y": 12, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - } - }, - "obsoletes": "1F3CC-FE0F" - } - }, - "woman-golfing": { - "char": "\ud83c\udfcc\ufe0f\u200d\u2640\ufe0f", - "key": "woman-golfing", - "keywords": ["woman-golfing", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F3CC-FE0F-200D-2640-FE0F", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f3cc-fe0f-200d-2640-fe0f.png", - "sheet_x": 11, - "sheet_y": 1, - "short_name": "woman-golfing", - "short_names": ["woman-golfing"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 280, - "added_in": "7.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F3CC-1F3FB-200D-2640-FE0F", - "non_qualified": "1F3CC-1F3FB-200D-2640", - "image": "1f3cc-1f3fb-200d-2640-fe0f.png", - "sheet_x": 11, - "sheet_y": 2, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F3CC-1F3FC-200D-2640-FE0F", - "non_qualified": "1F3CC-1F3FC-200D-2640", - "image": "1f3cc-1f3fc-200d-2640-fe0f.png", - "sheet_x": 11, - "sheet_y": 3, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F3CC-1F3FD-200D-2640-FE0F", - "non_qualified": "1F3CC-1F3FD-200D-2640", - "image": "1f3cc-1f3fd-200d-2640-fe0f.png", - "sheet_x": 11, - "sheet_y": 4, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F3CC-1F3FE-200D-2640-FE0F", - "non_qualified": "1F3CC-1F3FE-200D-2640", - "image": "1f3cc-1f3fe-200d-2640-fe0f.png", - "sheet_x": 11, - "sheet_y": 5, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F3CC-1F3FF-200D-2640-FE0F", - "non_qualified": "1F3CC-1F3FF-200D-2640", - "image": "1f3cc-1f3ff-200d-2640-fe0f.png", - "sheet_x": 11, - "sheet_y": 6, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - } - } - } - }, - "man-surfing": { - "char": "\ud83c\udfc4\u200d\u2642\ufe0f", - "key": "man-surfing", - "keywords": ["man-surfing", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F3C4-200D-2642-FE0F", - "non_qualified": "1F3C4-200D-2642", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f3c4-200d-2642-fe0f.png", - "sheet_x": 9, - "sheet_y": 49, - "short_name": "man-surfing", - "short_names": ["man-surfing"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 282, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F3C4-1F3FB-200D-2642-FE0F", - "non_qualified": "1F3C4-1F3FB-200D-2642", - "image": "1f3c4-1f3fb-200d-2642-fe0f.png", - "sheet_x": 9, - "sheet_y": 50, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F3C4-1F3FC-200D-2642-FE0F", - "non_qualified": "1F3C4-1F3FC-200D-2642", - "image": "1f3c4-1f3fc-200d-2642-fe0f.png", - "sheet_x": 9, - "sheet_y": 51, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F3C4-1F3FD-200D-2642-FE0F", - "non_qualified": "1F3C4-1F3FD-200D-2642", - "image": "1f3c4-1f3fd-200d-2642-fe0f.png", - "sheet_x": 9, - "sheet_y": 52, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F3C4-1F3FE-200D-2642-FE0F", - "non_qualified": "1F3C4-1F3FE-200D-2642", - "image": "1f3c4-1f3fe-200d-2642-fe0f.png", - "sheet_x": 10, - "sheet_y": 0, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F3C4-1F3FF-200D-2642-FE0F", - "non_qualified": "1F3C4-1F3FF-200D-2642", - "image": "1f3c4-1f3ff-200d-2642-fe0f.png", - "sheet_x": 10, - "sheet_y": 1, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - } - }, - "obsoletes": "1F3C4" - } - }, - "woman-surfing": { - "char": "\ud83c\udfc4\u200d\u2640\ufe0f", - "key": "woman-surfing", - "keywords": ["woman-surfing", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F3C4-200D-2640-FE0F", - "non_qualified": "1F3C4-200D-2640", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f3c4-200d-2640-fe0f.png", - "sheet_x": 9, - "sheet_y": 43, - "short_name": "woman-surfing", - "short_names": ["woman-surfing"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 283, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F3C4-1F3FB-200D-2640-FE0F", - "non_qualified": "1F3C4-1F3FB-200D-2640", - "image": "1f3c4-1f3fb-200d-2640-fe0f.png", - "sheet_x": 9, - "sheet_y": 44, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F3C4-1F3FC-200D-2640-FE0F", - "non_qualified": "1F3C4-1F3FC-200D-2640", - "image": "1f3c4-1f3fc-200d-2640-fe0f.png", - "sheet_x": 9, - "sheet_y": 45, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F3C4-1F3FD-200D-2640-FE0F", - "non_qualified": "1F3C4-1F3FD-200D-2640", - "image": "1f3c4-1f3fd-200d-2640-fe0f.png", - "sheet_x": 9, - "sheet_y": 46, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F3C4-1F3FE-200D-2640-FE0F", - "non_qualified": "1F3C4-1F3FE-200D-2640", - "image": "1f3c4-1f3fe-200d-2640-fe0f.png", - "sheet_x": 9, - "sheet_y": 47, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F3C4-1F3FF-200D-2640-FE0F", - "non_qualified": "1F3C4-1F3FF-200D-2640", - "image": "1f3c4-1f3ff-200d-2640-fe0f.png", - "sheet_x": 9, - "sheet_y": 48, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - } - } - } - }, - "man-rowing-boat": { - "char": "\ud83d\udea3\u200d\u2642\ufe0f", - "key": "man-rowing-boat", - "keywords": ["man-rowing-boat", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F6A3-200D-2642-FE0F", - "non_qualified": "1F6A3-200D-2642", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f6a3-200d-2642-fe0f.png", - "sheet_x": 35, - "sheet_y": 11, - "short_name": "man-rowing-boat", - "short_names": ["man-rowing-boat"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 285, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F6A3-1F3FB-200D-2642-FE0F", - "non_qualified": "1F6A3-1F3FB-200D-2642", - "image": "1f6a3-1f3fb-200d-2642-fe0f.png", - "sheet_x": 35, - "sheet_y": 12, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F6A3-1F3FC-200D-2642-FE0F", - "non_qualified": "1F6A3-1F3FC-200D-2642", - "image": "1f6a3-1f3fc-200d-2642-fe0f.png", - "sheet_x": 35, - "sheet_y": 13, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F6A3-1F3FD-200D-2642-FE0F", - "non_qualified": "1F6A3-1F3FD-200D-2642", - "image": "1f6a3-1f3fd-200d-2642-fe0f.png", - "sheet_x": 35, - "sheet_y": 14, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F6A3-1F3FE-200D-2642-FE0F", - "non_qualified": "1F6A3-1F3FE-200D-2642", - "image": "1f6a3-1f3fe-200d-2642-fe0f.png", - "sheet_x": 35, - "sheet_y": 15, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F6A3-1F3FF-200D-2642-FE0F", - "non_qualified": "1F6A3-1F3FF-200D-2642", - "image": "1f6a3-1f3ff-200d-2642-fe0f.png", - "sheet_x": 35, - "sheet_y": 16, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - } - }, - "obsoletes": "1F6A3" - } - }, - "woman-rowing-boat": { - "char": "\ud83d\udea3\u200d\u2640\ufe0f", - "key": "woman-rowing-boat", - "keywords": ["woman-rowing-boat", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F6A3-200D-2640-FE0F", - "non_qualified": "1F6A3-200D-2640", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f6a3-200d-2640-fe0f.png", - "sheet_x": 35, - "sheet_y": 5, - "short_name": "woman-rowing-boat", - "short_names": ["woman-rowing-boat"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 286, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F6A3-1F3FB-200D-2640-FE0F", - "non_qualified": "1F6A3-1F3FB-200D-2640", - "image": "1f6a3-1f3fb-200d-2640-fe0f.png", - "sheet_x": 35, - "sheet_y": 6, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F6A3-1F3FC-200D-2640-FE0F", - "non_qualified": "1F6A3-1F3FC-200D-2640", - "image": "1f6a3-1f3fc-200d-2640-fe0f.png", - "sheet_x": 35, - "sheet_y": 7, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F6A3-1F3FD-200D-2640-FE0F", - "non_qualified": "1F6A3-1F3FD-200D-2640", - "image": "1f6a3-1f3fd-200d-2640-fe0f.png", - "sheet_x": 35, - "sheet_y": 8, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F6A3-1F3FE-200D-2640-FE0F", - "non_qualified": "1F6A3-1F3FE-200D-2640", - "image": "1f6a3-1f3fe-200d-2640-fe0f.png", - "sheet_x": 35, - "sheet_y": 9, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F6A3-1F3FF-200D-2640-FE0F", - "non_qualified": "1F6A3-1F3FF-200D-2640", - "image": "1f6a3-1f3ff-200d-2640-fe0f.png", - "sheet_x": 35, - "sheet_y": 10, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - } - } - } - }, - "man-swimming": { - "char": "\ud83c\udfca\u200d\u2642\ufe0f", - "key": "man-swimming", - "keywords": ["man-swimming", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F3CA-200D-2642-FE0F", - "non_qualified": "1F3CA-200D-2642", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f3ca-200d-2642-fe0f.png", - "sheet_x": 10, - "sheet_y": 24, - "short_name": "man-swimming", - "short_names": ["man-swimming"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 288, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F3CA-1F3FB-200D-2642-FE0F", - "non_qualified": "1F3CA-1F3FB-200D-2642", - "image": "1f3ca-1f3fb-200d-2642-fe0f.png", - "sheet_x": 10, - "sheet_y": 25, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F3CA-1F3FC-200D-2642-FE0F", - "non_qualified": "1F3CA-1F3FC-200D-2642", - "image": "1f3ca-1f3fc-200d-2642-fe0f.png", - "sheet_x": 10, - "sheet_y": 26, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F3CA-1F3FD-200D-2642-FE0F", - "non_qualified": "1F3CA-1F3FD-200D-2642", - "image": "1f3ca-1f3fd-200d-2642-fe0f.png", - "sheet_x": 10, - "sheet_y": 27, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F3CA-1F3FE-200D-2642-FE0F", - "non_qualified": "1F3CA-1F3FE-200D-2642", - "image": "1f3ca-1f3fe-200d-2642-fe0f.png", - "sheet_x": 10, - "sheet_y": 28, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F3CA-1F3FF-200D-2642-FE0F", - "non_qualified": "1F3CA-1F3FF-200D-2642", - "image": "1f3ca-1f3ff-200d-2642-fe0f.png", - "sheet_x": 10, - "sheet_y": 29, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - } - }, - "obsoletes": "1F3CA" - } - }, - "woman-swimming": { - "char": "\ud83c\udfca\u200d\u2640\ufe0f", - "key": "woman-swimming", - "keywords": ["woman-swimming", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F3CA-200D-2640-FE0F", - "non_qualified": "1F3CA-200D-2640", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f3ca-200d-2640-fe0f.png", - "sheet_x": 10, - "sheet_y": 18, - "short_name": "woman-swimming", - "short_names": ["woman-swimming"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 289, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F3CA-1F3FB-200D-2640-FE0F", - "non_qualified": "1F3CA-1F3FB-200D-2640", - "image": "1f3ca-1f3fb-200d-2640-fe0f.png", - "sheet_x": 10, - "sheet_y": 19, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F3CA-1F3FC-200D-2640-FE0F", - "non_qualified": "1F3CA-1F3FC-200D-2640", - "image": "1f3ca-1f3fc-200d-2640-fe0f.png", - "sheet_x": 10, - "sheet_y": 20, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F3CA-1F3FD-200D-2640-FE0F", - "non_qualified": "1F3CA-1F3FD-200D-2640", - "image": "1f3ca-1f3fd-200d-2640-fe0f.png", - "sheet_x": 10, - "sheet_y": 21, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F3CA-1F3FE-200D-2640-FE0F", - "non_qualified": "1F3CA-1F3FE-200D-2640", - "image": "1f3ca-1f3fe-200d-2640-fe0f.png", - "sheet_x": 10, - "sheet_y": 22, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F3CA-1F3FF-200D-2640-FE0F", - "non_qualified": "1F3CA-1F3FF-200D-2640", - "image": "1f3ca-1f3ff-200d-2640-fe0f.png", - "sheet_x": 10, - "sheet_y": 23, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - } - } - } - }, - "man-bouncing-ball": { - "char": "\u26f9\ufe0f\u200d\u2642\ufe0f", - "key": "man-bouncing-ball", - "keywords": ["man-bouncing-ball", ""], - "category": "people", - "lib": { - "name": null, - "unified": "26F9-FE0F-200D-2642-FE0F", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "26f9-fe0f-200d-2642-fe0f.png", - "sheet_x": 50, - "sheet_y": 43, - "short_name": "man-bouncing-ball", - "short_names": ["man-bouncing-ball"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 291, - "added_in": "5.2", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "26F9-1F3FB-200D-2642-FE0F", - "non_qualified": "26F9-1F3FB-200D-2642", - "image": "26f9-1f3fb-200d-2642-fe0f.png", - "sheet_x": 50, - "sheet_y": 44, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "26F9-1F3FC-200D-2642-FE0F", - "non_qualified": "26F9-1F3FC-200D-2642", - "image": "26f9-1f3fc-200d-2642-fe0f.png", - "sheet_x": 50, - "sheet_y": 45, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "26F9-1F3FD-200D-2642-FE0F", - "non_qualified": "26F9-1F3FD-200D-2642", - "image": "26f9-1f3fd-200d-2642-fe0f.png", - "sheet_x": 50, - "sheet_y": 46, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "26F9-1F3FE-200D-2642-FE0F", - "non_qualified": "26F9-1F3FE-200D-2642", - "image": "26f9-1f3fe-200d-2642-fe0f.png", - "sheet_x": 50, - "sheet_y": 47, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "26F9-1F3FF-200D-2642-FE0F", - "non_qualified": "26F9-1F3FF-200D-2642", - "image": "26f9-1f3ff-200d-2642-fe0f.png", - "sheet_x": 50, - "sheet_y": 48, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - } - }, - "obsoletes": "26F9-FE0F" - } - }, - "woman-bouncing-ball": { - "char": "\u26f9\ufe0f\u200d\u2640\ufe0f", - "key": "woman-bouncing-ball", - "keywords": ["woman-bouncing-ball", ""], - "category": "people", - "lib": { - "name": null, - "unified": "26F9-FE0F-200D-2640-FE0F", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "26f9-fe0f-200d-2640-fe0f.png", - "sheet_x": 50, - "sheet_y": 37, - "short_name": "woman-bouncing-ball", - "short_names": ["woman-bouncing-ball"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 292, - "added_in": "5.2", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "26F9-1F3FB-200D-2640-FE0F", - "non_qualified": "26F9-1F3FB-200D-2640", - "image": "26f9-1f3fb-200d-2640-fe0f.png", - "sheet_x": 50, - "sheet_y": 38, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "26F9-1F3FC-200D-2640-FE0F", - "non_qualified": "26F9-1F3FC-200D-2640", - "image": "26f9-1f3fc-200d-2640-fe0f.png", - "sheet_x": 50, - "sheet_y": 39, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "26F9-1F3FD-200D-2640-FE0F", - "non_qualified": "26F9-1F3FD-200D-2640", - "image": "26f9-1f3fd-200d-2640-fe0f.png", - "sheet_x": 50, - "sheet_y": 40, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "26F9-1F3FE-200D-2640-FE0F", - "non_qualified": "26F9-1F3FE-200D-2640", - "image": "26f9-1f3fe-200d-2640-fe0f.png", - "sheet_x": 50, - "sheet_y": 41, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "26F9-1F3FF-200D-2640-FE0F", - "non_qualified": "26F9-1F3FF-200D-2640", - "image": "26f9-1f3ff-200d-2640-fe0f.png", - "sheet_x": 50, - "sheet_y": 42, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - } - } - } - }, - "man-lifting-weights": { - "char": "\ud83c\udfcb\ufe0f\u200d\u2642\ufe0f", - "key": "man-lifting-weights", - "keywords": ["man-lifting-weights", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F3CB-FE0F-200D-2642-FE0F", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f3cb-fe0f-200d-2642-fe0f.png", - "sheet_x": 10, - "sheet_y": 42, - "short_name": "man-lifting-weights", - "short_names": ["man-lifting-weights"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 294, - "added_in": "7.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F3CB-1F3FB-200D-2642-FE0F", - "non_qualified": "1F3CB-1F3FB-200D-2642", - "image": "1f3cb-1f3fb-200d-2642-fe0f.png", - "sheet_x": 10, - "sheet_y": 43, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F3CB-1F3FC-200D-2642-FE0F", - "non_qualified": "1F3CB-1F3FC-200D-2642", - "image": "1f3cb-1f3fc-200d-2642-fe0f.png", - "sheet_x": 10, - "sheet_y": 44, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F3CB-1F3FD-200D-2642-FE0F", - "non_qualified": "1F3CB-1F3FD-200D-2642", - "image": "1f3cb-1f3fd-200d-2642-fe0f.png", - "sheet_x": 10, - "sheet_y": 45, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F3CB-1F3FE-200D-2642-FE0F", - "non_qualified": "1F3CB-1F3FE-200D-2642", - "image": "1f3cb-1f3fe-200d-2642-fe0f.png", - "sheet_x": 10, - "sheet_y": 46, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F3CB-1F3FF-200D-2642-FE0F", - "non_qualified": "1F3CB-1F3FF-200D-2642", - "image": "1f3cb-1f3ff-200d-2642-fe0f.png", - "sheet_x": 10, - "sheet_y": 47, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - } - }, - "obsoletes": "1F3CB-FE0F" - } - }, - "woman-lifting-weights": { - "char": "\ud83c\udfcb\ufe0f\u200d\u2640\ufe0f", - "key": "woman-lifting-weights", - "keywords": ["woman-lifting-weights", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F3CB-FE0F-200D-2640-FE0F", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f3cb-fe0f-200d-2640-fe0f.png", - "sheet_x": 10, - "sheet_y": 36, - "short_name": "woman-lifting-weights", - "short_names": ["woman-lifting-weights"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 295, - "added_in": "7.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F3CB-1F3FB-200D-2640-FE0F", - "non_qualified": "1F3CB-1F3FB-200D-2640", - "image": "1f3cb-1f3fb-200d-2640-fe0f.png", - "sheet_x": 10, - "sheet_y": 37, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F3CB-1F3FC-200D-2640-FE0F", - "non_qualified": "1F3CB-1F3FC-200D-2640", - "image": "1f3cb-1f3fc-200d-2640-fe0f.png", - "sheet_x": 10, - "sheet_y": 38, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F3CB-1F3FD-200D-2640-FE0F", - "non_qualified": "1F3CB-1F3FD-200D-2640", - "image": "1f3cb-1f3fd-200d-2640-fe0f.png", - "sheet_x": 10, - "sheet_y": 39, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F3CB-1F3FE-200D-2640-FE0F", - "non_qualified": "1F3CB-1F3FE-200D-2640", - "image": "1f3cb-1f3fe-200d-2640-fe0f.png", - "sheet_x": 10, - "sheet_y": 40, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F3CB-1F3FF-200D-2640-FE0F", - "non_qualified": "1F3CB-1F3FF-200D-2640", - "image": "1f3cb-1f3ff-200d-2640-fe0f.png", - "sheet_x": 10, - "sheet_y": 41, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - } - } - } - }, - "man-biking": { - "char": "\ud83d\udeb4\u200d\u2642\ufe0f", - "key": "man-biking", - "keywords": ["man-biking", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F6B4-200D-2642-FE0F", - "non_qualified": "1F6B4-200D-2642", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f6b4-200d-2642-fe0f.png", - "sheet_x": 35, - "sheet_y": 45, - "short_name": "man-biking", - "short_names": ["man-biking"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 297, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F6B4-1F3FB-200D-2642-FE0F", - "non_qualified": "1F6B4-1F3FB-200D-2642", - "image": "1f6b4-1f3fb-200d-2642-fe0f.png", - "sheet_x": 35, - "sheet_y": 46, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F6B4-1F3FC-200D-2642-FE0F", - "non_qualified": "1F6B4-1F3FC-200D-2642", - "image": "1f6b4-1f3fc-200d-2642-fe0f.png", - "sheet_x": 35, - "sheet_y": 47, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F6B4-1F3FD-200D-2642-FE0F", - "non_qualified": "1F6B4-1F3FD-200D-2642", - "image": "1f6b4-1f3fd-200d-2642-fe0f.png", - "sheet_x": 35, - "sheet_y": 48, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F6B4-1F3FE-200D-2642-FE0F", - "non_qualified": "1F6B4-1F3FE-200D-2642", - "image": "1f6b4-1f3fe-200d-2642-fe0f.png", - "sheet_x": 35, - "sheet_y": 49, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F6B4-1F3FF-200D-2642-FE0F", - "non_qualified": "1F6B4-1F3FF-200D-2642", - "image": "1f6b4-1f3ff-200d-2642-fe0f.png", - "sheet_x": 35, - "sheet_y": 50, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - } - }, - "obsoletes": "1F6B4" - } - }, - "woman-biking": { - "char": "\ud83d\udeb4\u200d\u2640\ufe0f", - "key": "woman-biking", - "keywords": ["woman-biking", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F6B4-200D-2640-FE0F", - "non_qualified": "1F6B4-200D-2640", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f6b4-200d-2640-fe0f.png", - "sheet_x": 35, - "sheet_y": 39, - "short_name": "woman-biking", - "short_names": ["woman-biking"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 298, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F6B4-1F3FB-200D-2640-FE0F", - "non_qualified": "1F6B4-1F3FB-200D-2640", - "image": "1f6b4-1f3fb-200d-2640-fe0f.png", - "sheet_x": 35, - "sheet_y": 40, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F6B4-1F3FC-200D-2640-FE0F", - "non_qualified": "1F6B4-1F3FC-200D-2640", - "image": "1f6b4-1f3fc-200d-2640-fe0f.png", - "sheet_x": 35, - "sheet_y": 41, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F6B4-1F3FD-200D-2640-FE0F", - "non_qualified": "1F6B4-1F3FD-200D-2640", - "image": "1f6b4-1f3fd-200d-2640-fe0f.png", - "sheet_x": 35, - "sheet_y": 42, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F6B4-1F3FE-200D-2640-FE0F", - "non_qualified": "1F6B4-1F3FE-200D-2640", - "image": "1f6b4-1f3fe-200d-2640-fe0f.png", - "sheet_x": 35, - "sheet_y": 43, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F6B4-1F3FF-200D-2640-FE0F", - "non_qualified": "1F6B4-1F3FF-200D-2640", - "image": "1f6b4-1f3ff-200d-2640-fe0f.png", - "sheet_x": 35, - "sheet_y": 44, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - } - } - } - }, - "man-mountain-biking": { - "char": "\ud83d\udeb5\u200d\u2642\ufe0f", - "key": "man-mountain-biking", - "keywords": ["man-mountain-biking", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F6B5-200D-2642-FE0F", - "non_qualified": "1F6B5-200D-2642", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f6b5-200d-2642-fe0f.png", - "sheet_x": 36, - "sheet_y": 10, - "short_name": "man-mountain-biking", - "short_names": ["man-mountain-biking"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 300, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F6B5-1F3FB-200D-2642-FE0F", - "non_qualified": "1F6B5-1F3FB-200D-2642", - "image": "1f6b5-1f3fb-200d-2642-fe0f.png", - "sheet_x": 36, - "sheet_y": 11, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F6B5-1F3FC-200D-2642-FE0F", - "non_qualified": "1F6B5-1F3FC-200D-2642", - "image": "1f6b5-1f3fc-200d-2642-fe0f.png", - "sheet_x": 36, - "sheet_y": 12, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F6B5-1F3FD-200D-2642-FE0F", - "non_qualified": "1F6B5-1F3FD-200D-2642", - "image": "1f6b5-1f3fd-200d-2642-fe0f.png", - "sheet_x": 36, - "sheet_y": 13, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F6B5-1F3FE-200D-2642-FE0F", - "non_qualified": "1F6B5-1F3FE-200D-2642", - "image": "1f6b5-1f3fe-200d-2642-fe0f.png", - "sheet_x": 36, - "sheet_y": 14, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F6B5-1F3FF-200D-2642-FE0F", - "non_qualified": "1F6B5-1F3FF-200D-2642", - "image": "1f6b5-1f3ff-200d-2642-fe0f.png", - "sheet_x": 36, - "sheet_y": 15, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - } - }, - "obsoletes": "1F6B5" - } - }, - "woman-mountain-biking": { - "char": "\ud83d\udeb5\u200d\u2640\ufe0f", - "key": "woman-mountain-biking", - "keywords": ["woman-mountain-biking", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F6B5-200D-2640-FE0F", - "non_qualified": "1F6B5-200D-2640", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f6b5-200d-2640-fe0f.png", - "sheet_x": 36, - "sheet_y": 4, - "short_name": "woman-mountain-biking", - "short_names": ["woman-mountain-biking"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 301, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F6B5-1F3FB-200D-2640-FE0F", - "non_qualified": "1F6B5-1F3FB-200D-2640", - "image": "1f6b5-1f3fb-200d-2640-fe0f.png", - "sheet_x": 36, - "sheet_y": 5, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F6B5-1F3FC-200D-2640-FE0F", - "non_qualified": "1F6B5-1F3FC-200D-2640", - "image": "1f6b5-1f3fc-200d-2640-fe0f.png", - "sheet_x": 36, - "sheet_y": 6, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F6B5-1F3FD-200D-2640-FE0F", - "non_qualified": "1F6B5-1F3FD-200D-2640", - "image": "1f6b5-1f3fd-200d-2640-fe0f.png", - "sheet_x": 36, - "sheet_y": 7, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F6B5-1F3FE-200D-2640-FE0F", - "non_qualified": "1F6B5-1F3FE-200D-2640", - "image": "1f6b5-1f3fe-200d-2640-fe0f.png", - "sheet_x": 36, - "sheet_y": 8, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F6B5-1F3FF-200D-2640-FE0F", - "non_qualified": "1F6B5-1F3FF-200D-2640", - "image": "1f6b5-1f3ff-200d-2640-fe0f.png", - "sheet_x": 36, - "sheet_y": 9, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - } - } - } - }, - "racing_car": { - "char": "\ud83c\udfce\ufe0f", - "key": "racing_car", - "keywords": ["racing_car", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F3CE-FE0F", - "non_qualified": "1F3CE", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f3ce-fe0f.png", - "sheet_x": 11, - "sheet_y": 20, - "short_name": "racing_car", - "short_names": ["racing_car"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 302, - "added_in": "7.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "racing_motorcycle": { - "char": "\ud83c\udfcd\ufe0f", - "key": "racing_motorcycle", - "keywords": ["racing_motorcycle", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F3CD-FE0F", - "non_qualified": "1F3CD", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f3cd-fe0f.png", - "sheet_x": 11, - "sheet_y": 19, - "short_name": "racing_motorcycle", - "short_names": ["racing_motorcycle"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 303, - "added_in": "7.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "man-cartwheeling": { - "char": "\ud83e\udd38\u200d\u2642\ufe0f", - "key": "man-cartwheeling", - "keywords": ["man-cartwheeling", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F938-200D-2642-FE0F", - "non_qualified": "1F938-200D-2642", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f938-200d-2642-fe0f.png", - "sheet_x": 40, - "sheet_y": 28, - "short_name": "man-cartwheeling", - "short_names": ["man-cartwheeling"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 305, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F938-1F3FB-200D-2642-FE0F", - "non_qualified": "1F938-1F3FB-200D-2642", - "image": "1f938-1f3fb-200d-2642-fe0f.png", - "sheet_x": 40, - "sheet_y": 29, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F938-1F3FC-200D-2642-FE0F", - "non_qualified": "1F938-1F3FC-200D-2642", - "image": "1f938-1f3fc-200d-2642-fe0f.png", - "sheet_x": 40, - "sheet_y": 30, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F938-1F3FD-200D-2642-FE0F", - "non_qualified": "1F938-1F3FD-200D-2642", - "image": "1f938-1f3fd-200d-2642-fe0f.png", - "sheet_x": 40, - "sheet_y": 31, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F938-1F3FE-200D-2642-FE0F", - "non_qualified": "1F938-1F3FE-200D-2642", - "image": "1f938-1f3fe-200d-2642-fe0f.png", - "sheet_x": 40, - "sheet_y": 32, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F938-1F3FF-200D-2642-FE0F", - "non_qualified": "1F938-1F3FF-200D-2642", - "image": "1f938-1f3ff-200d-2642-fe0f.png", - "sheet_x": 40, - "sheet_y": 33, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - } - } - } - }, - "woman-cartwheeling": { - "char": "\ud83e\udd38\u200d\u2640\ufe0f", - "key": "woman-cartwheeling", - "keywords": ["woman-cartwheeling", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F938-200D-2640-FE0F", - "non_qualified": "1F938-200D-2640", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f938-200d-2640-fe0f.png", - "sheet_x": 40, - "sheet_y": 22, - "short_name": "woman-cartwheeling", - "short_names": ["woman-cartwheeling"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 306, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F938-1F3FB-200D-2640-FE0F", - "non_qualified": "1F938-1F3FB-200D-2640", - "image": "1f938-1f3fb-200d-2640-fe0f.png", - "sheet_x": 40, - "sheet_y": 23, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F938-1F3FC-200D-2640-FE0F", - "non_qualified": "1F938-1F3FC-200D-2640", - "image": "1f938-1f3fc-200d-2640-fe0f.png", - "sheet_x": 40, - "sheet_y": 24, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F938-1F3FD-200D-2640-FE0F", - "non_qualified": "1F938-1F3FD-200D-2640", - "image": "1f938-1f3fd-200d-2640-fe0f.png", - "sheet_x": 40, - "sheet_y": 25, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F938-1F3FE-200D-2640-FE0F", - "non_qualified": "1F938-1F3FE-200D-2640", - "image": "1f938-1f3fe-200d-2640-fe0f.png", - "sheet_x": 40, - "sheet_y": 26, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F938-1F3FF-200D-2640-FE0F", - "non_qualified": "1F938-1F3FF-200D-2640", - "image": "1f938-1f3ff-200d-2640-fe0f.png", - "sheet_x": 40, - "sheet_y": 27, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - } - } - } - }, - "man-wrestling": { - "char": "\ud83e\udd3c\u200d\u2642\ufe0f", - "key": "man-wrestling", - "keywords": ["man-wrestling", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F93C-200D-2642-FE0F", - "non_qualified": "1F93C-200D-2642", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f93c-200d-2642-fe0f.png", - "sheet_x": 41, - "sheet_y": 7, - "short_name": "man-wrestling", - "short_names": ["man-wrestling"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 308, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "woman-wrestling": { - "char": "\ud83e\udd3c\u200d\u2640\ufe0f", - "key": "woman-wrestling", - "keywords": ["woman-wrestling", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F93C-200D-2640-FE0F", - "non_qualified": "1F93C-200D-2640", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f93c-200d-2640-fe0f.png", - "sheet_x": 41, - "sheet_y": 6, - "short_name": "woman-wrestling", - "short_names": ["woman-wrestling"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 309, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "man-playing-water-polo": { - "char": "\ud83e\udd3d\u200d\u2642\ufe0f", - "key": "man-playing-water-polo", - "keywords": ["man-playing-water-polo", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F93D-200D-2642-FE0F", - "non_qualified": "1F93D-200D-2642", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f93d-200d-2642-fe0f.png", - "sheet_x": 41, - "sheet_y": 15, - "short_name": "man-playing-water-polo", - "short_names": ["man-playing-water-polo"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 311, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F93D-1F3FB-200D-2642-FE0F", - "non_qualified": "1F93D-1F3FB-200D-2642", - "image": "1f93d-1f3fb-200d-2642-fe0f.png", - "sheet_x": 41, - "sheet_y": 16, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F93D-1F3FC-200D-2642-FE0F", - "non_qualified": "1F93D-1F3FC-200D-2642", - "image": "1f93d-1f3fc-200d-2642-fe0f.png", - "sheet_x": 41, - "sheet_y": 17, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F93D-1F3FD-200D-2642-FE0F", - "non_qualified": "1F93D-1F3FD-200D-2642", - "image": "1f93d-1f3fd-200d-2642-fe0f.png", - "sheet_x": 41, - "sheet_y": 18, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F93D-1F3FE-200D-2642-FE0F", - "non_qualified": "1F93D-1F3FE-200D-2642", - "image": "1f93d-1f3fe-200d-2642-fe0f.png", - "sheet_x": 41, - "sheet_y": 19, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F93D-1F3FF-200D-2642-FE0F", - "non_qualified": "1F93D-1F3FF-200D-2642", - "image": "1f93d-1f3ff-200d-2642-fe0f.png", - "sheet_x": 41, - "sheet_y": 20, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - } - } - } - }, - "woman-playing-water-polo": { - "char": "\ud83e\udd3d\u200d\u2640\ufe0f", - "key": "woman-playing-water-polo", - "keywords": ["woman-playing-water-polo", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F93D-200D-2640-FE0F", - "non_qualified": "1F93D-200D-2640", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f93d-200d-2640-fe0f.png", - "sheet_x": 41, - "sheet_y": 9, - "short_name": "woman-playing-water-polo", - "short_names": ["woman-playing-water-polo"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 312, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F93D-1F3FB-200D-2640-FE0F", - "non_qualified": "1F93D-1F3FB-200D-2640", - "image": "1f93d-1f3fb-200d-2640-fe0f.png", - "sheet_x": 41, - "sheet_y": 10, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F93D-1F3FC-200D-2640-FE0F", - "non_qualified": "1F93D-1F3FC-200D-2640", - "image": "1f93d-1f3fc-200d-2640-fe0f.png", - "sheet_x": 41, - "sheet_y": 11, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F93D-1F3FD-200D-2640-FE0F", - "non_qualified": "1F93D-1F3FD-200D-2640", - "image": "1f93d-1f3fd-200d-2640-fe0f.png", - "sheet_x": 41, - "sheet_y": 12, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F93D-1F3FE-200D-2640-FE0F", - "non_qualified": "1F93D-1F3FE-200D-2640", - "image": "1f93d-1f3fe-200d-2640-fe0f.png", - "sheet_x": 41, - "sheet_y": 13, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F93D-1F3FF-200D-2640-FE0F", - "non_qualified": "1F93D-1F3FF-200D-2640", - "image": "1f93d-1f3ff-200d-2640-fe0f.png", - "sheet_x": 41, - "sheet_y": 14, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - } - } - } - }, - "man-playing-handball": { - "char": "\ud83e\udd3e\u200d\u2642\ufe0f", - "key": "man-playing-handball", - "keywords": ["man-playing-handball", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F93E-200D-2642-FE0F", - "non_qualified": "1F93E-200D-2642", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f93e-200d-2642-fe0f.png", - "sheet_x": 41, - "sheet_y": 33, - "short_name": "man-playing-handball", - "short_names": ["man-playing-handball"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 314, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F93E-1F3FB-200D-2642-FE0F", - "non_qualified": "1F93E-1F3FB-200D-2642", - "image": "1f93e-1f3fb-200d-2642-fe0f.png", - "sheet_x": 41, - "sheet_y": 34, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F93E-1F3FC-200D-2642-FE0F", - "non_qualified": "1F93E-1F3FC-200D-2642", - "image": "1f93e-1f3fc-200d-2642-fe0f.png", - "sheet_x": 41, - "sheet_y": 35, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F93E-1F3FD-200D-2642-FE0F", - "non_qualified": "1F93E-1F3FD-200D-2642", - "image": "1f93e-1f3fd-200d-2642-fe0f.png", - "sheet_x": 41, - "sheet_y": 36, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F93E-1F3FE-200D-2642-FE0F", - "non_qualified": "1F93E-1F3FE-200D-2642", - "image": "1f93e-1f3fe-200d-2642-fe0f.png", - "sheet_x": 41, - "sheet_y": 37, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F93E-1F3FF-200D-2642-FE0F", - "non_qualified": "1F93E-1F3FF-200D-2642", - "image": "1f93e-1f3ff-200d-2642-fe0f.png", - "sheet_x": 41, - "sheet_y": 38, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - } - } - } - }, - "woman-playing-handball": { - "char": "\ud83e\udd3e\u200d\u2640\ufe0f", - "key": "woman-playing-handball", - "keywords": ["woman-playing-handball", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F93E-200D-2640-FE0F", - "non_qualified": "1F93E-200D-2640", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f93e-200d-2640-fe0f.png", - "sheet_x": 41, - "sheet_y": 27, - "short_name": "woman-playing-handball", - "short_names": ["woman-playing-handball"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 315, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F93E-1F3FB-200D-2640-FE0F", - "non_qualified": "1F93E-1F3FB-200D-2640", - "image": "1f93e-1f3fb-200d-2640-fe0f.png", - "sheet_x": 41, - "sheet_y": 28, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F93E-1F3FC-200D-2640-FE0F", - "non_qualified": "1F93E-1F3FC-200D-2640", - "image": "1f93e-1f3fc-200d-2640-fe0f.png", - "sheet_x": 41, - "sheet_y": 29, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F93E-1F3FD-200D-2640-FE0F", - "non_qualified": "1F93E-1F3FD-200D-2640", - "image": "1f93e-1f3fd-200d-2640-fe0f.png", - "sheet_x": 41, - "sheet_y": 30, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F93E-1F3FE-200D-2640-FE0F", - "non_qualified": "1F93E-1F3FE-200D-2640", - "image": "1f93e-1f3fe-200d-2640-fe0f.png", - "sheet_x": 41, - "sheet_y": 31, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F93E-1F3FF-200D-2640-FE0F", - "non_qualified": "1F93E-1F3FF-200D-2640", - "image": "1f93e-1f3ff-200d-2640-fe0f.png", - "sheet_x": 41, - "sheet_y": 32, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - } - } - } - }, - "man-juggling": { - "char": "\ud83e\udd39\u200d\u2642\ufe0f", - "key": "man-juggling", - "keywords": ["man-juggling", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F939-200D-2642-FE0F", - "non_qualified": "1F939-200D-2642", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f939-200d-2642-fe0f.png", - "sheet_x": 40, - "sheet_y": 46, - "short_name": "man-juggling", - "short_names": ["man-juggling"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 317, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F939-1F3FB-200D-2642-FE0F", - "non_qualified": "1F939-1F3FB-200D-2642", - "image": "1f939-1f3fb-200d-2642-fe0f.png", - "sheet_x": 40, - "sheet_y": 47, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F939-1F3FC-200D-2642-FE0F", - "non_qualified": "1F939-1F3FC-200D-2642", - "image": "1f939-1f3fc-200d-2642-fe0f.png", - "sheet_x": 40, - "sheet_y": 48, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F939-1F3FD-200D-2642-FE0F", - "non_qualified": "1F939-1F3FD-200D-2642", - "image": "1f939-1f3fd-200d-2642-fe0f.png", - "sheet_x": 40, - "sheet_y": 49, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F939-1F3FE-200D-2642-FE0F", - "non_qualified": "1F939-1F3FE-200D-2642", - "image": "1f939-1f3fe-200d-2642-fe0f.png", - "sheet_x": 40, - "sheet_y": 50, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F939-1F3FF-200D-2642-FE0F", - "non_qualified": "1F939-1F3FF-200D-2642", - "image": "1f939-1f3ff-200d-2642-fe0f.png", - "sheet_x": 40, - "sheet_y": 51, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - } - } - } - }, - "woman-juggling": { - "char": "\ud83e\udd39\u200d\u2640\ufe0f", - "key": "woman-juggling", - "keywords": ["woman-juggling", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F939-200D-2640-FE0F", - "non_qualified": "1F939-200D-2640", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f939-200d-2640-fe0f.png", - "sheet_x": 40, - "sheet_y": 40, - "short_name": "woman-juggling", - "short_names": ["woman-juggling"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 318, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F939-1F3FB-200D-2640-FE0F", - "non_qualified": "1F939-1F3FB-200D-2640", - "image": "1f939-1f3fb-200d-2640-fe0f.png", - "sheet_x": 40, - "sheet_y": 41, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F939-1F3FC-200D-2640-FE0F", - "non_qualified": "1F939-1F3FC-200D-2640", - "image": "1f939-1f3fc-200d-2640-fe0f.png", - "sheet_x": 40, - "sheet_y": 42, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F939-1F3FD-200D-2640-FE0F", - "non_qualified": "1F939-1F3FD-200D-2640", - "image": "1f939-1f3fd-200d-2640-fe0f.png", - "sheet_x": 40, - "sheet_y": 43, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F939-1F3FE-200D-2640-FE0F", - "non_qualified": "1F939-1F3FE-200D-2640", - "image": "1f939-1f3fe-200d-2640-fe0f.png", - "sheet_x": 40, - "sheet_y": 44, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F939-1F3FF-200D-2640-FE0F", - "non_qualified": "1F939-1F3FF-200D-2640", - "image": "1f939-1f3ff-200d-2640-fe0f.png", - "sheet_x": 40, - "sheet_y": 45, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - } - } - } - }, - "couple": { - "char": "\ud83d\udc6b", - "key": "couple", - "keywords": ["couple", "MAN AND WOMAN HOLDING HANDS"], - "category": "people", - "lib": { - "name": "MAN AND WOMAN HOLDING HANDS", - "unified": "1F46B", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": "E428", - "google": "FE1A0", - "image": "1f46b.png", - "sheet_x": 21, - "sheet_y": 6, - "short_name": "couple", - "short_names": ["couple", "man_and_woman_holding_hands"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 319, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "two_men_holding_hands": { - "char": "\ud83d\udc6c", - "key": "two_men_holding_hands", - "keywords": ["two_men_holding_hands", "TWO MEN HOLDING HANDS"], - "category": "people", - "lib": { - "name": "TWO MEN HOLDING HANDS", - "unified": "1F46C", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f46c.png", - "sheet_x": 21, - "sheet_y": 7, - "short_name": "two_men_holding_hands", - "short_names": ["two_men_holding_hands"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 320, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "two_women_holding_hands": { - "char": "\ud83d\udc6d", - "key": "two_women_holding_hands", - "keywords": ["two_women_holding_hands", "TWO WOMEN HOLDING HANDS"], - "category": "people", - "lib": { - "name": "TWO WOMEN HOLDING HANDS", - "unified": "1F46D", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f46d.png", - "sheet_x": 21, - "sheet_y": 8, - "short_name": "two_women_holding_hands", - "short_names": ["two_women_holding_hands"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 321, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "woman-kiss-man": { - "char": "\ud83d\udc69\u200d\u2764\ufe0f\u200d\ud83d\udc8b\u200d\ud83d\udc68", - "key": "woman-kiss-man", - "keywords": ["woman-kiss-man", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F469-200D-2764-FE0F-200D-1F48B-200D-1F468", - "non_qualified": "1F469-200D-2764-200D-1F48B-200D-1F468", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f469-200d-2764-fe0f-200d-1f48b-200d-1f468.png", - "sheet_x": 20, - "sheet_y": 50, - "short_name": "woman-kiss-man", - "short_names": ["woman-kiss-man"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 323, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "obsoletes": "1F48F" - } - }, - "man-kiss-man": { - "char": "\ud83d\udc68\u200d\u2764\ufe0f\u200d\ud83d\udc8b\u200d\ud83d\udc68", - "key": "man-kiss-man", - "keywords": ["man-kiss-man", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F468-200D-2764-FE0F-200D-1F48B-200D-1F468", - "non_qualified": "1F468-200D-2764-200D-1F48B-200D-1F468", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f468-200d-2764-fe0f-200d-1f48b-200d-1f468.png", - "sheet_x": 18, - "sheet_y": 17, - "short_name": "man-kiss-man", - "short_names": ["man-kiss-man"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 324, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "woman-kiss-woman": { - "char": "\ud83d\udc69\u200d\u2764\ufe0f\u200d\ud83d\udc8b\u200d\ud83d\udc69", - "key": "woman-kiss-woman", - "keywords": ["woman-kiss-woman", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F469-200D-2764-FE0F-200D-1F48B-200D-1F469", - "non_qualified": "1F469-200D-2764-200D-1F48B-200D-1F469", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f469-200d-2764-fe0f-200d-1f48b-200d-1f469.png", - "sheet_x": 20, - "sheet_y": 51, - "short_name": "woman-kiss-woman", - "short_names": ["woman-kiss-woman"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 325, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "woman-heart-man": { - "char": "\ud83d\udc69\u200d\u2764\ufe0f\u200d\ud83d\udc68", - "key": "woman-heart-man", - "keywords": ["woman-heart-man", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F469-200D-2764-FE0F-200D-1F468", - "non_qualified": "1F469-200D-2764-200D-1F468", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f469-200d-2764-fe0f-200d-1f468.png", - "sheet_x": 20, - "sheet_y": 48, - "short_name": "woman-heart-man", - "short_names": ["woman-heart-man"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 327, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "obsoletes": "1F491" - } - }, - "man-heart-man": { - "char": "\ud83d\udc68\u200d\u2764\ufe0f\u200d\ud83d\udc68", - "key": "man-heart-man", - "keywords": ["man-heart-man", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F468-200D-2764-FE0F-200D-1F468", - "non_qualified": "1F468-200D-2764-200D-1F468", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f468-200d-2764-fe0f-200d-1f468.png", - "sheet_x": 18, - "sheet_y": 16, - "short_name": "man-heart-man", - "short_names": ["man-heart-man"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 328, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "woman-heart-woman": { - "char": "\ud83d\udc69\u200d\u2764\ufe0f\u200d\ud83d\udc69", - "key": "woman-heart-woman", - "keywords": ["woman-heart-woman", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F469-200D-2764-FE0F-200D-1F469", - "non_qualified": "1F469-200D-2764-200D-1F469", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f469-200d-2764-fe0f-200d-1f469.png", - "sheet_x": 20, - "sheet_y": 49, - "short_name": "woman-heart-woman", - "short_names": ["woman-heart-woman"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 329, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "man-woman-boy": { - "char": "\ud83d\udc68\u200d\ud83d\udc69\u200d\ud83d\udc66", - "key": "man-woman-boy", - "keywords": ["man-woman-boy", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F468-200D-1F469-200D-1F466", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f468-200d-1f469-200d-1f466.png", - "sheet_x": 16, - "sheet_y": 39, - "short_name": "man-woman-boy", - "short_names": ["man-woman-boy", "family"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 331, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true, - "obsoletes": "1F46A" - } - }, - "man-woman-girl": { - "char": "\ud83d\udc68\u200d\ud83d\udc69\u200d\ud83d\udc67", - "key": "man-woman-girl", - "keywords": ["man-woman-girl", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F468-200D-1F469-200D-1F467", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f468-200d-1f469-200d-1f467.png", - "sheet_x": 16, - "sheet_y": 41, - "short_name": "man-woman-girl", - "short_names": ["man-woman-girl"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 332, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "man-woman-girl-boy": { - "char": "\ud83d\udc68\u200d\ud83d\udc69\u200d\ud83d\udc67\u200d\ud83d\udc66", - "key": "man-woman-girl-boy", - "keywords": ["man-woman-girl-boy", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F468-200D-1F469-200D-1F467-200D-1F466", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f468-200d-1f469-200d-1f467-200d-1f466.png", - "sheet_x": 16, - "sheet_y": 42, - "short_name": "man-woman-girl-boy", - "short_names": ["man-woman-girl-boy"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 333, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "man-woman-boy-boy": { - "char": "\ud83d\udc68\u200d\ud83d\udc69\u200d\ud83d\udc66\u200d\ud83d\udc66", - "key": "man-woman-boy-boy", - "keywords": ["man-woman-boy-boy", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F468-200D-1F469-200D-1F466-200D-1F466", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f468-200d-1f469-200d-1f466-200d-1f466.png", - "sheet_x": 16, - "sheet_y": 40, - "short_name": "man-woman-boy-boy", - "short_names": ["man-woman-boy-boy"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 334, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "man-woman-girl-girl": { - "char": "\ud83d\udc68\u200d\ud83d\udc69\u200d\ud83d\udc67\u200d\ud83d\udc67", - "key": "man-woman-girl-girl", - "keywords": ["man-woman-girl-girl", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F468-200D-1F469-200D-1F467-200D-1F467", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f468-200d-1f469-200d-1f467-200d-1f467.png", - "sheet_x": 16, - "sheet_y": 43, - "short_name": "man-woman-girl-girl", - "short_names": ["man-woman-girl-girl"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 335, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "man-man-boy": { - "char": "\ud83d\udc68\u200d\ud83d\udc68\u200d\ud83d\udc66", - "key": "man-man-boy", - "keywords": ["man-man-boy", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F468-200D-1F468-200D-1F466", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f468-200d-1f468-200d-1f466.png", - "sheet_x": 16, - "sheet_y": 34, - "short_name": "man-man-boy", - "short_names": ["man-man-boy"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 336, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "man-man-girl": { - "char": "\ud83d\udc68\u200d\ud83d\udc68\u200d\ud83d\udc67", - "key": "man-man-girl", - "keywords": ["man-man-girl", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F468-200D-1F468-200D-1F467", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f468-200d-1f468-200d-1f467.png", - "sheet_x": 16, - "sheet_y": 36, - "short_name": "man-man-girl", - "short_names": ["man-man-girl"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 337, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "man-man-girl-boy": { - "char": "\ud83d\udc68\u200d\ud83d\udc68\u200d\ud83d\udc67\u200d\ud83d\udc66", - "key": "man-man-girl-boy", - "keywords": ["man-man-girl-boy", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F468-200D-1F468-200D-1F467-200D-1F466", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f468-200d-1f468-200d-1f467-200d-1f466.png", - "sheet_x": 16, - "sheet_y": 37, - "short_name": "man-man-girl-boy", - "short_names": ["man-man-girl-boy"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 338, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "man-man-boy-boy": { - "char": "\ud83d\udc68\u200d\ud83d\udc68\u200d\ud83d\udc66\u200d\ud83d\udc66", - "key": "man-man-boy-boy", - "keywords": ["man-man-boy-boy", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F468-200D-1F468-200D-1F466-200D-1F466", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f468-200d-1f468-200d-1f466-200d-1f466.png", - "sheet_x": 16, - "sheet_y": 35, - "short_name": "man-man-boy-boy", - "short_names": ["man-man-boy-boy"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 339, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "man-man-girl-girl": { - "char": "\ud83d\udc68\u200d\ud83d\udc68\u200d\ud83d\udc67\u200d\ud83d\udc67", - "key": "man-man-girl-girl", - "keywords": ["man-man-girl-girl", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F468-200D-1F468-200D-1F467-200D-1F467", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f468-200d-1f468-200d-1f467-200d-1f467.png", - "sheet_x": 16, - "sheet_y": 38, - "short_name": "man-man-girl-girl", - "short_names": ["man-man-girl-girl"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 340, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "woman-woman-boy": { - "char": "\ud83d\udc69\u200d\ud83d\udc69\u200d\ud83d\udc66", - "key": "woman-woman-boy", - "keywords": ["woman-woman-boy", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F469-200D-1F469-200D-1F466", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f469-200d-1f469-200d-1f466.png", - "sheet_x": 19, - "sheet_y": 18, - "short_name": "woman-woman-boy", - "short_names": ["woman-woman-boy"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 341, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "woman-woman-girl": { - "char": "\ud83d\udc69\u200d\ud83d\udc69\u200d\ud83d\udc67", - "key": "woman-woman-girl", - "keywords": ["woman-woman-girl", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F469-200D-1F469-200D-1F467", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f469-200d-1f469-200d-1f467.png", - "sheet_x": 19, - "sheet_y": 20, - "short_name": "woman-woman-girl", - "short_names": ["woman-woman-girl"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 342, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "woman-woman-girl-boy": { - "char": "\ud83d\udc69\u200d\ud83d\udc69\u200d\ud83d\udc67\u200d\ud83d\udc66", - "key": "woman-woman-girl-boy", - "keywords": ["woman-woman-girl-boy", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F469-200D-1F469-200D-1F467-200D-1F466", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f469-200d-1f469-200d-1f467-200d-1f466.png", - "sheet_x": 19, - "sheet_y": 21, - "short_name": "woman-woman-girl-boy", - "short_names": ["woman-woman-girl-boy"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 343, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "woman-woman-boy-boy": { - "char": "\ud83d\udc69\u200d\ud83d\udc69\u200d\ud83d\udc66\u200d\ud83d\udc66", - "key": "woman-woman-boy-boy", - "keywords": ["woman-woman-boy-boy", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F469-200D-1F469-200D-1F466-200D-1F466", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f469-200d-1f469-200d-1f466-200d-1f466.png", - "sheet_x": 19, - "sheet_y": 19, - "short_name": "woman-woman-boy-boy", - "short_names": ["woman-woman-boy-boy"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 344, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "woman-woman-girl-girl": { - "char": "\ud83d\udc69\u200d\ud83d\udc69\u200d\ud83d\udc67\u200d\ud83d\udc67", - "key": "woman-woman-girl-girl", - "keywords": ["woman-woman-girl-girl", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F469-200D-1F469-200D-1F467-200D-1F467", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f469-200d-1f469-200d-1f467-200d-1f467.png", - "sheet_x": 19, - "sheet_y": 22, - "short_name": "woman-woman-girl-girl", - "short_names": ["woman-woman-girl-girl"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 345, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "man-boy": { - "char": "\ud83d\udc68\u200d\ud83d\udc66", - "key": "man-boy", - "keywords": ["man-boy", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F468-200D-1F466", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f468-200d-1f466.png", - "sheet_x": 16, - "sheet_y": 30, - "short_name": "man-boy", - "short_names": ["man-boy"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 346, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "man-boy-boy": { - "char": "\ud83d\udc68\u200d\ud83d\udc66\u200d\ud83d\udc66", - "key": "man-boy-boy", - "keywords": ["man-boy-boy", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F468-200D-1F466-200D-1F466", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f468-200d-1f466-200d-1f466.png", - "sheet_x": 16, - "sheet_y": 29, - "short_name": "man-boy-boy", - "short_names": ["man-boy-boy"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 347, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "man-girl": { - "char": "\ud83d\udc68\u200d\ud83d\udc67", - "key": "man-girl", - "keywords": ["man-girl", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F468-200D-1F467", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f468-200d-1f467.png", - "sheet_x": 16, - "sheet_y": 33, - "short_name": "man-girl", - "short_names": ["man-girl"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 348, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "man-girl-boy": { - "char": "\ud83d\udc68\u200d\ud83d\udc67\u200d\ud83d\udc66", - "key": "man-girl-boy", - "keywords": ["man-girl-boy", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F468-200D-1F467-200D-1F466", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f468-200d-1f467-200d-1f466.png", - "sheet_x": 16, - "sheet_y": 31, - "short_name": "man-girl-boy", - "short_names": ["man-girl-boy"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 349, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "man-girl-girl": { - "char": "\ud83d\udc68\u200d\ud83d\udc67\u200d\ud83d\udc67", - "key": "man-girl-girl", - "keywords": ["man-girl-girl", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F468-200D-1F467-200D-1F467", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f468-200d-1f467-200d-1f467.png", - "sheet_x": 16, - "sheet_y": 32, - "short_name": "man-girl-girl", - "short_names": ["man-girl-girl"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 350, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "woman-boy": { - "char": "\ud83d\udc69\u200d\ud83d\udc66", - "key": "woman-boy", - "keywords": ["woman-boy", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F469-200D-1F466", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f469-200d-1f466.png", - "sheet_x": 19, - "sheet_y": 14, - "short_name": "woman-boy", - "short_names": ["woman-boy"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 351, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "woman-boy-boy": { - "char": "\ud83d\udc69\u200d\ud83d\udc66\u200d\ud83d\udc66", - "key": "woman-boy-boy", - "keywords": ["woman-boy-boy", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F469-200D-1F466-200D-1F466", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f469-200d-1f466-200d-1f466.png", - "sheet_x": 19, - "sheet_y": 13, - "short_name": "woman-boy-boy", - "short_names": ["woman-boy-boy"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 352, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "woman-girl": { - "char": "\ud83d\udc69\u200d\ud83d\udc67", - "key": "woman-girl", - "keywords": ["woman-girl", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F469-200D-1F467", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f469-200d-1f467.png", - "sheet_x": 19, - "sheet_y": 17, - "short_name": "woman-girl", - "short_names": ["woman-girl"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 353, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "woman-girl-boy": { - "char": "\ud83d\udc69\u200d\ud83d\udc67\u200d\ud83d\udc66", - "key": "woman-girl-boy", - "keywords": ["woman-girl-boy", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F469-200D-1F467-200D-1F466", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f469-200d-1f467-200d-1f466.png", - "sheet_x": 19, - "sheet_y": 15, - "short_name": "woman-girl-boy", - "short_names": ["woman-girl-boy"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 354, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "woman-girl-girl": { - "char": "\ud83d\udc69\u200d\ud83d\udc67\u200d\ud83d\udc67", - "key": "woman-girl-girl", - "keywords": ["woman-girl-girl", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F469-200D-1F467-200D-1F467", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f469-200d-1f467-200d-1f467.png", - "sheet_x": 19, - "sheet_y": 16, - "short_name": "woman-girl-girl", - "short_names": ["woman-girl-girl"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 355, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "selfie": { - "char": "\ud83e\udd33", - "key": "selfie", - "keywords": ["selfie", "SELFIE"], - "category": "people", - "lib": { - "name": "SELFIE", - "unified": "1F933", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f933.png", - "sheet_x": 39, - "sheet_y": 33, - "short_name": "selfie", - "short_names": ["selfie"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 356, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F933-1F3FB", - "non_qualified": null, - "image": "1f933-1f3fb.png", - "sheet_x": 39, - "sheet_y": 34, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F933-1F3FC", - "non_qualified": null, - "image": "1f933-1f3fc.png", - "sheet_x": 39, - "sheet_y": 35, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F933-1F3FD", - "non_qualified": null, - "image": "1f933-1f3fd.png", - "sheet_x": 39, - "sheet_y": 36, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F933-1F3FE", - "non_qualified": null, - "image": "1f933-1f3fe.png", - "sheet_x": 39, - "sheet_y": 37, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F933-1F3FF", - "non_qualified": null, - "image": "1f933-1f3ff.png", - "sheet_x": 39, - "sheet_y": 38, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - } - } - }, - "muscle": { - "char": "\ud83d\udcaa", - "key": "muscle", - "keywords": ["muscle", "FLEXED BICEPS"], - "category": "people", - "lib": { - "name": "FLEXED BICEPS", - "unified": "1F4AA", - "non_qualified": null, - "docomo": null, - "au": "E4E9", - "softbank": "E14C", - "google": "FEB5E", - "image": "1f4aa.png", - "sheet_x": 25, - "sheet_y": 40, - "short_name": "muscle", - "short_names": ["muscle"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 357, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true, - "skin_variations": { - "1F3FB": { - "unified": "1F4AA-1F3FB", - "non_qualified": null, - "image": "1f4aa-1f3fb.png", - "sheet_x": 25, - "sheet_y": 41, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FC": { - "unified": "1F4AA-1F3FC", - "non_qualified": null, - "image": "1f4aa-1f3fc.png", - "sheet_x": 25, - "sheet_y": 42, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FD": { - "unified": "1F4AA-1F3FD", - "non_qualified": null, - "image": "1f4aa-1f3fd.png", - "sheet_x": 25, - "sheet_y": 43, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FE": { - "unified": "1F4AA-1F3FE", - "non_qualified": null, - "image": "1f4aa-1f3fe.png", - "sheet_x": 25, - "sheet_y": 44, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FF": { - "unified": "1F4AA-1F3FF", - "non_qualified": null, - "image": "1f4aa-1f3ff.png", - "sheet_x": 25, - "sheet_y": 45, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - } - } - }, - "leg": { - "char": "\ud83e\uddb5", - "key": "leg", - "keywords": ["leg", "LEG"], - "category": "people", - "lib": { - "name": "LEG", - "unified": "1F9B5", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f9b5.png", - "sheet_x": 43, - "sheet_y": 32, - "short_name": "leg", - "short_names": ["leg"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 358, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F9B5-1F3FB", - "non_qualified": null, - "image": "1f9b5-1f3fb.png", - "sheet_x": 43, - "sheet_y": 33, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F9B5-1F3FC", - "non_qualified": null, - "image": "1f9b5-1f3fc.png", - "sheet_x": 43, - "sheet_y": 34, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F9B5-1F3FD", - "non_qualified": null, - "image": "1f9b5-1f3fd.png", - "sheet_x": 43, - "sheet_y": 35, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F9B5-1F3FE", - "non_qualified": null, - "image": "1f9b5-1f3fe.png", - "sheet_x": 43, - "sheet_y": 36, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F9B5-1F3FF", - "non_qualified": null, - "image": "1f9b5-1f3ff.png", - "sheet_x": 43, - "sheet_y": 37, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - } - } - } - }, - "foot": { - "char": "\ud83e\uddb6", - "key": "foot", - "keywords": ["foot", "FOOT"], - "category": "people", - "lib": { - "name": "FOOT", - "unified": "1F9B6", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f9b6.png", - "sheet_x": 43, - "sheet_y": 38, - "short_name": "foot", - "short_names": ["foot"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 359, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F9B6-1F3FB", - "non_qualified": null, - "image": "1f9b6-1f3fb.png", - "sheet_x": 43, - "sheet_y": 39, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F9B6-1F3FC", - "non_qualified": null, - "image": "1f9b6-1f3fc.png", - "sheet_x": 43, - "sheet_y": 40, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F9B6-1F3FD", - "non_qualified": null, - "image": "1f9b6-1f3fd.png", - "sheet_x": 43, - "sheet_y": 41, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F9B6-1F3FE", - "non_qualified": null, - "image": "1f9b6-1f3fe.png", - "sheet_x": 43, - "sheet_y": 42, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F9B6-1F3FF", - "non_qualified": null, - "image": "1f9b6-1f3ff.png", - "sheet_x": 43, - "sheet_y": 43, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - } - } - } - }, - "point_left": { - "char": "\ud83d\udc48", - "key": "point_left", - "keywords": ["point_left", "WHITE LEFT POINTING BACKHAND INDEX"], - "category": "people", - "lib": { - "name": "WHITE LEFT POINTING BACKHAND INDEX", - "unified": "1F448", - "non_qualified": null, - "docomo": null, - "au": "E4FF", - "softbank": "E230", - "google": "FEB9B", - "image": "1f448.png", - "sheet_x": 14, - "sheet_y": 6, - "short_name": "point_left", - "short_names": ["point_left"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 360, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true, - "skin_variations": { - "1F3FB": { - "unified": "1F448-1F3FB", - "non_qualified": null, - "image": "1f448-1f3fb.png", - "sheet_x": 14, - "sheet_y": 7, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FC": { - "unified": "1F448-1F3FC", - "non_qualified": null, - "image": "1f448-1f3fc.png", - "sheet_x": 14, - "sheet_y": 8, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FD": { - "unified": "1F448-1F3FD", - "non_qualified": null, - "image": "1f448-1f3fd.png", - "sheet_x": 14, - "sheet_y": 9, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FE": { - "unified": "1F448-1F3FE", - "non_qualified": null, - "image": "1f448-1f3fe.png", - "sheet_x": 14, - "sheet_y": 10, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FF": { - "unified": "1F448-1F3FF", - "non_qualified": null, - "image": "1f448-1f3ff.png", - "sheet_x": 14, - "sheet_y": 11, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - } - } - }, - "point_right": { - "char": "\ud83d\udc49", - "key": "point_right", - "keywords": ["point_right", "WHITE RIGHT POINTING BACKHAND INDEX"], - "category": "people", - "lib": { - "name": "WHITE RIGHT POINTING BACKHAND INDEX", - "unified": "1F449", - "non_qualified": null, - "docomo": null, - "au": "E500", - "softbank": "E231", - "google": "FEB9C", - "image": "1f449.png", - "sheet_x": 14, - "sheet_y": 12, - "short_name": "point_right", - "short_names": ["point_right"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 361, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true, - "skin_variations": { - "1F3FB": { - "unified": "1F449-1F3FB", - "non_qualified": null, - "image": "1f449-1f3fb.png", - "sheet_x": 14, - "sheet_y": 13, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FC": { - "unified": "1F449-1F3FC", - "non_qualified": null, - "image": "1f449-1f3fc.png", - "sheet_x": 14, - "sheet_y": 14, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FD": { - "unified": "1F449-1F3FD", - "non_qualified": null, - "image": "1f449-1f3fd.png", - "sheet_x": 14, - "sheet_y": 15, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FE": { - "unified": "1F449-1F3FE", - "non_qualified": null, - "image": "1f449-1f3fe.png", - "sheet_x": 14, - "sheet_y": 16, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FF": { - "unified": "1F449-1F3FF", - "non_qualified": null, - "image": "1f449-1f3ff.png", - "sheet_x": 14, - "sheet_y": 17, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - } - } - }, - "point_up": { - "char": "\u261d\ufe0f", - "key": "point_up", - "keywords": ["point_up", "WHITE UP POINTING INDEX"], - "category": "people", - "lib": { - "name": "WHITE UP POINTING INDEX", - "unified": "261D-FE0F", - "non_qualified": "261D", - "docomo": null, - "au": "E4F6", - "softbank": "E00F", - "google": "FEB98", - "image": "261d-fe0f.png", - "sheet_x": 49, - "sheet_y": 16, - "short_name": "point_up", - "short_names": ["point_up"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 362, - "added_in": "1.1", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true, - "skin_variations": { - "1F3FB": { - "unified": "261D-1F3FB", - "non_qualified": null, - "image": "261d-1f3fb.png", - "sheet_x": 49, - "sheet_y": 17, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FC": { - "unified": "261D-1F3FC", - "non_qualified": null, - "image": "261d-1f3fc.png", - "sheet_x": 49, - "sheet_y": 18, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FD": { - "unified": "261D-1F3FD", - "non_qualified": null, - "image": "261d-1f3fd.png", - "sheet_x": 49, - "sheet_y": 19, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FE": { - "unified": "261D-1F3FE", - "non_qualified": null, - "image": "261d-1f3fe.png", - "sheet_x": 49, - "sheet_y": 20, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FF": { - "unified": "261D-1F3FF", - "non_qualified": null, - "image": "261d-1f3ff.png", - "sheet_x": 49, - "sheet_y": 21, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - } - } - }, - "point_up_2": { - "char": "\ud83d\udc46", - "key": "point_up_2", - "keywords": ["point_up_2", "WHITE UP POINTING BACKHAND INDEX"], - "category": "people", - "lib": { - "name": "WHITE UP POINTING BACKHAND INDEX", - "unified": "1F446", - "non_qualified": null, - "docomo": null, - "au": "EA8D", - "softbank": "E22E", - "google": "FEB99", - "image": "1f446.png", - "sheet_x": 13, - "sheet_y": 47, - "short_name": "point_up_2", - "short_names": ["point_up_2"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 363, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true, - "skin_variations": { - "1F3FB": { - "unified": "1F446-1F3FB", - "non_qualified": null, - "image": "1f446-1f3fb.png", - "sheet_x": 13, - "sheet_y": 48, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FC": { - "unified": "1F446-1F3FC", - "non_qualified": null, - "image": "1f446-1f3fc.png", - "sheet_x": 13, - "sheet_y": 49, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FD": { - "unified": "1F446-1F3FD", - "non_qualified": null, - "image": "1f446-1f3fd.png", - "sheet_x": 13, - "sheet_y": 50, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FE": { - "unified": "1F446-1F3FE", - "non_qualified": null, - "image": "1f446-1f3fe.png", - "sheet_x": 13, - "sheet_y": 51, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FF": { - "unified": "1F446-1F3FF", - "non_qualified": null, - "image": "1f446-1f3ff.png", - "sheet_x": 13, - "sheet_y": 52, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - } - } - }, - "middle_finger": { - "char": "\ud83d\udd95", - "key": "middle_finger", - "keywords": ["middle_finger", "REVERSED HAND WITH MIDDLE FINGER EXTENDED"], - "category": "people", - "lib": { - "name": "REVERSED HAND WITH MIDDLE FINGER EXTENDED", - "unified": "1F595", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f595.png", - "sheet_x": 30, - "sheet_y": 5, - "short_name": "middle_finger", - "short_names": ["middle_finger", "reversed_hand_with_middle_finger_extended"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 364, - "added_in": "7.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F595-1F3FB", - "non_qualified": null, - "image": "1f595-1f3fb.png", - "sheet_x": 30, - "sheet_y": 6, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F595-1F3FC", - "non_qualified": null, - "image": "1f595-1f3fc.png", - "sheet_x": 30, - "sheet_y": 7, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F595-1F3FD", - "non_qualified": null, - "image": "1f595-1f3fd.png", - "sheet_x": 30, - "sheet_y": 8, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F595-1F3FE", - "non_qualified": null, - "image": "1f595-1f3fe.png", - "sheet_x": 30, - "sheet_y": 9, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F595-1F3FF", - "non_qualified": null, - "image": "1f595-1f3ff.png", - "sheet_x": 30, - "sheet_y": 10, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - } - } - }, - "point_down": { - "char": "\ud83d\udc47", - "key": "point_down", - "keywords": ["point_down", "WHITE DOWN POINTING BACKHAND INDEX"], - "category": "people", - "lib": { - "name": "WHITE DOWN POINTING BACKHAND INDEX", - "unified": "1F447", - "non_qualified": null, - "docomo": null, - "au": "EA8E", - "softbank": "E22F", - "google": "FEB9A", - "image": "1f447.png", - "sheet_x": 14, - "sheet_y": 0, - "short_name": "point_down", - "short_names": ["point_down"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 365, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true, - "skin_variations": { - "1F3FB": { - "unified": "1F447-1F3FB", - "non_qualified": null, - "image": "1f447-1f3fb.png", - "sheet_x": 14, - "sheet_y": 1, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FC": { - "unified": "1F447-1F3FC", - "non_qualified": null, - "image": "1f447-1f3fc.png", - "sheet_x": 14, - "sheet_y": 2, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FD": { - "unified": "1F447-1F3FD", - "non_qualified": null, - "image": "1f447-1f3fd.png", - "sheet_x": 14, - "sheet_y": 3, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FE": { - "unified": "1F447-1F3FE", - "non_qualified": null, - "image": "1f447-1f3fe.png", - "sheet_x": 14, - "sheet_y": 4, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FF": { - "unified": "1F447-1F3FF", - "non_qualified": null, - "image": "1f447-1f3ff.png", - "sheet_x": 14, - "sheet_y": 5, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - } - } - }, - "v": { - "char": "\u270c\ufe0f", - "key": "v", - "keywords": ["v", "VICTORY HAND"], - "category": "people", - "lib": { - "name": "VICTORY HAND", - "unified": "270C-FE0F", - "non_qualified": "270C", - "docomo": "E694", - "au": "E5A6", - "softbank": "E011", - "google": "FEB94", - "image": "270c-fe0f.png", - "sheet_x": 51, - "sheet_y": 20, - "short_name": "v", - "short_names": ["v"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 366, - "added_in": "1.1", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true, - "skin_variations": { - "1F3FB": { - "unified": "270C-1F3FB", - "non_qualified": null, - "image": "270c-1f3fb.png", - "sheet_x": 51, - "sheet_y": 21, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FC": { - "unified": "270C-1F3FC", - "non_qualified": null, - "image": "270c-1f3fc.png", - "sheet_x": 51, - "sheet_y": 22, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FD": { - "unified": "270C-1F3FD", - "non_qualified": null, - "image": "270c-1f3fd.png", - "sheet_x": 51, - "sheet_y": 23, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FE": { - "unified": "270C-1F3FE", - "non_qualified": null, - "image": "270c-1f3fe.png", - "sheet_x": 51, - "sheet_y": 24, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FF": { - "unified": "270C-1F3FF", - "non_qualified": null, - "image": "270c-1f3ff.png", - "sheet_x": 51, - "sheet_y": 25, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - } - } - }, - "crossed_fingers": { - "char": "\ud83e\udd1e", - "key": "crossed_fingers", - "keywords": ["crossed_fingers", "HAND WITH INDEX AND MIDDLE FINGERS CROSSED"], - "category": "people", - "lib": { - "name": "HAND WITH INDEX AND MIDDLE FINGERS CROSSED", - "unified": "1F91E", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f91e.png", - "sheet_x": 38, - "sheet_y": 23, - "short_name": "crossed_fingers", - "short_names": ["crossed_fingers", "hand_with_index_and_middle_fingers_crossed"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 367, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F91E-1F3FB", - "non_qualified": null, - "image": "1f91e-1f3fb.png", - "sheet_x": 38, - "sheet_y": 24, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F91E-1F3FC", - "non_qualified": null, - "image": "1f91e-1f3fc.png", - "sheet_x": 38, - "sheet_y": 25, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F91E-1F3FD", - "non_qualified": null, - "image": "1f91e-1f3fd.png", - "sheet_x": 38, - "sheet_y": 26, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F91E-1F3FE", - "non_qualified": null, - "image": "1f91e-1f3fe.png", - "sheet_x": 38, - "sheet_y": 27, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F91E-1F3FF", - "non_qualified": null, - "image": "1f91e-1f3ff.png", - "sheet_x": 38, - "sheet_y": 28, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - } - } - }, - "spock-hand": { - "char": "\ud83d\udd96", - "key": "spock-hand", - "keywords": ["spock-hand", "RAISED HAND WITH PART BETWEEN MIDDLE AND RING FINGERS"], - "category": "people", - "lib": { - "name": "RAISED HAND WITH PART BETWEEN MIDDLE AND RING FINGERS", - "unified": "1F596", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f596.png", - "sheet_x": 30, - "sheet_y": 11, - "short_name": "spock-hand", - "short_names": ["spock-hand"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 368, - "added_in": "7.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F596-1F3FB", - "non_qualified": null, - "image": "1f596-1f3fb.png", - "sheet_x": 30, - "sheet_y": 12, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F596-1F3FC", - "non_qualified": null, - "image": "1f596-1f3fc.png", - "sheet_x": 30, - "sheet_y": 13, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F596-1F3FD", - "non_qualified": null, - "image": "1f596-1f3fd.png", - "sheet_x": 30, - "sheet_y": 14, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F596-1F3FE", - "non_qualified": null, - "image": "1f596-1f3fe.png", - "sheet_x": 30, - "sheet_y": 15, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F596-1F3FF", - "non_qualified": null, - "image": "1f596-1f3ff.png", - "sheet_x": 30, - "sheet_y": 16, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - } - } - }, - "the_horns": { - "char": "\ud83e\udd18", - "key": "the_horns", - "keywords": ["the_horns", "SIGN OF THE HORNS"], - "category": "people", - "lib": { - "name": "SIGN OF THE HORNS", - "unified": "1F918", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f918.png", - "sheet_x": 37, - "sheet_y": 45, - "short_name": "the_horns", - "short_names": ["the_horns", "sign_of_the_horns"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 369, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F918-1F3FB", - "non_qualified": null, - "image": "1f918-1f3fb.png", - "sheet_x": 37, - "sheet_y": 46, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F918-1F3FC", - "non_qualified": null, - "image": "1f918-1f3fc.png", - "sheet_x": 37, - "sheet_y": 47, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F918-1F3FD", - "non_qualified": null, - "image": "1f918-1f3fd.png", - "sheet_x": 37, - "sheet_y": 48, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F918-1F3FE", - "non_qualified": null, - "image": "1f918-1f3fe.png", - "sheet_x": 37, - "sheet_y": 49, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F918-1F3FF", - "non_qualified": null, - "image": "1f918-1f3ff.png", - "sheet_x": 37, - "sheet_y": 50, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - } - } - }, - "call_me_hand": { - "char": "\ud83e\udd19", - "key": "call_me_hand", - "keywords": ["call_me_hand", "CALL ME HAND"], - "category": "people", - "lib": { - "name": "CALL ME HAND", - "unified": "1F919", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f919.png", - "sheet_x": 37, - "sheet_y": 51, - "short_name": "call_me_hand", - "short_names": ["call_me_hand"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 370, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F919-1F3FB", - "non_qualified": null, - "image": "1f919-1f3fb.png", - "sheet_x": 37, - "sheet_y": 52, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F919-1F3FC", - "non_qualified": null, - "image": "1f919-1f3fc.png", - "sheet_x": 38, - "sheet_y": 0, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F919-1F3FD", - "non_qualified": null, - "image": "1f919-1f3fd.png", - "sheet_x": 38, - "sheet_y": 1, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F919-1F3FE", - "non_qualified": null, - "image": "1f919-1f3fe.png", - "sheet_x": 38, - "sheet_y": 2, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F919-1F3FF", - "non_qualified": null, - "image": "1f919-1f3ff.png", - "sheet_x": 38, - "sheet_y": 3, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - } - } - }, - "raised_hand_with_fingers_splayed": { - "char": "\ud83d\udd90\ufe0f", - "key": "raised_hand_with_fingers_splayed", - "keywords": ["raised_hand_with_fingers_splayed", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F590-FE0F", - "non_qualified": "1F590", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f590-fe0f.png", - "sheet_x": 29, - "sheet_y": 52, - "short_name": "raised_hand_with_fingers_splayed", - "short_names": ["raised_hand_with_fingers_splayed"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 371, - "added_in": "7.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F590-1F3FB", - "non_qualified": null, - "image": "1f590-1f3fb.png", - "sheet_x": 30, - "sheet_y": 0, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F590-1F3FC", - "non_qualified": null, - "image": "1f590-1f3fc.png", - "sheet_x": 30, - "sheet_y": 1, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F590-1F3FD", - "non_qualified": null, - "image": "1f590-1f3fd.png", - "sheet_x": 30, - "sheet_y": 2, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F590-1F3FE", - "non_qualified": null, - "image": "1f590-1f3fe.png", - "sheet_x": 30, - "sheet_y": 3, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F590-1F3FF", - "non_qualified": null, - "image": "1f590-1f3ff.png", - "sheet_x": 30, - "sheet_y": 4, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - } - } - }, - "hand": { - "char": "\u270b", - "key": "hand", - "keywords": ["hand", "RAISED HAND"], - "category": "people", - "lib": { - "name": "RAISED HAND", - "unified": "270B", - "non_qualified": null, - "docomo": "E695", - "au": "E5A7", - "softbank": "E012", - "google": "FEB95", - "image": "270b.png", - "sheet_x": 51, - "sheet_y": 14, - "short_name": "hand", - "short_names": ["hand", "raised_hand"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 372, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true, - "skin_variations": { - "1F3FB": { - "unified": "270B-1F3FB", - "non_qualified": null, - "image": "270b-1f3fb.png", - "sheet_x": 51, - "sheet_y": 15, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FC": { - "unified": "270B-1F3FC", - "non_qualified": null, - "image": "270b-1f3fc.png", - "sheet_x": 51, - "sheet_y": 16, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FD": { - "unified": "270B-1F3FD", - "non_qualified": null, - "image": "270b-1f3fd.png", - "sheet_x": 51, - "sheet_y": 17, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FE": { - "unified": "270B-1F3FE", - "non_qualified": null, - "image": "270b-1f3fe.png", - "sheet_x": 51, - "sheet_y": 18, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FF": { - "unified": "270B-1F3FF", - "non_qualified": null, - "image": "270b-1f3ff.png", - "sheet_x": 51, - "sheet_y": 19, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - } - } - }, - "ok_hand": { - "char": "\ud83d\udc4c", - "key": "ok_hand", - "keywords": ["ok_hand", "OK HAND SIGN"], - "category": "people", - "lib": { - "name": "OK HAND SIGN", - "unified": "1F44C", - "non_qualified": null, - "docomo": "E70B", - "au": "EAD4", - "softbank": "E420", - "google": "FEB9F", - "image": "1f44c.png", - "sheet_x": 14, - "sheet_y": 30, - "short_name": "ok_hand", - "short_names": ["ok_hand"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 373, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true, - "skin_variations": { - "1F3FB": { - "unified": "1F44C-1F3FB", - "non_qualified": null, - "image": "1f44c-1f3fb.png", - "sheet_x": 14, - "sheet_y": 31, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FC": { - "unified": "1F44C-1F3FC", - "non_qualified": null, - "image": "1f44c-1f3fc.png", - "sheet_x": 14, - "sheet_y": 32, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FD": { - "unified": "1F44C-1F3FD", - "non_qualified": null, - "image": "1f44c-1f3fd.png", - "sheet_x": 14, - "sheet_y": 33, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FE": { - "unified": "1F44C-1F3FE", - "non_qualified": null, - "image": "1f44c-1f3fe.png", - "sheet_x": 14, - "sheet_y": 34, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FF": { - "unified": "1F44C-1F3FF", - "non_qualified": null, - "image": "1f44c-1f3ff.png", - "sheet_x": 14, - "sheet_y": 35, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - } - } - }, - "+1": { - "char": "\ud83d\udc4d", - "key": "+1", - "keywords": ["+1", "THUMBS UP SIGN"], - "category": "people", - "lib": { - "name": "THUMBS UP SIGN", - "unified": "1F44D", - "non_qualified": null, - "docomo": "E727", - "au": "E4F9", - "softbank": "E00E", - "google": "FEB97", - "image": "1f44d.png", - "sheet_x": 14, - "sheet_y": 36, - "short_name": "+1", - "short_names": ["+1", "thumbsup"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 374, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true, - "skin_variations": { - "1F3FB": { - "unified": "1F44D-1F3FB", - "non_qualified": null, - "image": "1f44d-1f3fb.png", - "sheet_x": 14, - "sheet_y": 37, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FC": { - "unified": "1F44D-1F3FC", - "non_qualified": null, - "image": "1f44d-1f3fc.png", - "sheet_x": 14, - "sheet_y": 38, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FD": { - "unified": "1F44D-1F3FD", - "non_qualified": null, - "image": "1f44d-1f3fd.png", - "sheet_x": 14, - "sheet_y": 39, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FE": { - "unified": "1F44D-1F3FE", - "non_qualified": null, - "image": "1f44d-1f3fe.png", - "sheet_x": 14, - "sheet_y": 40, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FF": { - "unified": "1F44D-1F3FF", - "non_qualified": null, - "image": "1f44d-1f3ff.png", - "sheet_x": 14, - "sheet_y": 41, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - } - } - }, - "-1": { - "char": "\ud83d\udc4e", - "key": "-1", - "keywords": ["-1", "THUMBS DOWN SIGN"], - "category": "people", - "lib": { - "name": "THUMBS DOWN SIGN", - "unified": "1F44E", - "non_qualified": null, - "docomo": "E700", - "au": "EAD5", - "softbank": "E421", - "google": "FEBA0", - "image": "1f44e.png", - "sheet_x": 14, - "sheet_y": 42, - "short_name": "-1", - "short_names": ["-1", "thumbsdown"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 375, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true, - "skin_variations": { - "1F3FB": { - "unified": "1F44E-1F3FB", - "non_qualified": null, - "image": "1f44e-1f3fb.png", - "sheet_x": 14, - "sheet_y": 43, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FC": { - "unified": "1F44E-1F3FC", - "non_qualified": null, - "image": "1f44e-1f3fc.png", - "sheet_x": 14, - "sheet_y": 44, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FD": { - "unified": "1F44E-1F3FD", - "non_qualified": null, - "image": "1f44e-1f3fd.png", - "sheet_x": 14, - "sheet_y": 45, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FE": { - "unified": "1F44E-1F3FE", - "non_qualified": null, - "image": "1f44e-1f3fe.png", - "sheet_x": 14, - "sheet_y": 46, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FF": { - "unified": "1F44E-1F3FF", - "non_qualified": null, - "image": "1f44e-1f3ff.png", - "sheet_x": 14, - "sheet_y": 47, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - } - } - }, - "fist": { - "char": "\u270a", - "key": "fist", - "keywords": ["fist", "RAISED FIST"], - "category": "people", - "lib": { - "name": "RAISED FIST", - "unified": "270A", - "non_qualified": null, - "docomo": "E693", - "au": "EB83", - "softbank": "E010", - "google": "FEB93", - "image": "270a.png", - "sheet_x": 51, - "sheet_y": 8, - "short_name": "fist", - "short_names": ["fist"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 376, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true, - "skin_variations": { - "1F3FB": { - "unified": "270A-1F3FB", - "non_qualified": null, - "image": "270a-1f3fb.png", - "sheet_x": 51, - "sheet_y": 9, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FC": { - "unified": "270A-1F3FC", - "non_qualified": null, - "image": "270a-1f3fc.png", - "sheet_x": 51, - "sheet_y": 10, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FD": { - "unified": "270A-1F3FD", - "non_qualified": null, - "image": "270a-1f3fd.png", - "sheet_x": 51, - "sheet_y": 11, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FE": { - "unified": "270A-1F3FE", - "non_qualified": null, - "image": "270a-1f3fe.png", - "sheet_x": 51, - "sheet_y": 12, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FF": { - "unified": "270A-1F3FF", - "non_qualified": null, - "image": "270a-1f3ff.png", - "sheet_x": 51, - "sheet_y": 13, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - } - } - }, - "facepunch": { - "char": "\ud83d\udc4a", - "key": "facepunch", - "keywords": ["facepunch", "FISTED HAND SIGN"], - "category": "people", - "lib": { - "name": "FISTED HAND SIGN", - "unified": "1F44A", - "non_qualified": null, - "docomo": "E6FD", - "au": "E4F3", - "softbank": "E00D", - "google": "FEB96", - "image": "1f44a.png", - "sheet_x": 14, - "sheet_y": 18, - "short_name": "facepunch", - "short_names": ["facepunch", "punch"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 377, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true, - "skin_variations": { - "1F3FB": { - "unified": "1F44A-1F3FB", - "non_qualified": null, - "image": "1f44a-1f3fb.png", - "sheet_x": 14, - "sheet_y": 19, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FC": { - "unified": "1F44A-1F3FC", - "non_qualified": null, - "image": "1f44a-1f3fc.png", - "sheet_x": 14, - "sheet_y": 20, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FD": { - "unified": "1F44A-1F3FD", - "non_qualified": null, - "image": "1f44a-1f3fd.png", - "sheet_x": 14, - "sheet_y": 21, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FE": { - "unified": "1F44A-1F3FE", - "non_qualified": null, - "image": "1f44a-1f3fe.png", - "sheet_x": 14, - "sheet_y": 22, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FF": { - "unified": "1F44A-1F3FF", - "non_qualified": null, - "image": "1f44a-1f3ff.png", - "sheet_x": 14, - "sheet_y": 23, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - } - } - }, - "left-facing_fist": { - "char": "\ud83e\udd1b", - "key": "left-facing_fist", - "keywords": ["left-facing_fist", "LEFT-FACING FIST"], - "category": "people", - "lib": { - "name": "LEFT-FACING FIST", - "unified": "1F91B", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f91b.png", - "sheet_x": 38, - "sheet_y": 10, - "short_name": "left-facing_fist", - "short_names": ["left-facing_fist"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 378, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F91B-1F3FB", - "non_qualified": null, - "image": "1f91b-1f3fb.png", - "sheet_x": 38, - "sheet_y": 11, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F91B-1F3FC", - "non_qualified": null, - "image": "1f91b-1f3fc.png", - "sheet_x": 38, - "sheet_y": 12, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F91B-1F3FD", - "non_qualified": null, - "image": "1f91b-1f3fd.png", - "sheet_x": 38, - "sheet_y": 13, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F91B-1F3FE", - "non_qualified": null, - "image": "1f91b-1f3fe.png", - "sheet_x": 38, - "sheet_y": 14, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F91B-1F3FF", - "non_qualified": null, - "image": "1f91b-1f3ff.png", - "sheet_x": 38, - "sheet_y": 15, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - } - } - }, - "right-facing_fist": { - "char": "\ud83e\udd1c", - "key": "right-facing_fist", - "keywords": ["right-facing_fist", "RIGHT-FACING FIST"], - "category": "people", - "lib": { - "name": "RIGHT-FACING FIST", - "unified": "1F91C", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f91c.png", - "sheet_x": 38, - "sheet_y": 16, - "short_name": "right-facing_fist", - "short_names": ["right-facing_fist"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 379, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F91C-1F3FB", - "non_qualified": null, - "image": "1f91c-1f3fb.png", - "sheet_x": 38, - "sheet_y": 17, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F91C-1F3FC", - "non_qualified": null, - "image": "1f91c-1f3fc.png", - "sheet_x": 38, - "sheet_y": 18, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F91C-1F3FD", - "non_qualified": null, - "image": "1f91c-1f3fd.png", - "sheet_x": 38, - "sheet_y": 19, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F91C-1F3FE", - "non_qualified": null, - "image": "1f91c-1f3fe.png", - "sheet_x": 38, - "sheet_y": 20, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F91C-1F3FF", - "non_qualified": null, - "image": "1f91c-1f3ff.png", - "sheet_x": 38, - "sheet_y": 21, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - } - } - }, - "raised_back_of_hand": { - "char": "\ud83e\udd1a", - "key": "raised_back_of_hand", - "keywords": ["raised_back_of_hand", "RAISED BACK OF HAND"], - "category": "people", - "lib": { - "name": "RAISED BACK OF HAND", - "unified": "1F91A", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f91a.png", - "sheet_x": 38, - "sheet_y": 4, - "short_name": "raised_back_of_hand", - "short_names": ["raised_back_of_hand"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 380, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F91A-1F3FB", - "non_qualified": null, - "image": "1f91a-1f3fb.png", - "sheet_x": 38, - "sheet_y": 5, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F91A-1F3FC", - "non_qualified": null, - "image": "1f91a-1f3fc.png", - "sheet_x": 38, - "sheet_y": 6, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F91A-1F3FD", - "non_qualified": null, - "image": "1f91a-1f3fd.png", - "sheet_x": 38, - "sheet_y": 7, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F91A-1F3FE", - "non_qualified": null, - "image": "1f91a-1f3fe.png", - "sheet_x": 38, - "sheet_y": 8, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F91A-1F3FF", - "non_qualified": null, - "image": "1f91a-1f3ff.png", - "sheet_x": 38, - "sheet_y": 9, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - } - } - }, - "wave": { - "char": "\ud83d\udc4b", - "key": "wave", - "keywords": ["wave", "WAVING HAND SIGN"], - "category": "people", - "lib": { - "name": "WAVING HAND SIGN", - "unified": "1F44B", - "non_qualified": null, - "docomo": "E695", - "au": "EAD6", - "softbank": "E41E", - "google": "FEB9D", - "image": "1f44b.png", - "sheet_x": 14, - "sheet_y": 24, - "short_name": "wave", - "short_names": ["wave"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 381, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true, - "skin_variations": { - "1F3FB": { - "unified": "1F44B-1F3FB", - "non_qualified": null, - "image": "1f44b-1f3fb.png", - "sheet_x": 14, - "sheet_y": 25, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FC": { - "unified": "1F44B-1F3FC", - "non_qualified": null, - "image": "1f44b-1f3fc.png", - "sheet_x": 14, - "sheet_y": 26, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FD": { - "unified": "1F44B-1F3FD", - "non_qualified": null, - "image": "1f44b-1f3fd.png", - "sheet_x": 14, - "sheet_y": 27, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FE": { - "unified": "1F44B-1F3FE", - "non_qualified": null, - "image": "1f44b-1f3fe.png", - "sheet_x": 14, - "sheet_y": 28, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FF": { - "unified": "1F44B-1F3FF", - "non_qualified": null, - "image": "1f44b-1f3ff.png", - "sheet_x": 14, - "sheet_y": 29, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - } - } - }, - "i_love_you_hand_sign": { - "char": "\ud83e\udd1f", - "key": "i_love_you_hand_sign", - "keywords": ["i_love_you_hand_sign", "I LOVE YOU HAND SIGN"], - "category": "people", - "lib": { - "name": "I LOVE YOU HAND SIGN", - "unified": "1F91F", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f91f.png", - "sheet_x": 38, - "sheet_y": 29, - "short_name": "i_love_you_hand_sign", - "short_names": ["i_love_you_hand_sign"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 382, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F91F-1F3FB", - "non_qualified": null, - "image": "1f91f-1f3fb.png", - "sheet_x": 38, - "sheet_y": 30, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F91F-1F3FC", - "non_qualified": null, - "image": "1f91f-1f3fc.png", - "sheet_x": 38, - "sheet_y": 31, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F91F-1F3FD", - "non_qualified": null, - "image": "1f91f-1f3fd.png", - "sheet_x": 38, - "sheet_y": 32, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F91F-1F3FE", - "non_qualified": null, - "image": "1f91f-1f3fe.png", - "sheet_x": 38, - "sheet_y": 33, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F91F-1F3FF", - "non_qualified": null, - "image": "1f91f-1f3ff.png", - "sheet_x": 38, - "sheet_y": 34, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - } - } - }, - "writing_hand": { - "char": "\u270d\ufe0f", - "key": "writing_hand", - "keywords": ["writing_hand", ""], - "category": "people", - "lib": { - "name": null, - "unified": "270D-FE0F", - "non_qualified": "270D", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "270d-fe0f.png", - "sheet_x": 51, - "sheet_y": 26, - "short_name": "writing_hand", - "short_names": ["writing_hand"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 383, - "added_in": "1.1", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "270D-1F3FB", - "non_qualified": null, - "image": "270d-1f3fb.png", - "sheet_x": 51, - "sheet_y": 27, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "270D-1F3FC", - "non_qualified": null, - "image": "270d-1f3fc.png", - "sheet_x": 51, - "sheet_y": 28, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "270D-1F3FD", - "non_qualified": null, - "image": "270d-1f3fd.png", - "sheet_x": 51, - "sheet_y": 29, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "270D-1F3FE", - "non_qualified": null, - "image": "270d-1f3fe.png", - "sheet_x": 51, - "sheet_y": 30, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "270D-1F3FF", - "non_qualified": null, - "image": "270d-1f3ff.png", - "sheet_x": 51, - "sheet_y": 31, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - } - } - }, - "clap": { - "char": "\ud83d\udc4f", - "key": "clap", - "keywords": ["clap", "CLAPPING HANDS SIGN"], - "category": "people", - "lib": { - "name": "CLAPPING HANDS SIGN", - "unified": "1F44F", - "non_qualified": null, - "docomo": null, - "au": "EAD3", - "softbank": "E41F", - "google": "FEB9E", - "image": "1f44f.png", - "sheet_x": 14, - "sheet_y": 48, - "short_name": "clap", - "short_names": ["clap"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 384, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true, - "skin_variations": { - "1F3FB": { - "unified": "1F44F-1F3FB", - "non_qualified": null, - "image": "1f44f-1f3fb.png", - "sheet_x": 14, - "sheet_y": 49, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FC": { - "unified": "1F44F-1F3FC", - "non_qualified": null, - "image": "1f44f-1f3fc.png", - "sheet_x": 14, - "sheet_y": 50, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FD": { - "unified": "1F44F-1F3FD", - "non_qualified": null, - "image": "1f44f-1f3fd.png", - "sheet_x": 14, - "sheet_y": 51, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FE": { - "unified": "1F44F-1F3FE", - "non_qualified": null, - "image": "1f44f-1f3fe.png", - "sheet_x": 14, - "sheet_y": 52, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FF": { - "unified": "1F44F-1F3FF", - "non_qualified": null, - "image": "1f44f-1f3ff.png", - "sheet_x": 15, - "sheet_y": 0, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - } - } - }, - "open_hands": { - "char": "\ud83d\udc50", - "key": "open_hands", - "keywords": ["open_hands", "OPEN HANDS SIGN"], - "category": "people", - "lib": { - "name": "OPEN HANDS SIGN", - "unified": "1F450", - "non_qualified": null, - "docomo": "E695", - "au": "EAD6", - "softbank": "E422", - "google": "FEBA1", - "image": "1f450.png", - "sheet_x": 15, - "sheet_y": 1, - "short_name": "open_hands", - "short_names": ["open_hands"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 385, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true, - "skin_variations": { - "1F3FB": { - "unified": "1F450-1F3FB", - "non_qualified": null, - "image": "1f450-1f3fb.png", - "sheet_x": 15, - "sheet_y": 2, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FC": { - "unified": "1F450-1F3FC", - "non_qualified": null, - "image": "1f450-1f3fc.png", - "sheet_x": 15, - "sheet_y": 3, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FD": { - "unified": "1F450-1F3FD", - "non_qualified": null, - "image": "1f450-1f3fd.png", - "sheet_x": 15, - "sheet_y": 4, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FE": { - "unified": "1F450-1F3FE", - "non_qualified": null, - "image": "1f450-1f3fe.png", - "sheet_x": 15, - "sheet_y": 5, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FF": { - "unified": "1F450-1F3FF", - "non_qualified": null, - "image": "1f450-1f3ff.png", - "sheet_x": 15, - "sheet_y": 6, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - } - } - }, - "raised_hands": { - "char": "\ud83d\ude4c", - "key": "raised_hands", - "keywords": ["raised_hands", "PERSON RAISING BOTH HANDS IN CELEBRATION"], - "category": "people", - "lib": { - "name": "PERSON RAISING BOTH HANDS IN CELEBRATION", - "unified": "1F64C", - "non_qualified": null, - "docomo": null, - "au": "EB86", - "softbank": "E427", - "google": "FE358", - "image": "1f64c.png", - "sheet_x": 33, - "sheet_y": 28, - "short_name": "raised_hands", - "short_names": ["raised_hands"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 386, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true, - "skin_variations": { - "1F3FB": { - "unified": "1F64C-1F3FB", - "non_qualified": null, - "image": "1f64c-1f3fb.png", - "sheet_x": 33, - "sheet_y": 29, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FC": { - "unified": "1F64C-1F3FC", - "non_qualified": null, - "image": "1f64c-1f3fc.png", - "sheet_x": 33, - "sheet_y": 30, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FD": { - "unified": "1F64C-1F3FD", - "non_qualified": null, - "image": "1f64c-1f3fd.png", - "sheet_x": 33, - "sheet_y": 31, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FE": { - "unified": "1F64C-1F3FE", - "non_qualified": null, - "image": "1f64c-1f3fe.png", - "sheet_x": 33, - "sheet_y": 32, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FF": { - "unified": "1F64C-1F3FF", - "non_qualified": null, - "image": "1f64c-1f3ff.png", - "sheet_x": 33, - "sheet_y": 33, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - } - } - }, - "palms_up_together": { - "char": "\ud83e\udd32", - "key": "palms_up_together", - "keywords": ["palms_up_together", "PALMS UP TOGETHER"], - "category": "people", - "lib": { - "name": "PALMS UP TOGETHER", - "unified": "1F932", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f932.png", - "sheet_x": 39, - "sheet_y": 27, - "short_name": "palms_up_together", - "short_names": ["palms_up_together"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 387, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F932-1F3FB", - "non_qualified": null, - "image": "1f932-1f3fb.png", - "sheet_x": 39, - "sheet_y": 28, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F932-1F3FC", - "non_qualified": null, - "image": "1f932-1f3fc.png", - "sheet_x": 39, - "sheet_y": 29, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F932-1F3FD", - "non_qualified": null, - "image": "1f932-1f3fd.png", - "sheet_x": 39, - "sheet_y": 30, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F932-1F3FE", - "non_qualified": null, - "image": "1f932-1f3fe.png", - "sheet_x": 39, - "sheet_y": 31, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F932-1F3FF", - "non_qualified": null, - "image": "1f932-1f3ff.png", - "sheet_x": 39, - "sheet_y": 32, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - } - } - }, - "pray": { - "char": "\ud83d\ude4f", - "key": "pray", - "keywords": ["pray", "PERSON WITH FOLDED HANDS"], - "category": "people", - "lib": { - "name": "PERSON WITH FOLDED HANDS", - "unified": "1F64F", - "non_qualified": null, - "docomo": null, - "au": "EAD2", - "softbank": "E41D", - "google": "FE35B", - "image": "1f64f.png", - "sheet_x": 34, - "sheet_y": 17, - "short_name": "pray", - "short_names": ["pray"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 388, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true, - "skin_variations": { - "1F3FB": { - "unified": "1F64F-1F3FB", - "non_qualified": null, - "image": "1f64f-1f3fb.png", - "sheet_x": 34, - "sheet_y": 18, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FC": { - "unified": "1F64F-1F3FC", - "non_qualified": null, - "image": "1f64f-1f3fc.png", - "sheet_x": 34, - "sheet_y": 19, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FD": { - "unified": "1F64F-1F3FD", - "non_qualified": null, - "image": "1f64f-1f3fd.png", - "sheet_x": 34, - "sheet_y": 20, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FE": { - "unified": "1F64F-1F3FE", - "non_qualified": null, - "image": "1f64f-1f3fe.png", - "sheet_x": 34, - "sheet_y": 21, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FF": { - "unified": "1F64F-1F3FF", - "non_qualified": null, - "image": "1f64f-1f3ff.png", - "sheet_x": 34, - "sheet_y": 22, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - } - } - }, - "handshake": { - "char": "\ud83e\udd1d", - "key": "handshake", - "keywords": ["handshake", "HANDSHAKE"], - "category": "people", - "lib": { - "name": "HANDSHAKE", - "unified": "1F91D", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f91d.png", - "sheet_x": 38, - "sheet_y": 22, - "short_name": "handshake", - "short_names": ["handshake"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 389, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "nail_care": { - "char": "\ud83d\udc85", - "key": "nail_care", - "keywords": ["nail_care", "NAIL POLISH"], - "category": "people", - "lib": { - "name": "NAIL POLISH", - "unified": "1F485", - "non_qualified": null, - "docomo": null, - "au": "EAA0", - "softbank": "E31D", - "google": "FE196", - "image": "1f485.png", - "sheet_x": 24, - "sheet_y": 17, - "short_name": "nail_care", - "short_names": ["nail_care"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 390, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true, - "skin_variations": { - "1F3FB": { - "unified": "1F485-1F3FB", - "non_qualified": null, - "image": "1f485-1f3fb.png", - "sheet_x": 24, - "sheet_y": 18, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FC": { - "unified": "1F485-1F3FC", - "non_qualified": null, - "image": "1f485-1f3fc.png", - "sheet_x": 24, - "sheet_y": 19, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FD": { - "unified": "1F485-1F3FD", - "non_qualified": null, - "image": "1f485-1f3fd.png", - "sheet_x": 24, - "sheet_y": 20, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FE": { - "unified": "1F485-1F3FE", - "non_qualified": null, - "image": "1f485-1f3fe.png", - "sheet_x": 24, - "sheet_y": 21, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FF": { - "unified": "1F485-1F3FF", - "non_qualified": null, - "image": "1f485-1f3ff.png", - "sheet_x": 24, - "sheet_y": 22, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - } - } - }, - "ear": { - "char": "\ud83d\udc42", - "key": "ear", - "keywords": ["ear", "EAR"], - "category": "people", - "lib": { - "name": "EAR", - "unified": "1F442", - "non_qualified": null, - "docomo": "E692", - "au": "E5A5", - "softbank": "E41B", - "google": "FE191", - "image": "1f442.png", - "sheet_x": 13, - "sheet_y": 33, - "short_name": "ear", - "short_names": ["ear"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 391, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true, - "skin_variations": { - "1F3FB": { - "unified": "1F442-1F3FB", - "non_qualified": null, - "image": "1f442-1f3fb.png", - "sheet_x": 13, - "sheet_y": 34, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FC": { - "unified": "1F442-1F3FC", - "non_qualified": null, - "image": "1f442-1f3fc.png", - "sheet_x": 13, - "sheet_y": 35, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FD": { - "unified": "1F442-1F3FD", - "non_qualified": null, - "image": "1f442-1f3fd.png", - "sheet_x": 13, - "sheet_y": 36, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FE": { - "unified": "1F442-1F3FE", - "non_qualified": null, - "image": "1f442-1f3fe.png", - "sheet_x": 13, - "sheet_y": 37, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FF": { - "unified": "1F442-1F3FF", - "non_qualified": null, - "image": "1f442-1f3ff.png", - "sheet_x": 13, - "sheet_y": 38, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - } - } - }, - "nose": { - "char": "\ud83d\udc43", - "key": "nose", - "keywords": ["nose", "NOSE"], - "category": "people", - "lib": { - "name": "NOSE", - "unified": "1F443", - "non_qualified": null, - "docomo": null, - "au": "EAD0", - "softbank": "E41A", - "google": "FE192", - "image": "1f443.png", - "sheet_x": 13, - "sheet_y": 39, - "short_name": "nose", - "short_names": ["nose"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 392, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true, - "skin_variations": { - "1F3FB": { - "unified": "1F443-1F3FB", - "non_qualified": null, - "image": "1f443-1f3fb.png", - "sheet_x": 13, - "sheet_y": 40, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FC": { - "unified": "1F443-1F3FC", - "non_qualified": null, - "image": "1f443-1f3fc.png", - "sheet_x": 13, - "sheet_y": 41, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FD": { - "unified": "1F443-1F3FD", - "non_qualified": null, - "image": "1f443-1f3fd.png", - "sheet_x": 13, - "sheet_y": 42, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FE": { - "unified": "1F443-1F3FE", - "non_qualified": null, - "image": "1f443-1f3fe.png", - "sheet_x": 13, - "sheet_y": 43, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FF": { - "unified": "1F443-1F3FF", - "non_qualified": null, - "image": "1f443-1f3ff.png", - "sheet_x": 13, - "sheet_y": 44, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - } - } - }, - "footprints": { - "char": "\ud83d\udc63", - "key": "footprints", - "keywords": ["footprints", "FOOTPRINTS"], - "category": "people", - "lib": { - "name": "FOOTPRINTS", - "unified": "1F463", - "non_qualified": null, - "docomo": "E698", - "au": "EB2A", - "softbank": "E536", - "google": "FE553", - "image": "1f463.png", - "sheet_x": 15, - "sheet_y": 25, - "short_name": "footprints", - "short_names": ["footprints"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 393, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "eyes": { - "char": "\ud83d\udc40", - "key": "eyes", - "keywords": ["eyes", "EYES"], - "category": "people", - "lib": { - "name": "EYES", - "unified": "1F440", - "non_qualified": null, - "docomo": "E691", - "au": "E5A4", - "softbank": "E419", - "google": "FE190", - "image": "1f440.png", - "sheet_x": 13, - "sheet_y": 30, - "short_name": "eyes", - "short_names": ["eyes"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 394, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "eye": { - "char": "\ud83d\udc41\ufe0f", - "key": "eye", - "keywords": ["eye", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F441-FE0F", - "non_qualified": "1F441", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f441-fe0f.png", - "sheet_x": 13, - "sheet_y": 32, - "short_name": "eye", - "short_names": ["eye"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 395, - "added_in": "7.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "eye-in-speech-bubble": { - "char": "\ud83d\udc41\ufe0f\u200d\ud83d\udde8\ufe0f", - "key": "eye-in-speech-bubble", - "keywords": ["eye-in-speech-bubble", ""], - "category": "people", - "lib": { - "name": null, - "unified": "1F441-FE0F-200D-1F5E8-FE0F", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f441-fe0f-200d-1f5e8-fe0f.png", - "sheet_x": 13, - "sheet_y": 31, - "short_name": "eye-in-speech-bubble", - "short_names": ["eye-in-speech-bubble"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 396, - "added_in": "7.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - } - }, - "brain": { - "char": "\ud83e\udde0", - "key": "brain", - "keywords": ["brain", "BRAIN"], - "category": "people", - "lib": { - "name": "BRAIN", - "unified": "1F9E0", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f9e0.png", - "sheet_x": 47, - "sheet_y": 41, - "short_name": "brain", - "short_names": ["brain"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 397, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - }, - "bone": { - "char": "\ud83e\uddb4", - "key": "bone", - "keywords": ["bone", "BONE"], - "category": "people", - "lib": { - "name": "BONE", - "unified": "1F9B4", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f9b4.png", - "sheet_x": 43, - "sheet_y": 31, - "short_name": "bone", - "short_names": ["bone"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 398, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - } - }, - "tooth": { - "char": "\ud83e\uddb7", - "key": "tooth", - "keywords": ["tooth", "TOOTH"], - "category": "people", - "lib": { - "name": "TOOTH", - "unified": "1F9B7", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f9b7.png", - "sheet_x": 43, - "sheet_y": 44, - "short_name": "tooth", - "short_names": ["tooth"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 399, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - } - }, - "tongue": { - "char": "\ud83d\udc45", - "key": "tongue", - "keywords": ["tongue", "TONGUE"], - "category": "people", - "lib": { - "name": "TONGUE", - "unified": "1F445", - "non_qualified": null, - "docomo": "E728", - "au": "EB47", - "softbank": null, - "google": "FE194", - "image": "1f445.png", - "sheet_x": 13, - "sheet_y": 46, - "short_name": "tongue", - "short_names": ["tongue"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 400, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "lips": { - "char": "\ud83d\udc44", - "key": "lips", - "keywords": ["lips", "MOUTH"], - "category": "people", - "lib": { - "name": "MOUTH", - "unified": "1F444", - "non_qualified": null, - "docomo": "E6F9", - "au": "EAD1", - "softbank": "E41C", - "google": "FE193", - "image": "1f444.png", - "sheet_x": 13, - "sheet_y": 45, - "short_name": "lips", - "short_names": ["lips"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 401, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "kiss": { - "char": "\ud83d\udc8b", - "key": "kiss", - "keywords": ["kiss", "KISS MARK"], - "category": "people", - "lib": { - "name": "KISS MARK", - "unified": "1F48B", - "non_qualified": null, - "docomo": "E6F9", - "au": "E4EB", - "softbank": "E003", - "google": "FE823", - "image": "1f48b.png", - "sheet_x": 25, - "sheet_y": 9, - "short_name": "kiss", - "short_names": ["kiss"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 402, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "cupid": { - "char": "\ud83d\udc98", - "key": "cupid", - "keywords": ["cupid", "HEART WITH ARROW"], - "category": "people", - "lib": { - "name": "HEART WITH ARROW", - "unified": "1F498", - "non_qualified": null, - "docomo": "E6EC", - "au": "E4EA", - "softbank": "E329", - "google": "FEB12", - "image": "1f498.png", - "sheet_x": 25, - "sheet_y": 22, - "short_name": "cupid", - "short_names": ["cupid"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 403, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "heart": { - "char": "\u2764\ufe0f", - "key": "heart", - "keywords": ["heart", "HEAVY BLACK HEART"], - "category": "people", - "lib": { - "name": "HEAVY BLACK HEART", - "unified": "2764-FE0F", - "non_qualified": "2764", - "docomo": "E6EC", - "au": "E595", - "softbank": "E022", - "google": "FEB0C", - "image": "2764-fe0f.png", - "sheet_x": 51, - "sheet_y": 50, - "short_name": "heart", - "short_names": ["heart"], - "text": "<3", - "texts": ["<3"], - "category": "Smileys & People", - "sort_order": 404, - "added_in": "1.1", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "heartbeat": { - "char": "\ud83d\udc93", - "key": "heartbeat", - "keywords": ["heartbeat", "BEATING HEART"], - "category": "people", - "lib": { - "name": "BEATING HEART", - "unified": "1F493", - "non_qualified": null, - "docomo": "E6ED", - "au": "EB75", - "softbank": "E327", - "google": "FEB0D", - "image": "1f493.png", - "sheet_x": 25, - "sheet_y": 17, - "short_name": "heartbeat", - "short_names": ["heartbeat"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 405, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - }, - "broken_heart": { - "char": "\ud83d\udc94", - "key": "broken_heart", - "keywords": ["broken_heart", "BROKEN HEART"], - "category": "people", - "lib": { - "name": "BROKEN HEART", - "unified": "1F494", - "non_qualified": null, - "docomo": "E6EE", - "au": "E477", - "softbank": "E023", - "google": "FEB0E", - "image": "1f494.png", - "sheet_x": 25, - "sheet_y": 18, - "short_name": "broken_heart", - "short_names": ["broken_heart"], - "text": "", ":->"], + category: "Smileys & Emotion", + subcategory: "face-smiling", + sort_order: 5, + added_in: "0.6", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + sweat_smile: { + char: "😅", + key: "sweat_smile", + keywords: ["sweat_smile", "SMILING FACE WITH OPEN MOUTH AND COLD SWEAT"], + category: "people", + lib: { + name: "SMILING FACE WITH OPEN MOUTH AND COLD SWEAT", + unified: "1F605", + non_qualified: null, + docomo: "E722", + au: "E471-E5B1", + softbank: null, + google: "FE331", + image: "1f605.png", + sheet_x: 32, + sheet_y: 26, + short_name: "sweat_smile", + short_names: ["sweat_smile"], + text: null, + texts: null, + category: "Smileys & Emotion", + subcategory: "face-smiling", + sort_order: 6, + added_in: "0.6", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + rolling_on_the_floor_laughing: { + char: "🤣", + key: "rolling_on_the_floor_laughing", + keywords: [ + "rolling_on_the_floor_laughing", + "ROLLING ON THE FLOOR LAUGHING", + ], + category: "people", + lib: { + name: "ROLLING ON THE FLOOR LAUGHING", + unified: "1F923", + non_qualified: null, + docomo: null, + au: null, + softbank: null, + google: null, + image: "1f923.png", + sheet_x: 40, + sheet_y: 17, + short_name: "rolling_on_the_floor_laughing", + short_names: ["rolling_on_the_floor_laughing"], + text: null, + texts: null, + category: "Smileys & Emotion", + subcategory: "face-smiling", + sort_order: 7, + added_in: "3.0", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + joy: { + char: "😂", + key: "joy", + keywords: ["joy", "FACE WITH TEARS OF JOY"], + category: "people", + lib: { + name: "FACE WITH TEARS OF JOY", + unified: "1F602", + non_qualified: null, + docomo: "E72A", + au: "EB64", + softbank: "E412", + google: "FE334", + image: "1f602.png", + sheet_x: 32, + sheet_y: 23, + short_name: "joy", + short_names: ["joy"], + text: null, + texts: null, + category: "Smileys & Emotion", + subcategory: "face-smiling", + sort_order: 8, + added_in: "0.6", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + slightly_smiling_face: { + char: "🙂", + key: "slightly_smiling_face", + keywords: ["slightly_smiling_face", "SLIGHTLY SMILING FACE"], + category: "people", + lib: { + name: "SLIGHTLY SMILING FACE", + unified: "1F642", + non_qualified: null, + docomo: null, + au: null, + softbank: null, + google: null, + image: "1f642.png", + sheet_x: 33, + sheet_y: 29, + short_name: "slightly_smiling_face", + short_names: ["slightly_smiling_face"], + text: null, + texts: [":)", "(:", ":-)"], + category: "Smileys & Emotion", + subcategory: "face-smiling", + sort_order: 9, + added_in: "1.0", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + upside_down_face: { + char: "🙃", + key: "upside_down_face", + keywords: ["upside_down_face", "UPSIDE-DOWN FACE"], + category: "people", + lib: { + name: "UPSIDE-DOWN FACE", + unified: "1F643", + non_qualified: null, + docomo: null, + au: null, + softbank: null, + google: null, + image: "1f643.png", + sheet_x: 33, + sheet_y: 30, + short_name: "upside_down_face", + short_names: ["upside_down_face"], + text: null, + texts: null, + category: "Smileys & Emotion", + subcategory: "face-smiling", + sort_order: 10, + added_in: "1.0", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + melting_face: { + char: "🫠", + key: "melting_face", + keywords: ["melting_face", "MELTING FACE"], + category: "people", + lib: { + name: "MELTING FACE", + unified: "1FAE0", + non_qualified: null, + docomo: null, + au: null, + softbank: null, + google: null, + image: "1fae0.png", + sheet_x: 55, + sheet_y: 30, + short_name: "melting_face", + short_names: ["melting_face"], + text: null, + texts: null, + category: "Smileys & Emotion", + subcategory: "face-smiling", + sort_order: 11, + added_in: "14.0", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + wink: { + char: "😉", + key: "wink", + keywords: ["wink", "WINKING FACE"], + category: "people", + lib: { + name: "WINKING FACE", + unified: "1F609", + non_qualified: null, + docomo: "E729", + au: "E5C3", + softbank: "E405", + google: "FE347", + image: "1f609.png", + sheet_x: 32, + sheet_y: 30, + short_name: "wink", + short_names: ["wink"], + text: ";)", + texts: [";)", ";-)"], + category: "Smileys & Emotion", + subcategory: "face-smiling", + sort_order: 12, + added_in: "0.6", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + blush: { + char: "😊", + key: "blush", + keywords: ["blush", "SMILING FACE WITH SMILING EYES"], + category: "people", + lib: { + name: "SMILING FACE WITH SMILING EYES", + unified: "1F60A", + non_qualified: null, + docomo: "E6F0", + au: "EACD", + softbank: "E056", + google: "FE335", + image: "1f60a.png", + sheet_x: 32, + sheet_y: 31, + short_name: "blush", + short_names: ["blush"], + text: ":)", + texts: null, + category: "Smileys & Emotion", + subcategory: "face-smiling", + sort_order: 13, + added_in: "0.6", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + innocent: { + char: "😇", + key: "innocent", + keywords: ["innocent", "SMILING FACE WITH HALO"], + category: "people", + lib: { + name: "SMILING FACE WITH HALO", + unified: "1F607", + non_qualified: null, + docomo: null, + au: null, + softbank: null, + google: null, + image: "1f607.png", + sheet_x: 32, + sheet_y: 28, + short_name: "innocent", + short_names: ["innocent"], + text: null, + texts: null, + category: "Smileys & Emotion", + subcategory: "face-smiling", + sort_order: 14, + added_in: "1.0", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + smiling_face_with_3_hearts: { + char: "🥰", + key: "smiling_face_with_3_hearts", + keywords: [ + "smiling_face_with_3_hearts", + "SMILING FACE WITH SMILING EYES AND THREE HEARTS", + ], + category: "people", + lib: { + name: "SMILING FACE WITH SMILING EYES AND THREE HEARTS", + unified: "1F970", + non_qualified: null, + docomo: null, + au: null, + softbank: null, + google: null, + image: "1f970.png", + sheet_x: 43, + sheet_y: 60, + short_name: "smiling_face_with_3_hearts", + short_names: ["smiling_face_with_3_hearts"], + text: null, + texts: null, + category: "Smileys & Emotion", + subcategory: "face-affection", + sort_order: 15, + added_in: "11.0", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + heart_eyes: { + char: "😍", + key: "heart_eyes", + keywords: ["heart_eyes", "SMILING FACE WITH HEART-SHAPED EYES"], + category: "people", + lib: { + name: "SMILING FACE WITH HEART-SHAPED EYES", + unified: "1F60D", + non_qualified: null, + docomo: "E726", + au: "E5C4", + softbank: "E106", + google: "FE327", + image: "1f60d.png", + sheet_x: 32, + sheet_y: 34, + short_name: "heart_eyes", + short_names: ["heart_eyes"], + text: null, + texts: null, + category: "Smileys & Emotion", + subcategory: "face-affection", + sort_order: 16, + added_in: "0.6", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + "star-struck": { + char: "🤩", + key: "star-struck", + keywords: ["star-struck", "GRINNING FACE WITH STAR EYES"], + category: "people", + lib: { + name: "GRINNING FACE WITH STAR EYES", + unified: "1F929", + non_qualified: null, + docomo: null, + au: null, + softbank: null, + google: null, + image: "1f929.png", + sheet_x: 40, + sheet_y: 40, + short_name: "star-struck", + short_names: ["star-struck", "grinning_face_with_star_eyes"], + text: null, + texts: null, + category: "Smileys & Emotion", + subcategory: "face-affection", + sort_order: 17, + added_in: "5.0", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + kissing_heart: { + char: "😘", + key: "kissing_heart", + keywords: ["kissing_heart", "FACE THROWING A KISS"], + category: "people", + lib: { + name: "FACE THROWING A KISS", + unified: "1F618", + non_qualified: null, + docomo: "E726", + au: "EACF", + softbank: "E418", + google: "FE32C", + image: "1f618.png", + sheet_x: 32, + sheet_y: 45, + short_name: "kissing_heart", + short_names: ["kissing_heart"], + text: null, + texts: [":*", ":-*"], + category: "Smileys & Emotion", + subcategory: "face-affection", + sort_order: 18, + added_in: "0.6", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + kissing: { + char: "😗", + key: "kissing", + keywords: ["kissing", "KISSING FACE"], + category: "people", + lib: { + name: "KISSING FACE", + unified: "1F617", + non_qualified: null, + docomo: null, + au: null, + softbank: null, + google: null, + image: "1f617.png", + sheet_x: 32, + sheet_y: 44, + short_name: "kissing", + short_names: ["kissing"], + text: null, + texts: null, + category: "Smileys & Emotion", + subcategory: "face-affection", + sort_order: 19, + added_in: "1.0", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + relaxed: { + char: "☺️", + key: "relaxed", + keywords: ["relaxed", "WHITE SMILING FACE"], + category: "people", + lib: { + name: "WHITE SMILING FACE", + unified: "263A-FE0F", + non_qualified: "263A", + docomo: "E6F0", + au: "E4FB", + softbank: "E414", + google: "FE336", + image: "263a-fe0f.png", + sheet_x: 57, + sheet_y: 35, + short_name: "relaxed", + short_names: ["relaxed"], + text: null, + texts: null, + category: "Smileys & Emotion", + subcategory: "face-affection", + sort_order: 20, + added_in: "0.6", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + kissing_closed_eyes: { + char: "😚", + key: "kissing_closed_eyes", + keywords: ["kissing_closed_eyes", "KISSING FACE WITH CLOSED EYES"], + category: "people", + lib: { + name: "KISSING FACE WITH CLOSED EYES", + unified: "1F61A", + non_qualified: null, + docomo: "E726", + au: "EACE", + softbank: "E417", + google: "FE32D", + image: "1f61a.png", + sheet_x: 32, + sheet_y: 47, + short_name: "kissing_closed_eyes", + short_names: ["kissing_closed_eyes"], + text: null, + texts: null, + category: "Smileys & Emotion", + subcategory: "face-affection", + sort_order: 21, + added_in: "0.6", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + kissing_smiling_eyes: { + char: "😙", + key: "kissing_smiling_eyes", + keywords: ["kissing_smiling_eyes", "KISSING FACE WITH SMILING EYES"], + category: "people", + lib: { + name: "KISSING FACE WITH SMILING EYES", + unified: "1F619", + non_qualified: null, + docomo: null, + au: null, + softbank: null, + google: null, + image: "1f619.png", + sheet_x: 32, + sheet_y: 46, + short_name: "kissing_smiling_eyes", + short_names: ["kissing_smiling_eyes"], + text: null, + texts: null, + category: "Smileys & Emotion", + subcategory: "face-affection", + sort_order: 22, + added_in: "1.0", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + smiling_face_with_tear: { + char: "🥲", + key: "smiling_face_with_tear", + keywords: ["smiling_face_with_tear", "SMILING FACE WITH TEAR"], + category: "people", + lib: { + name: "SMILING FACE WITH TEAR", + unified: "1F972", + non_qualified: null, + docomo: null, + au: null, + softbank: null, + google: null, + image: "1f972.png", + sheet_x: 44, + sheet_y: 1, + short_name: "smiling_face_with_tear", + short_names: ["smiling_face_with_tear"], + text: null, + texts: null, + category: "Smileys & Emotion", + subcategory: "face-affection", + sort_order: 23, + added_in: "13.0", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + yum: { + char: "😋", + key: "yum", + keywords: ["yum", "FACE SAVOURING DELICIOUS FOOD"], + category: "people", + lib: { + name: "FACE SAVOURING DELICIOUS FOOD", + unified: "1F60B", + non_qualified: null, + docomo: "E752", + au: "EACD", + softbank: null, + google: "FE32B", + image: "1f60b.png", + sheet_x: 32, + sheet_y: 32, + short_name: "yum", + short_names: ["yum"], + text: null, + texts: null, + category: "Smileys & Emotion", + subcategory: "face-tongue", + sort_order: 24, + added_in: "0.6", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + stuck_out_tongue: { + char: "😛", + key: "stuck_out_tongue", + keywords: ["stuck_out_tongue", "FACE WITH STUCK-OUT TONGUE"], + category: "people", + lib: { + name: "FACE WITH STUCK-OUT TONGUE", + unified: "1F61B", + non_qualified: null, + docomo: null, + au: null, + softbank: null, + google: null, + image: "1f61b.png", + sheet_x: 32, + sheet_y: 48, + short_name: "stuck_out_tongue", + short_names: ["stuck_out_tongue"], + text: ":p", + texts: [":p", ":-p", ":P", ":-P", ":b", ":-b"], + category: "Smileys & Emotion", + subcategory: "face-tongue", + sort_order: 25, + added_in: "1.0", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + stuck_out_tongue_winking_eye: { + char: "😜", + key: "stuck_out_tongue_winking_eye", + keywords: [ + "stuck_out_tongue_winking_eye", + "FACE WITH STUCK-OUT TONGUE AND WINKING EYE", + ], + category: "people", + lib: { + name: "FACE WITH STUCK-OUT TONGUE AND WINKING EYE", + unified: "1F61C", + non_qualified: null, + docomo: "E728", + au: "E4E7", + softbank: "E105", + google: "FE329", + image: "1f61c.png", + sheet_x: 32, + sheet_y: 49, + short_name: "stuck_out_tongue_winking_eye", + short_names: ["stuck_out_tongue_winking_eye"], + text: ";p", + texts: [";p", ";-p", ";b", ";-b", ";P", ";-P"], + category: "Smileys & Emotion", + subcategory: "face-tongue", + sort_order: 26, + added_in: "0.6", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + zany_face: { + char: "🤪", + key: "zany_face", + keywords: ["zany_face", "GRINNING FACE WITH ONE LARGE AND ONE SMALL EYE"], + category: "people", + lib: { + name: "GRINNING FACE WITH ONE LARGE AND ONE SMALL EYE", + unified: "1F92A", + non_qualified: null, + docomo: null, + au: null, + softbank: null, + google: null, + image: "1f92a.png", + sheet_x: 40, + sheet_y: 41, + short_name: "zany_face", + short_names: [ + "zany_face", + "grinning_face_with_one_large_and_one_small_eye", + ], + text: null, + texts: null, + category: "Smileys & Emotion", + subcategory: "face-tongue", + sort_order: 27, + added_in: "5.0", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + stuck_out_tongue_closed_eyes: { + char: "😝", + key: "stuck_out_tongue_closed_eyes", + keywords: [ + "stuck_out_tongue_closed_eyes", + "FACE WITH STUCK-OUT TONGUE AND TIGHTLY-CLOSED EYES", + ], + category: "people", + lib: { + name: "FACE WITH STUCK-OUT TONGUE AND TIGHTLY-CLOSED EYES", + unified: "1F61D", + non_qualified: null, + docomo: "E728", + au: "E4E7", + softbank: "E409", + google: "FE32A", + image: "1f61d.png", + sheet_x: 32, + sheet_y: 50, + short_name: "stuck_out_tongue_closed_eyes", + short_names: ["stuck_out_tongue_closed_eyes"], + text: null, + texts: null, + category: "Smileys & Emotion", + subcategory: "face-tongue", + sort_order: 28, + added_in: "0.6", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + money_mouth_face: { + char: "🤑", + key: "money_mouth_face", + keywords: ["money_mouth_face", "MONEY-MOUTH FACE"], + category: "people", + lib: { + name: "MONEY-MOUTH FACE", + unified: "1F911", + non_qualified: null, + docomo: null, + au: null, + softbank: null, + google: null, + image: "1f911.png", + sheet_x: 39, + sheet_y: 0, + short_name: "money_mouth_face", + short_names: ["money_mouth_face"], + text: null, + texts: null, + category: "Smileys & Emotion", + subcategory: "face-tongue", + sort_order: 29, + added_in: "1.0", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + hugging_face: { + char: "🤗", + key: "hugging_face", + keywords: ["hugging_face", "HUGGING FACE"], + category: "people", + lib: { + name: "HUGGING FACE", + unified: "1F917", + non_qualified: null, + docomo: null, + au: null, + softbank: null, + google: null, + image: "1f917.png", + sheet_x: 39, + sheet_y: 6, + short_name: "hugging_face", + short_names: ["hugging_face"], + text: null, + texts: null, + category: "Smileys & Emotion", + subcategory: "face-hand", + sort_order: 30, + added_in: "1.0", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + face_with_hand_over_mouth: { + char: "🤭", + key: "face_with_hand_over_mouth", + keywords: [ + "face_with_hand_over_mouth", + "SMILING FACE WITH SMILING EYES AND HAND COVERING MOUTH", + ], + category: "people", + lib: { + name: "SMILING FACE WITH SMILING EYES AND HAND COVERING MOUTH", + unified: "1F92D", + non_qualified: null, + docomo: null, + au: null, + softbank: null, + google: null, + image: "1f92d.png", + sheet_x: 40, + sheet_y: 44, + short_name: "face_with_hand_over_mouth", + short_names: [ + "face_with_hand_over_mouth", + "smiling_face_with_smiling_eyes_and_hand_covering_mouth", + ], + text: null, + texts: null, + category: "Smileys & Emotion", + subcategory: "face-hand", + sort_order: 31, + added_in: "5.0", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + face_with_open_eyes_and_hand_over_mouth: { + char: "🫢", + key: "face_with_open_eyes_and_hand_over_mouth", + keywords: [ + "face_with_open_eyes_and_hand_over_mouth", + "FACE WITH OPEN EYES AND HAND OVER MOUTH", + ], + category: "people", + lib: { + name: "FACE WITH OPEN EYES AND HAND OVER MOUTH", + unified: "1FAE2", + non_qualified: null, + docomo: null, + au: null, + softbank: null, + google: null, + image: "1fae2.png", + sheet_x: 55, + sheet_y: 32, + short_name: "face_with_open_eyes_and_hand_over_mouth", + short_names: ["face_with_open_eyes_and_hand_over_mouth"], + text: null, + texts: null, + category: "Smileys & Emotion", + subcategory: "face-hand", + sort_order: 32, + added_in: "14.0", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + face_with_peeking_eye: { + char: "🫣", + key: "face_with_peeking_eye", + keywords: ["face_with_peeking_eye", "FACE WITH PEEKING EYE"], + category: "people", + lib: { + name: "FACE WITH PEEKING EYE", + unified: "1FAE3", + non_qualified: null, + docomo: null, + au: null, + softbank: null, + google: null, + image: "1fae3.png", + sheet_x: 55, + sheet_y: 33, + short_name: "face_with_peeking_eye", + short_names: ["face_with_peeking_eye"], + text: null, + texts: null, + category: "Smileys & Emotion", + subcategory: "face-hand", + sort_order: 33, + added_in: "14.0", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + shushing_face: { + char: "🤫", + key: "shushing_face", + keywords: ["shushing_face", "FACE WITH FINGER COVERING CLOSED LIPS"], + category: "people", + lib: { + name: "FACE WITH FINGER COVERING CLOSED LIPS", + unified: "1F92B", + non_qualified: null, + docomo: null, + au: null, + softbank: null, + google: null, + image: "1f92b.png", + sheet_x: 40, + sheet_y: 42, + short_name: "shushing_face", + short_names: ["shushing_face", "face_with_finger_covering_closed_lips"], + text: null, + texts: null, + category: "Smileys & Emotion", + subcategory: "face-hand", + sort_order: 34, + added_in: "5.0", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + thinking_face: { + char: "🤔", + key: "thinking_face", + keywords: ["thinking_face", "THINKING FACE"], + category: "people", + lib: { + name: "THINKING FACE", + unified: "1F914", + non_qualified: null, + docomo: null, + au: null, + softbank: null, + google: null, + image: "1f914.png", + sheet_x: 39, + sheet_y: 3, + short_name: "thinking_face", + short_names: ["thinking_face"], + text: null, + texts: null, + category: "Smileys & Emotion", + subcategory: "face-hand", + sort_order: 35, + added_in: "1.0", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + saluting_face: { + char: "🫡", + key: "saluting_face", + keywords: ["saluting_face", "SALUTING FACE"], + category: "people", + lib: { + name: "SALUTING FACE", + unified: "1FAE1", + non_qualified: null, + docomo: null, + au: null, + softbank: null, + google: null, + image: "1fae1.png", + sheet_x: 55, + sheet_y: 31, + short_name: "saluting_face", + short_names: ["saluting_face"], + text: null, + texts: null, + category: "Smileys & Emotion", + subcategory: "face-hand", + sort_order: 36, + added_in: "14.0", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + zipper_mouth_face: { + char: "🤐", + key: "zipper_mouth_face", + keywords: ["zipper_mouth_face", "ZIPPER-MOUTH FACE"], + category: "people", + lib: { + name: "ZIPPER-MOUTH FACE", + unified: "1F910", + non_qualified: null, + docomo: null, + au: null, + softbank: null, + google: null, + image: "1f910.png", + sheet_x: 38, + sheet_y: 60, + short_name: "zipper_mouth_face", + short_names: ["zipper_mouth_face"], + text: null, + texts: null, + category: "Smileys & Emotion", + subcategory: "face-neutral-skeptical", + sort_order: 37, + added_in: "1.0", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + face_with_raised_eyebrow: { + char: "🤨", + key: "face_with_raised_eyebrow", + keywords: ["face_with_raised_eyebrow", "FACE WITH ONE EYEBROW RAISED"], + category: "people", + lib: { + name: "FACE WITH ONE EYEBROW RAISED", + unified: "1F928", + non_qualified: null, + docomo: null, + au: null, + softbank: null, + google: null, + image: "1f928.png", + sheet_x: 40, + sheet_y: 39, + short_name: "face_with_raised_eyebrow", + short_names: [ + "face_with_raised_eyebrow", + "face_with_one_eyebrow_raised", + ], + text: null, + texts: null, + category: "Smileys & Emotion", + subcategory: "face-neutral-skeptical", + sort_order: 38, + added_in: "5.0", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + neutral_face: { + char: "😐", + key: "neutral_face", + keywords: ["neutral_face", "NEUTRAL FACE"], + category: "people", + lib: { + name: "NEUTRAL FACE", + unified: "1F610", + non_qualified: null, + docomo: null, + au: null, + softbank: null, + google: null, + image: "1f610.png", + sheet_x: 32, + sheet_y: 37, + short_name: "neutral_face", + short_names: ["neutral_face"], + text: null, + texts: [":|", ":-|"], + category: "Smileys & Emotion", + subcategory: "face-neutral-skeptical", + sort_order: 39, + added_in: "0.7", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + expressionless: { + char: "😑", + key: "expressionless", + keywords: ["expressionless", "EXPRESSIONLESS FACE"], + category: "people", + lib: { + name: "EXPRESSIONLESS FACE", + unified: "1F611", + non_qualified: null, + docomo: null, + au: null, + softbank: null, + google: null, + image: "1f611.png", + sheet_x: 32, + sheet_y: 38, + short_name: "expressionless", + short_names: ["expressionless"], + text: null, + texts: null, + category: "Smileys & Emotion", + subcategory: "face-neutral-skeptical", + sort_order: 40, + added_in: "1.0", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + no_mouth: { + char: "😶", + key: "no_mouth", + keywords: ["no_mouth", "FACE WITHOUT MOUTH"], + category: "people", + lib: { + name: "FACE WITHOUT MOUTH", + unified: "1F636", + non_qualified: null, + docomo: null, + au: null, + softbank: null, + google: null, + image: "1f636.png", + sheet_x: 33, + sheet_y: 17, + short_name: "no_mouth", + short_names: ["no_mouth"], + text: null, + texts: null, + category: "Smileys & Emotion", + subcategory: "face-neutral-skeptical", + sort_order: 41, + added_in: "1.0", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + dotted_line_face: { + char: "🫥", + key: "dotted_line_face", + keywords: ["dotted_line_face", "DOTTED LINE FACE"], + category: "people", + lib: { + name: "DOTTED LINE FACE", + unified: "1FAE5", + non_qualified: null, + docomo: null, + au: null, + softbank: null, + google: null, + image: "1fae5.png", + sheet_x: 55, + sheet_y: 35, + short_name: "dotted_line_face", + short_names: ["dotted_line_face"], + text: null, + texts: null, + category: "Smileys & Emotion", + subcategory: "face-neutral-skeptical", + sort_order: 42, + added_in: "14.0", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + face_in_clouds: { + char: "😶‍🌫️", + key: "face_in_clouds", + keywords: ["face_in_clouds", "FACE IN CLOUDS"], + category: "people", + lib: { + name: "FACE IN CLOUDS", + unified: "1F636-200D-1F32B-FE0F", + non_qualified: "1F636-200D-1F32B", + docomo: null, + au: null, + softbank: null, + google: null, + image: "1f636-200d-1f32b-fe0f.png", + sheet_x: 33, + sheet_y: 16, + short_name: "face_in_clouds", + short_names: ["face_in_clouds"], + text: null, + texts: null, + category: "Smileys & Emotion", + subcategory: "face-neutral-skeptical", + sort_order: 43, + added_in: "13.1", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + smirk: { + char: "😏", + key: "smirk", + keywords: ["smirk", "SMIRKING FACE"], + category: "people", + lib: { + name: "SMIRKING FACE", + unified: "1F60F", + non_qualified: null, + docomo: "E72C", + au: "EABF", + softbank: "E402", + google: "FE343", + image: "1f60f.png", + sheet_x: 32, + sheet_y: 36, + short_name: "smirk", + short_names: ["smirk"], + text: null, + texts: null, + category: "Smileys & Emotion", + subcategory: "face-neutral-skeptical", + sort_order: 44, + added_in: "0.6", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + unamused: { + char: "😒", + key: "unamused", + keywords: ["unamused", "UNAMUSED FACE"], + category: "people", + lib: { + name: "UNAMUSED FACE", + unified: "1F612", + non_qualified: null, + docomo: "E725", + au: "EAC9", + softbank: "E40E", + google: "FE326", + image: "1f612.png", + sheet_x: 32, + sheet_y: 39, + short_name: "unamused", + short_names: ["unamused"], + text: ":(", + texts: null, + category: "Smileys & Emotion", + subcategory: "face-neutral-skeptical", + sort_order: 45, + added_in: "0.6", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + face_with_rolling_eyes: { + char: "🙄", + key: "face_with_rolling_eyes", + keywords: ["face_with_rolling_eyes", "FACE WITH ROLLING EYES"], + category: "people", + lib: { + name: "FACE WITH ROLLING EYES", + unified: "1F644", + non_qualified: null, + docomo: null, + au: null, + softbank: null, + google: null, + image: "1f644.png", + sheet_x: 33, + sheet_y: 31, + short_name: "face_with_rolling_eyes", + short_names: ["face_with_rolling_eyes"], + text: null, + texts: null, + category: "Smileys & Emotion", + subcategory: "face-neutral-skeptical", + sort_order: 46, + added_in: "1.0", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + grimacing: { + char: "😬", + key: "grimacing", + keywords: ["grimacing", "GRIMACING FACE"], + category: "people", + lib: { + name: "GRIMACING FACE", + unified: "1F62C", + non_qualified: null, + docomo: null, + au: null, + softbank: null, + google: null, + image: "1f62c.png", + sheet_x: 33, + sheet_y: 4, + short_name: "grimacing", + short_names: ["grimacing"], + text: null, + texts: null, + category: "Smileys & Emotion", + subcategory: "face-neutral-skeptical", + sort_order: 47, + added_in: "1.0", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + face_exhaling: { + char: "😮‍💨", + key: "face_exhaling", + keywords: ["face_exhaling", "FACE EXHALING"], + category: "people", + lib: { + name: "FACE EXHALING", + unified: "1F62E-200D-1F4A8", + non_qualified: null, + docomo: null, + au: null, + softbank: null, + google: null, + image: "1f62e-200d-1f4a8.png", + sheet_x: 33, + sheet_y: 6, + short_name: "face_exhaling", + short_names: ["face_exhaling"], + text: null, + texts: null, + category: "Smileys & Emotion", + subcategory: "face-neutral-skeptical", + sort_order: 48, + added_in: "13.1", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + lying_face: { + char: "🤥", + key: "lying_face", + keywords: ["lying_face", "LYING FACE"], + category: "people", + lib: { + name: "LYING FACE", + unified: "1F925", + non_qualified: null, + docomo: null, + au: null, + softbank: null, + google: null, + image: "1f925.png", + sheet_x: 40, + sheet_y: 19, + short_name: "lying_face", + short_names: ["lying_face"], + text: null, + texts: null, + category: "Smileys & Emotion", + subcategory: "face-neutral-skeptical", + sort_order: 49, + added_in: "3.0", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + shaking_face: { + char: "🫨", + key: "shaking_face", + keywords: ["shaking_face", "SHAKING FACE"], + category: "people", + lib: { + name: "SHAKING FACE", + unified: "1FAE8", + non_qualified: null, + docomo: null, + au: null, + softbank: null, + google: null, + image: "1fae8.png", + sheet_x: 55, + sheet_y: 38, + short_name: "shaking_face", + short_names: ["shaking_face"], + text: null, + texts: null, + category: "Smileys & Emotion", + subcategory: "face-neutral-skeptical", + sort_order: 50, + added_in: "15.0", + has_img_apple: true, + has_img_google: true, + has_img_twitter: false, + has_img_facebook: false, + }, + }, + relieved: { + char: "😌", + key: "relieved", + keywords: ["relieved", "RELIEVED FACE"], + category: "people", + lib: { + name: "RELIEVED FACE", + unified: "1F60C", + non_qualified: null, + docomo: "E721", + au: "EAC5", + softbank: "E40A", + google: "FE33E", + image: "1f60c.png", + sheet_x: 32, + sheet_y: 33, + short_name: "relieved", + short_names: ["relieved"], + text: null, + texts: null, + category: "Smileys & Emotion", + subcategory: "face-sleepy", + sort_order: 51, + added_in: "0.6", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + pensive: { + char: "😔", + key: "pensive", + keywords: ["pensive", "PENSIVE FACE"], + category: "people", + lib: { + name: "PENSIVE FACE", + unified: "1F614", + non_qualified: null, + docomo: "E720", + au: "EAC0", + softbank: "E403", + google: "FE340", + image: "1f614.png", + sheet_x: 32, + sheet_y: 41, + short_name: "pensive", + short_names: ["pensive"], + text: null, + texts: null, + category: "Smileys & Emotion", + subcategory: "face-sleepy", + sort_order: 52, + added_in: "0.6", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + sleepy: { + char: "😪", + key: "sleepy", + keywords: ["sleepy", "SLEEPY FACE"], + category: "people", + lib: { + name: "SLEEPY FACE", + unified: "1F62A", + non_qualified: null, + docomo: "E701", + au: "EAC4", + softbank: "E408", + google: "FE342", + image: "1f62a.png", + sheet_x: 33, + sheet_y: 2, + short_name: "sleepy", + short_names: ["sleepy"], + text: null, + texts: null, + category: "Smileys & Emotion", + subcategory: "face-sleepy", + sort_order: 53, + added_in: "0.6", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + drooling_face: { + char: "🤤", + key: "drooling_face", + keywords: ["drooling_face", "DROOLING FACE"], + category: "people", + lib: { + name: "DROOLING FACE", + unified: "1F924", + non_qualified: null, + docomo: null, + au: null, + softbank: null, + google: null, + image: "1f924.png", + sheet_x: 40, + sheet_y: 18, + short_name: "drooling_face", + short_names: ["drooling_face"], + text: null, + texts: null, + category: "Smileys & Emotion", + subcategory: "face-sleepy", + sort_order: 54, + added_in: "3.0", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + sleeping: { + char: "😴", + key: "sleeping", + keywords: ["sleeping", "SLEEPING FACE"], + category: "people", + lib: { + name: "SLEEPING FACE", + unified: "1F634", + non_qualified: null, + docomo: null, + au: null, + softbank: null, + google: null, + image: "1f634.png", + sheet_x: 33, + sheet_y: 13, + short_name: "sleeping", + short_names: ["sleeping"], + text: null, + texts: null, + category: "Smileys & Emotion", + subcategory: "face-sleepy", + sort_order: 55, + added_in: "1.0", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + mask: { + char: "😷", + key: "mask", + keywords: ["mask", "FACE WITH MEDICAL MASK"], + category: "people", + lib: { + name: "FACE WITH MEDICAL MASK", + unified: "1F637", + non_qualified: null, + docomo: null, + au: "EAC7", + softbank: "E40C", + google: "FE32E", + image: "1f637.png", + sheet_x: 33, + sheet_y: 18, + short_name: "mask", + short_names: ["mask"], + text: null, + texts: null, + category: "Smileys & Emotion", + subcategory: "face-unwell", + sort_order: 56, + added_in: "0.6", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + face_with_thermometer: { + char: "🤒", + key: "face_with_thermometer", + keywords: ["face_with_thermometer", "FACE WITH THERMOMETER"], + category: "people", + lib: { + name: "FACE WITH THERMOMETER", + unified: "1F912", + non_qualified: null, + docomo: null, + au: null, + softbank: null, + google: null, + image: "1f912.png", + sheet_x: 39, + sheet_y: 1, + short_name: "face_with_thermometer", + short_names: ["face_with_thermometer"], + text: null, + texts: null, + category: "Smileys & Emotion", + subcategory: "face-unwell", + sort_order: 57, + added_in: "1.0", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + face_with_head_bandage: { + char: "🤕", + key: "face_with_head_bandage", + keywords: ["face_with_head_bandage", "FACE WITH HEAD-BANDAGE"], + category: "people", + lib: { + name: "FACE WITH HEAD-BANDAGE", + unified: "1F915", + non_qualified: null, + docomo: null, + au: null, + softbank: null, + google: null, + image: "1f915.png", + sheet_x: 39, + sheet_y: 4, + short_name: "face_with_head_bandage", + short_names: ["face_with_head_bandage"], + text: null, + texts: null, + category: "Smileys & Emotion", + subcategory: "face-unwell", + sort_order: 58, + added_in: "1.0", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + nauseated_face: { + char: "🤢", + key: "nauseated_face", + keywords: ["nauseated_face", "NAUSEATED FACE"], + category: "people", + lib: { + name: "NAUSEATED FACE", + unified: "1F922", + non_qualified: null, + docomo: null, + au: null, + softbank: null, + google: null, + image: "1f922.png", + sheet_x: 40, + sheet_y: 16, + short_name: "nauseated_face", + short_names: ["nauseated_face"], + text: null, + texts: null, + category: "Smileys & Emotion", + subcategory: "face-unwell", + sort_order: 59, + added_in: "3.0", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + face_vomiting: { + char: "🤮", + key: "face_vomiting", + keywords: ["face_vomiting", "FACE WITH OPEN MOUTH VOMITING"], + category: "people", + lib: { + name: "FACE WITH OPEN MOUTH VOMITING", + unified: "1F92E", + non_qualified: null, + docomo: null, + au: null, + softbank: null, + google: null, + image: "1f92e.png", + sheet_x: 40, + sheet_y: 45, + short_name: "face_vomiting", + short_names: ["face_vomiting", "face_with_open_mouth_vomiting"], + text: null, + texts: null, + category: "Smileys & Emotion", + subcategory: "face-unwell", + sort_order: 60, + added_in: "5.0", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + sneezing_face: { + char: "🤧", + key: "sneezing_face", + keywords: ["sneezing_face", "SNEEZING FACE"], + category: "people", + lib: { + name: "SNEEZING FACE", + unified: "1F927", + non_qualified: null, + docomo: null, + au: null, + softbank: null, + google: null, + image: "1f927.png", + sheet_x: 40, + sheet_y: 38, + short_name: "sneezing_face", + short_names: ["sneezing_face"], + text: null, + texts: null, + category: "Smileys & Emotion", + subcategory: "face-unwell", + sort_order: 61, + added_in: "3.0", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + hot_face: { + char: "🥵", + key: "hot_face", + keywords: ["hot_face", "OVERHEATED FACE"], + category: "people", + lib: { + name: "OVERHEATED FACE", + unified: "1F975", + non_qualified: null, + docomo: null, + au: null, + softbank: null, + google: null, + image: "1f975.png", + sheet_x: 44, + sheet_y: 4, + short_name: "hot_face", + short_names: ["hot_face"], + text: null, + texts: null, + category: "Smileys & Emotion", + subcategory: "face-unwell", + sort_order: 62, + added_in: "11.0", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + cold_face: { + char: "🥶", + key: "cold_face", + keywords: ["cold_face", "FREEZING FACE"], + category: "people", + lib: { + name: "FREEZING FACE", + unified: "1F976", + non_qualified: null, + docomo: null, + au: null, + softbank: null, + google: null, + image: "1f976.png", + sheet_x: 44, + sheet_y: 5, + short_name: "cold_face", + short_names: ["cold_face"], + text: null, + texts: null, + category: "Smileys & Emotion", + subcategory: "face-unwell", + sort_order: 63, + added_in: "11.0", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + woozy_face: { + char: "🥴", + key: "woozy_face", + keywords: ["woozy_face", "FACE WITH UNEVEN EYES AND WAVY MOUTH"], + category: "people", + lib: { + name: "FACE WITH UNEVEN EYES AND WAVY MOUTH", + unified: "1F974", + non_qualified: null, + docomo: null, + au: null, + softbank: null, + google: null, + image: "1f974.png", + sheet_x: 44, + sheet_y: 3, + short_name: "woozy_face", + short_names: ["woozy_face"], + text: null, + texts: null, + category: "Smileys & Emotion", + subcategory: "face-unwell", + sort_order: 64, + added_in: "11.0", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + dizzy_face: { + char: "😵", + key: "dizzy_face", + keywords: ["dizzy_face", "DIZZY FACE"], + category: "people", + lib: { + name: "DIZZY FACE", + unified: "1F635", + non_qualified: null, + docomo: "E6F4", + au: "E5AE", + softbank: null, + google: "FE324", + image: "1f635.png", + sheet_x: 33, + sheet_y: 15, + short_name: "dizzy_face", + short_names: ["dizzy_face"], + text: null, + texts: null, + category: "Smileys & Emotion", + subcategory: "face-unwell", + sort_order: 65, + added_in: "0.6", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + face_with_spiral_eyes: { + char: "😵‍💫", + key: "face_with_spiral_eyes", + keywords: ["face_with_spiral_eyes", "FACE WITH SPIRAL EYES"], + category: "people", + lib: { + name: "FACE WITH SPIRAL EYES", + unified: "1F635-200D-1F4AB", + non_qualified: null, + docomo: null, + au: null, + softbank: null, + google: null, + image: "1f635-200d-1f4ab.png", + sheet_x: 33, + sheet_y: 14, + short_name: "face_with_spiral_eyes", + short_names: ["face_with_spiral_eyes"], + text: null, + texts: null, + category: "Smileys & Emotion", + subcategory: "face-unwell", + sort_order: 66, + added_in: "13.1", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + exploding_head: { + char: "🤯", + key: "exploding_head", + keywords: ["exploding_head", "SHOCKED FACE WITH EXPLODING HEAD"], + category: "people", + lib: { + name: "SHOCKED FACE WITH EXPLODING HEAD", + unified: "1F92F", + non_qualified: null, + docomo: null, + au: null, + softbank: null, + google: null, + image: "1f92f.png", + sheet_x: 40, + sheet_y: 46, + short_name: "exploding_head", + short_names: ["exploding_head", "shocked_face_with_exploding_head"], + text: null, + texts: null, + category: "Smileys & Emotion", + subcategory: "face-unwell", + sort_order: 67, + added_in: "5.0", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + face_with_cowboy_hat: { + char: "🤠", + key: "face_with_cowboy_hat", + keywords: ["face_with_cowboy_hat", "FACE WITH COWBOY HAT"], + category: "people", + lib: { + name: "FACE WITH COWBOY HAT", + unified: "1F920", + non_qualified: null, + docomo: null, + au: null, + softbank: null, + google: null, + image: "1f920.png", + sheet_x: 40, + sheet_y: 14, + short_name: "face_with_cowboy_hat", + short_names: ["face_with_cowboy_hat"], + text: null, + texts: null, + category: "Smileys & Emotion", + subcategory: "face-hat", + sort_order: 68, + added_in: "3.0", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + partying_face: { + char: "🥳", + key: "partying_face", + keywords: ["partying_face", "FACE WITH PARTY HORN AND PARTY HAT"], + category: "people", + lib: { + name: "FACE WITH PARTY HORN AND PARTY HAT", + unified: "1F973", + non_qualified: null, + docomo: null, + au: null, + softbank: null, + google: null, + image: "1f973.png", + sheet_x: 44, + sheet_y: 2, + short_name: "partying_face", + short_names: ["partying_face"], + text: null, + texts: null, + category: "Smileys & Emotion", + subcategory: "face-hat", + sort_order: 69, + added_in: "11.0", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + disguised_face: { + char: "🥸", + key: "disguised_face", + keywords: ["disguised_face", "DISGUISED FACE"], + category: "people", + lib: { + name: "DISGUISED FACE", + unified: "1F978", + non_qualified: null, + docomo: null, + au: null, + softbank: null, + google: null, + image: "1f978.png", + sheet_x: 44, + sheet_y: 12, + short_name: "disguised_face", + short_names: ["disguised_face"], + text: null, + texts: null, + category: "Smileys & Emotion", + subcategory: "face-hat", + sort_order: 70, + added_in: "13.0", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + sunglasses: { + char: "😎", + key: "sunglasses", + keywords: ["sunglasses", "SMILING FACE WITH SUNGLASSES"], + category: "people", + lib: { + name: "SMILING FACE WITH SUNGLASSES", + unified: "1F60E", + non_qualified: null, + docomo: null, + au: null, + softbank: null, + google: null, + image: "1f60e.png", + sheet_x: 32, + sheet_y: 35, + short_name: "sunglasses", + short_names: ["sunglasses"], + text: null, + texts: ["8)"], + category: "Smileys & Emotion", + subcategory: "face-glasses", + sort_order: 71, + added_in: "1.0", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + nerd_face: { + char: "🤓", + key: "nerd_face", + keywords: ["nerd_face", "NERD FACE"], + category: "people", + lib: { + name: "NERD FACE", + unified: "1F913", + non_qualified: null, + docomo: null, + au: null, + softbank: null, + google: null, + image: "1f913.png", + sheet_x: 39, + sheet_y: 2, + short_name: "nerd_face", + short_names: ["nerd_face"], + text: null, + texts: null, + category: "Smileys & Emotion", + subcategory: "face-glasses", + sort_order: 72, + added_in: "1.0", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + face_with_monocle: { + char: "🧐", + key: "face_with_monocle", + keywords: ["face_with_monocle", "FACE WITH MONOCLE"], + category: "people", + lib: { + name: "FACE WITH MONOCLE", + unified: "1F9D0", + non_qualified: null, + docomo: null, + au: null, + softbank: null, + google: null, + image: "1f9d0.png", + sheet_x: 47, + sheet_y: 13, + short_name: "face_with_monocle", + short_names: ["face_with_monocle"], + text: null, + texts: null, + category: "Smileys & Emotion", + subcategory: "face-glasses", + sort_order: 73, + added_in: "5.0", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + confused: { + char: "😕", + key: "confused", + keywords: ["confused", "CONFUSED FACE"], + category: "people", + lib: { + name: "CONFUSED FACE", + unified: "1F615", + non_qualified: null, + docomo: null, + au: null, + softbank: null, + google: null, + image: "1f615.png", + sheet_x: 32, + sheet_y: 42, + short_name: "confused", + short_names: ["confused"], + text: null, + texts: [":\\", ":-\\", ":/", ":-/"], + category: "Smileys & Emotion", + subcategory: "face-concerned", + sort_order: 74, + added_in: "1.0", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + face_with_diagonal_mouth: { + char: "🫤", + key: "face_with_diagonal_mouth", + keywords: ["face_with_diagonal_mouth", "FACE WITH DIAGONAL MOUTH"], + category: "people", + lib: { + name: "FACE WITH DIAGONAL MOUTH", + unified: "1FAE4", + non_qualified: null, + docomo: null, + au: null, + softbank: null, + google: null, + image: "1fae4.png", + sheet_x: 55, + sheet_y: 34, + short_name: "face_with_diagonal_mouth", + short_names: ["face_with_diagonal_mouth"], + text: null, + texts: null, + category: "Smileys & Emotion", + subcategory: "face-concerned", + sort_order: 75, + added_in: "14.0", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + worried: { + char: "😟", + key: "worried", + keywords: ["worried", "WORRIED FACE"], + category: "people", + lib: { + name: "WORRIED FACE", + unified: "1F61F", + non_qualified: null, + docomo: null, + au: null, + softbank: null, + google: null, + image: "1f61f.png", + sheet_x: 32, + sheet_y: 52, + short_name: "worried", + short_names: ["worried"], + text: null, + texts: null, + category: "Smileys & Emotion", + subcategory: "face-concerned", + sort_order: 76, + added_in: "1.0", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + slightly_frowning_face: { + char: "🙁", + key: "slightly_frowning_face", + keywords: ["slightly_frowning_face", "SLIGHTLY FROWNING FACE"], + category: "people", + lib: { + name: "SLIGHTLY FROWNING FACE", + unified: "1F641", + non_qualified: null, + docomo: null, + au: null, + softbank: null, + google: null, + image: "1f641.png", + sheet_x: 33, + sheet_y: 28, + short_name: "slightly_frowning_face", + short_names: ["slightly_frowning_face"], + text: null, + texts: null, + category: "Smileys & Emotion", + subcategory: "face-concerned", + sort_order: 77, + added_in: "1.0", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + white_frowning_face: { + char: "☹️", + key: "white_frowning_face", + keywords: ["white_frowning_face", "FROWNING FACE"], + category: "people", + lib: { + name: "FROWNING FACE", + unified: "2639-FE0F", + non_qualified: "2639", + docomo: null, + au: null, + softbank: null, + google: null, + image: "2639-fe0f.png", + sheet_x: 57, + sheet_y: 34, + short_name: "white_frowning_face", + short_names: ["white_frowning_face"], + text: null, + texts: null, + category: "Smileys & Emotion", + subcategory: "face-concerned", + sort_order: 78, + added_in: "0.7", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + open_mouth: { + char: "😮", + key: "open_mouth", + keywords: ["open_mouth", "FACE WITH OPEN MOUTH"], + category: "people", + lib: { + name: "FACE WITH OPEN MOUTH", + unified: "1F62E", + non_qualified: null, + docomo: null, + au: null, + softbank: null, + google: null, + image: "1f62e.png", + sheet_x: 33, + sheet_y: 7, + short_name: "open_mouth", + short_names: ["open_mouth"], + text: null, + texts: [":o", ":-o", ":O", ":-O"], + category: "Smileys & Emotion", + subcategory: "face-concerned", + sort_order: 79, + added_in: "1.0", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + hushed: { + char: "😯", + key: "hushed", + keywords: ["hushed", "HUSHED FACE"], + category: "people", + lib: { + name: "HUSHED FACE", + unified: "1F62F", + non_qualified: null, + docomo: null, + au: null, + softbank: null, + google: null, + image: "1f62f.png", + sheet_x: 33, + sheet_y: 8, + short_name: "hushed", + short_names: ["hushed"], + text: null, + texts: null, + category: "Smileys & Emotion", + subcategory: "face-concerned", + sort_order: 80, + added_in: "1.0", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + astonished: { + char: "😲", + key: "astonished", + keywords: ["astonished", "ASTONISHED FACE"], + category: "people", + lib: { + name: "ASTONISHED FACE", + unified: "1F632", + non_qualified: null, + docomo: "E6F4", + au: "EACA", + softbank: "E410", + google: "FE322", + image: "1f632.png", + sheet_x: 33, + sheet_y: 11, + short_name: "astonished", + short_names: ["astonished"], + text: null, + texts: null, + category: "Smileys & Emotion", + subcategory: "face-concerned", + sort_order: 81, + added_in: "0.6", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + flushed: { + char: "😳", + key: "flushed", + keywords: ["flushed", "FLUSHED FACE"], + category: "people", + lib: { + name: "FLUSHED FACE", + unified: "1F633", + non_qualified: null, + docomo: "E72A", + au: "EAC8", + softbank: "E40D", + google: "FE32F", + image: "1f633.png", + sheet_x: 33, + sheet_y: 12, + short_name: "flushed", + short_names: ["flushed"], + text: null, + texts: null, + category: "Smileys & Emotion", + subcategory: "face-concerned", + sort_order: 82, + added_in: "0.6", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + pleading_face: { + char: "🥺", + key: "pleading_face", + keywords: ["pleading_face", "FACE WITH PLEADING EYES"], + category: "people", + lib: { + name: "FACE WITH PLEADING EYES", + unified: "1F97A", + non_qualified: null, + docomo: null, + au: null, + softbank: null, + google: null, + image: "1f97a.png", + sheet_x: 44, + sheet_y: 14, + short_name: "pleading_face", + short_names: ["pleading_face"], + text: null, + texts: null, + category: "Smileys & Emotion", + subcategory: "face-concerned", + sort_order: 83, + added_in: "11.0", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + face_holding_back_tears: { + char: "🥹", + key: "face_holding_back_tears", + keywords: ["face_holding_back_tears", "FACE HOLDING BACK TEARS"], + category: "people", + lib: { + name: "FACE HOLDING BACK TEARS", + unified: "1F979", + non_qualified: null, + docomo: null, + au: null, + softbank: null, + google: null, + image: "1f979.png", + sheet_x: 44, + sheet_y: 13, + short_name: "face_holding_back_tears", + short_names: ["face_holding_back_tears"], + text: null, + texts: null, + category: "Smileys & Emotion", + subcategory: "face-concerned", + sort_order: 84, + added_in: "14.0", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + frowning: { + char: "😦", + key: "frowning", + keywords: ["frowning", "FROWNING FACE WITH OPEN MOUTH"], + category: "people", + lib: { + name: "FROWNING FACE WITH OPEN MOUTH", + unified: "1F626", + non_qualified: null, + docomo: null, + au: null, + softbank: null, + google: null, + image: "1f626.png", + sheet_x: 32, + sheet_y: 59, + short_name: "frowning", + short_names: ["frowning"], + text: null, + texts: null, + category: "Smileys & Emotion", + subcategory: "face-concerned", + sort_order: 85, + added_in: "1.0", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + anguished: { + char: "😧", + key: "anguished", + keywords: ["anguished", "ANGUISHED FACE"], + category: "people", + lib: { + name: "ANGUISHED FACE", + unified: "1F627", + non_qualified: null, + docomo: null, + au: null, + softbank: null, + google: null, + image: "1f627.png", + sheet_x: 32, + sheet_y: 60, + short_name: "anguished", + short_names: ["anguished"], + text: null, + texts: ["D:"], + category: "Smileys & Emotion", + subcategory: "face-concerned", + sort_order: 86, + added_in: "1.0", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + fearful: { + char: "😨", + key: "fearful", + keywords: ["fearful", "FEARFUL FACE"], + category: "people", + lib: { + name: "FEARFUL FACE", + unified: "1F628", + non_qualified: null, + docomo: "E757", + au: "EAC6", + softbank: "E40B", + google: "FE33B", + image: "1f628.png", + sheet_x: 33, + sheet_y: 0, + short_name: "fearful", + short_names: ["fearful"], + text: null, + texts: null, + category: "Smileys & Emotion", + subcategory: "face-concerned", + sort_order: 87, + added_in: "0.6", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + cold_sweat: { + char: "😰", + key: "cold_sweat", + keywords: ["cold_sweat", "FACE WITH OPEN MOUTH AND COLD SWEAT"], + category: "people", + lib: { + name: "FACE WITH OPEN MOUTH AND COLD SWEAT", + unified: "1F630", + non_qualified: null, + docomo: "E723", + au: "EACB", + softbank: "E40F", + google: "FE325", + image: "1f630.png", + sheet_x: 33, + sheet_y: 9, + short_name: "cold_sweat", + short_names: ["cold_sweat"], + text: null, + texts: null, + category: "Smileys & Emotion", + subcategory: "face-concerned", + sort_order: 88, + added_in: "0.6", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + disappointed_relieved: { + char: "😥", + key: "disappointed_relieved", + keywords: ["disappointed_relieved", "DISAPPOINTED BUT RELIEVED FACE"], + category: "people", + lib: { + name: "DISAPPOINTED BUT RELIEVED FACE", + unified: "1F625", + non_qualified: null, + docomo: "E723", + au: "E5C6", + softbank: "E401", + google: "FE345", + image: "1f625.png", + sheet_x: 32, + sheet_y: 58, + short_name: "disappointed_relieved", + short_names: ["disappointed_relieved"], + text: null, + texts: null, + category: "Smileys & Emotion", + subcategory: "face-concerned", + sort_order: 89, + added_in: "0.6", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + cry: { + char: "😢", + key: "cry", + keywords: ["cry", "CRYING FACE"], + category: "people", + lib: { + name: "CRYING FACE", + unified: "1F622", + non_qualified: null, + docomo: "E72E", + au: "EB69", + softbank: "E413", + google: "FE339", + image: "1f622.png", + sheet_x: 32, + sheet_y: 55, + short_name: "cry", + short_names: ["cry"], + text: ":'(", + texts: [":'("], + category: "Smileys & Emotion", + subcategory: "face-concerned", + sort_order: 90, + added_in: "0.6", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + sob: { + char: "😭", + key: "sob", + keywords: ["sob", "LOUDLY CRYING FACE"], + category: "people", + lib: { + name: "LOUDLY CRYING FACE", + unified: "1F62D", + non_qualified: null, + docomo: "E72D", + au: "E473", + softbank: "E411", + google: "FE33A", + image: "1f62d.png", + sheet_x: 33, + sheet_y: 5, + short_name: "sob", + short_names: ["sob"], + text: ":'(", + texts: null, + category: "Smileys & Emotion", + subcategory: "face-concerned", + sort_order: 91, + added_in: "0.6", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + scream: { + char: "😱", + key: "scream", + keywords: ["scream", "FACE SCREAMING IN FEAR"], + category: "people", + lib: { + name: "FACE SCREAMING IN FEAR", + unified: "1F631", + non_qualified: null, + docomo: "E757", + au: "E5C5", + softbank: "E107", + google: "FE341", + image: "1f631.png", + sheet_x: 33, + sheet_y: 10, + short_name: "scream", + short_names: ["scream"], + text: null, + texts: null, + category: "Smileys & Emotion", + subcategory: "face-concerned", + sort_order: 92, + added_in: "0.6", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + confounded: { + char: "😖", + key: "confounded", + keywords: ["confounded", "CONFOUNDED FACE"], + category: "people", + lib: { + name: "CONFOUNDED FACE", + unified: "1F616", + non_qualified: null, + docomo: "E6F3", + au: "EAC3", + softbank: "E407", + google: "FE33F", + image: "1f616.png", + sheet_x: 32, + sheet_y: 43, + short_name: "confounded", + short_names: ["confounded"], + text: null, + texts: null, + category: "Smileys & Emotion", + subcategory: "face-concerned", + sort_order: 93, + added_in: "0.6", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + persevere: { + char: "😣", + key: "persevere", + keywords: ["persevere", "PERSEVERING FACE"], + category: "people", + lib: { + name: "PERSEVERING FACE", + unified: "1F623", + non_qualified: null, + docomo: "E72B", + au: "EAC2", + softbank: "E406", + google: "FE33C", + image: "1f623.png", + sheet_x: 32, + sheet_y: 56, + short_name: "persevere", + short_names: ["persevere"], + text: null, + texts: null, + category: "Smileys & Emotion", + subcategory: "face-concerned", + sort_order: 94, + added_in: "0.6", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + disappointed: { + char: "😞", + key: "disappointed", + keywords: ["disappointed", "DISAPPOINTED FACE"], + category: "people", + lib: { + name: "DISAPPOINTED FACE", + unified: "1F61E", + non_qualified: null, + docomo: "E6F2", + au: "EAC0", + softbank: "E058", + google: "FE323", + image: "1f61e.png", + sheet_x: 32, + sheet_y: 51, + short_name: "disappointed", + short_names: ["disappointed"], + text: ":(", + texts: ["):", ":(", ":-("], + category: "Smileys & Emotion", + subcategory: "face-concerned", + sort_order: 95, + added_in: "0.6", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + sweat: { + char: "😓", + key: "sweat", + keywords: ["sweat", "FACE WITH COLD SWEAT"], + category: "people", + lib: { + name: "FACE WITH COLD SWEAT", + unified: "1F613", + non_qualified: null, + docomo: "E723", + au: "E5C6", + softbank: "E108", + google: "FE344", + image: "1f613.png", + sheet_x: 32, + sheet_y: 40, + short_name: "sweat", + short_names: ["sweat"], + text: null, + texts: null, + category: "Smileys & Emotion", + subcategory: "face-concerned", + sort_order: 96, + added_in: "0.6", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + weary: { + char: "😩", + key: "weary", + keywords: ["weary", "WEARY FACE"], + category: "people", + lib: { + name: "WEARY FACE", + unified: "1F629", + non_qualified: null, + docomo: "E6F3", + au: "EB67", + softbank: null, + google: "FE321", + image: "1f629.png", + sheet_x: 33, + sheet_y: 1, + short_name: "weary", + short_names: ["weary"], + text: null, + texts: null, + category: "Smileys & Emotion", + subcategory: "face-concerned", + sort_order: 97, + added_in: "0.6", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + tired_face: { + char: "😫", + key: "tired_face", + keywords: ["tired_face", "TIRED FACE"], + category: "people", + lib: { + name: "TIRED FACE", + unified: "1F62B", + non_qualified: null, + docomo: "E72B", + au: "E474", + softbank: null, + google: "FE346", + image: "1f62b.png", + sheet_x: 33, + sheet_y: 3, + short_name: "tired_face", + short_names: ["tired_face"], + text: null, + texts: null, + category: "Smileys & Emotion", + subcategory: "face-concerned", + sort_order: 98, + added_in: "0.6", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + yawning_face: { + char: "🥱", + key: "yawning_face", + keywords: ["yawning_face", "YAWNING FACE"], + category: "people", + lib: { + name: "YAWNING FACE", + unified: "1F971", + non_qualified: null, + docomo: null, + au: null, + softbank: null, + google: null, + image: "1f971.png", + sheet_x: 44, + sheet_y: 0, + short_name: "yawning_face", + short_names: ["yawning_face"], + text: null, + texts: null, + category: "Smileys & Emotion", + subcategory: "face-concerned", + sort_order: 99, + added_in: "12.0", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + triumph: { + char: "😤", + key: "triumph", + keywords: ["triumph", "FACE WITH LOOK OF TRIUMPH"], + category: "people", + lib: { + name: "FACE WITH LOOK OF TRIUMPH", + unified: "1F624", + non_qualified: null, + docomo: "E753", + au: "EAC1", + softbank: null, + google: "FE328", + image: "1f624.png", + sheet_x: 32, + sheet_y: 57, + short_name: "triumph", + short_names: ["triumph"], + text: null, + texts: null, + category: "Smileys & Emotion", + subcategory: "face-negative", + sort_order: 100, + added_in: "0.6", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + rage: { + char: "😡", + key: "rage", + keywords: ["rage", "POUTING FACE"], + category: "people", + lib: { + name: "POUTING FACE", + unified: "1F621", + non_qualified: null, + docomo: "E724", + au: "EB5D", + softbank: "E416", + google: "FE33D", + image: "1f621.png", + sheet_x: 32, + sheet_y: 54, + short_name: "rage", + short_names: ["rage"], + text: null, + texts: null, + category: "Smileys & Emotion", + subcategory: "face-negative", + sort_order: 101, + added_in: "0.6", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + angry: { + char: "😠", + key: "angry", + keywords: ["angry", "ANGRY FACE"], + category: "people", + lib: { + name: "ANGRY FACE", + unified: "1F620", + non_qualified: null, + docomo: "E6F1", + au: "E472", + softbank: "E059", + google: "FE320", + image: "1f620.png", + sheet_x: 32, + sheet_y: 53, + short_name: "angry", + short_names: ["angry"], + text: null, + texts: [">:(", ">:-("], + category: "Smileys & Emotion", + subcategory: "face-negative", + sort_order: 102, + added_in: "0.6", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + face_with_symbols_on_mouth: { + char: "🤬", + key: "face_with_symbols_on_mouth", + keywords: [ + "face_with_symbols_on_mouth", + "SERIOUS FACE WITH SYMBOLS COVERING MOUTH", + ], + category: "people", + lib: { + name: "SERIOUS FACE WITH SYMBOLS COVERING MOUTH", + unified: "1F92C", + non_qualified: null, + docomo: null, + au: null, + softbank: null, + google: null, + image: "1f92c.png", + sheet_x: 40, + sheet_y: 43, + short_name: "face_with_symbols_on_mouth", + short_names: [ + "face_with_symbols_on_mouth", + "serious_face_with_symbols_covering_mouth", + ], + text: null, + texts: null, + category: "Smileys & Emotion", + subcategory: "face-negative", + sort_order: 103, + added_in: "5.0", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + smiling_imp: { + char: "😈", + key: "smiling_imp", + keywords: ["smiling_imp", "SMILING FACE WITH HORNS"], + category: "people", + lib: { + name: "SMILING FACE WITH HORNS", + unified: "1F608", + non_qualified: null, + docomo: null, + au: null, + softbank: null, + google: null, + image: "1f608.png", + sheet_x: 32, + sheet_y: 29, + short_name: "smiling_imp", + short_names: ["smiling_imp"], + text: null, + texts: null, + category: "Smileys & Emotion", + subcategory: "face-negative", + sort_order: 104, + added_in: "1.0", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + imp: { + char: "👿", + key: "imp", + keywords: ["imp", "IMP"], + category: "people", + lib: { + name: "IMP", + unified: "1F47F", + non_qualified: null, + docomo: null, + au: "E4EF", + softbank: "E11A", + google: "FE1B2", + image: "1f47f.png", + sheet_x: 25, + sheet_y: 9, + short_name: "imp", + short_names: ["imp"], + text: null, + texts: null, + category: "Smileys & Emotion", + subcategory: "face-negative", + sort_order: 105, + added_in: "0.6", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + skull: { + char: "💀", + key: "skull", + keywords: ["skull", "SKULL"], + category: "people", + lib: { + name: "SKULL", + unified: "1F480", + non_qualified: null, + docomo: null, + au: "E4F8", + softbank: "E11C", + google: "FE1B3", + image: "1f480.png", + sheet_x: 25, + sheet_y: 10, + short_name: "skull", + short_names: ["skull"], + text: null, + texts: null, + category: "Smileys & Emotion", + subcategory: "face-negative", + sort_order: 106, + added_in: "0.6", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + skull_and_crossbones: { + char: "☠️", + key: "skull_and_crossbones", + keywords: ["skull_and_crossbones", "SKULL AND CROSSBONES"], + category: "people", + lib: { + name: "SKULL AND CROSSBONES", + unified: "2620-FE0F", + non_qualified: "2620", + docomo: null, + au: null, + softbank: null, + google: null, + image: "2620-fe0f.png", + sheet_x: 57, + sheet_y: 26, + short_name: "skull_and_crossbones", + short_names: ["skull_and_crossbones"], + text: null, + texts: null, + category: "Smileys & Emotion", + subcategory: "face-negative", + sort_order: 107, + added_in: "1.0", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + hankey: { + char: "💩", + key: "hankey", + keywords: ["hankey", "PILE OF POO"], + category: "people", + lib: { + name: "PILE OF POO", + unified: "1F4A9", + non_qualified: null, + docomo: null, + au: "E4F5", + softbank: "E05A", + google: "FE4F4", + image: "1f4a9.png", + sheet_x: 27, + sheet_y: 57, + short_name: "hankey", + short_names: ["hankey", "poop", "shit"], + text: null, + texts: null, + category: "Smileys & Emotion", + subcategory: "face-costume", + sort_order: 108, + added_in: "0.6", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + clown_face: { + char: "🤡", + key: "clown_face", + keywords: ["clown_face", "CLOWN FACE"], + category: "people", + lib: { + name: "CLOWN FACE", + unified: "1F921", + non_qualified: null, + docomo: null, + au: null, + softbank: null, + google: null, + image: "1f921.png", + sheet_x: 40, + sheet_y: 15, + short_name: "clown_face", + short_names: ["clown_face"], + text: null, + texts: null, + category: "Smileys & Emotion", + subcategory: "face-costume", + sort_order: 109, + added_in: "3.0", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + japanese_ogre: { + char: "👹", + key: "japanese_ogre", + keywords: ["japanese_ogre", "JAPANESE OGRE"], + category: "people", + lib: { + name: "JAPANESE OGRE", + unified: "1F479", + non_qualified: null, + docomo: null, + au: "EB44", + softbank: null, + google: "FE1AC", + image: "1f479.png", + sheet_x: 24, + sheet_y: 59, + short_name: "japanese_ogre", + short_names: ["japanese_ogre"], + text: null, + texts: null, + category: "Smileys & Emotion", + subcategory: "face-costume", + sort_order: 110, + added_in: "0.6", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + japanese_goblin: { + char: "👺", + key: "japanese_goblin", + keywords: ["japanese_goblin", "JAPANESE GOBLIN"], + category: "people", + lib: { + name: "JAPANESE GOBLIN", + unified: "1F47A", + non_qualified: null, + docomo: null, + au: "EB45", + softbank: null, + google: "FE1AD", + image: "1f47a.png", + sheet_x: 24, + sheet_y: 60, + short_name: "japanese_goblin", + short_names: ["japanese_goblin"], + text: null, + texts: null, + category: "Smileys & Emotion", + subcategory: "face-costume", + sort_order: 111, + added_in: "0.6", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + ghost: { + char: "👻", + key: "ghost", + keywords: ["ghost", "GHOST"], + category: "people", + lib: { + name: "GHOST", + unified: "1F47B", + non_qualified: null, + docomo: null, + au: "E4CB", + softbank: "E11B", + google: "FE1AE", + image: "1f47b.png", + sheet_x: 25, + sheet_y: 0, + short_name: "ghost", + short_names: ["ghost"], + text: null, + texts: null, + category: "Smileys & Emotion", + subcategory: "face-costume", + sort_order: 112, + added_in: "0.6", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + alien: { + char: "👽", + key: "alien", + keywords: ["alien", "EXTRATERRESTRIAL ALIEN"], + category: "people", + lib: { + name: "EXTRATERRESTRIAL ALIEN", + unified: "1F47D", + non_qualified: null, + docomo: null, + au: "E50E", + softbank: "E10C", + google: "FE1B0", + image: "1f47d.png", + sheet_x: 25, + sheet_y: 7, + short_name: "alien", + short_names: ["alien"], + text: null, + texts: null, + category: "Smileys & Emotion", + subcategory: "face-costume", + sort_order: 113, + added_in: "0.6", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + space_invader: { + char: "👾", + key: "space_invader", + keywords: ["space_invader", "ALIEN MONSTER"], + category: "people", + lib: { + name: "ALIEN MONSTER", + unified: "1F47E", + non_qualified: null, + docomo: null, + au: "E4EC", + softbank: "E12B", + google: "FE1B1", + image: "1f47e.png", + sheet_x: 25, + sheet_y: 8, + short_name: "space_invader", + short_names: ["space_invader"], + text: null, + texts: null, + category: "Smileys & Emotion", + subcategory: "face-costume", + sort_order: 114, + added_in: "0.6", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + robot_face: { + char: "🤖", + key: "robot_face", + keywords: ["robot_face", "ROBOT FACE"], + category: "people", + lib: { + name: "ROBOT FACE", + unified: "1F916", + non_qualified: null, + docomo: null, + au: null, + softbank: null, + google: null, + image: "1f916.png", + sheet_x: 39, + sheet_y: 5, + short_name: "robot_face", + short_names: ["robot_face"], + text: null, + texts: null, + category: "Smileys & Emotion", + subcategory: "face-costume", + sort_order: 115, + added_in: "1.0", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + smiley_cat: { + char: "😺", + key: "smiley_cat", + keywords: ["smiley_cat", "SMILING CAT FACE WITH OPEN MOUTH"], + category: "people", + lib: { + name: "SMILING CAT FACE WITH OPEN MOUTH", + unified: "1F63A", + non_qualified: null, + docomo: "E6F0", + au: "EB61", + softbank: null, + google: "FE348", + image: "1f63a.png", + sheet_x: 33, + sheet_y: 21, + short_name: "smiley_cat", + short_names: ["smiley_cat"], + text: null, + texts: null, + category: "Smileys & Emotion", + subcategory: "cat-face", + sort_order: 116, + added_in: "0.6", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + smile_cat: { + char: "😸", + key: "smile_cat", + keywords: ["smile_cat", "GRINNING CAT FACE WITH SMILING EYES"], + category: "people", + lib: { + name: "GRINNING CAT FACE WITH SMILING EYES", + unified: "1F638", + non_qualified: null, + docomo: "E753", + au: "EB7F", + softbank: null, + google: "FE349", + image: "1f638.png", + sheet_x: 33, + sheet_y: 19, + short_name: "smile_cat", + short_names: ["smile_cat"], + text: null, + texts: null, + category: "Smileys & Emotion", + subcategory: "cat-face", + sort_order: 117, + added_in: "0.6", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + joy_cat: { + char: "😹", + key: "joy_cat", + keywords: ["joy_cat", "CAT FACE WITH TEARS OF JOY"], + category: "people", + lib: { + name: "CAT FACE WITH TEARS OF JOY", + unified: "1F639", + non_qualified: null, + docomo: "E72A", + au: "EB63", + softbank: null, + google: "FE34A", + image: "1f639.png", + sheet_x: 33, + sheet_y: 20, + short_name: "joy_cat", + short_names: ["joy_cat"], + text: null, + texts: null, + category: "Smileys & Emotion", + subcategory: "cat-face", + sort_order: 118, + added_in: "0.6", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + heart_eyes_cat: { + char: "😻", + key: "heart_eyes_cat", + keywords: ["heart_eyes_cat", "SMILING CAT FACE WITH HEART-SHAPED EYES"], + category: "people", + lib: { + name: "SMILING CAT FACE WITH HEART-SHAPED EYES", + unified: "1F63B", + non_qualified: null, + docomo: "E726", + au: "EB65", + softbank: null, + google: "FE34C", + image: "1f63b.png", + sheet_x: 33, + sheet_y: 22, + short_name: "heart_eyes_cat", + short_names: ["heart_eyes_cat"], + text: null, + texts: null, + category: "Smileys & Emotion", + subcategory: "cat-face", + sort_order: 119, + added_in: "0.6", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + smirk_cat: { + char: "😼", + key: "smirk_cat", + keywords: ["smirk_cat", "CAT FACE WITH WRY SMILE"], + category: "people", + lib: { + name: "CAT FACE WITH WRY SMILE", + unified: "1F63C", + non_qualified: null, + docomo: "E753", + au: "EB6A", + softbank: null, + google: "FE34F", + image: "1f63c.png", + sheet_x: 33, + sheet_y: 23, + short_name: "smirk_cat", + short_names: ["smirk_cat"], + text: null, + texts: null, + category: "Smileys & Emotion", + subcategory: "cat-face", + sort_order: 120, + added_in: "0.6", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + kissing_cat: { + char: "😽", + key: "kissing_cat", + keywords: ["kissing_cat", "KISSING CAT FACE WITH CLOSED EYES"], + category: "people", + lib: { + name: "KISSING CAT FACE WITH CLOSED EYES", + unified: "1F63D", + non_qualified: null, + docomo: "E726", + au: "EB60", + softbank: null, + google: "FE34B", + image: "1f63d.png", + sheet_x: 33, + sheet_y: 24, + short_name: "kissing_cat", + short_names: ["kissing_cat"], + text: null, + texts: null, + category: "Smileys & Emotion", + subcategory: "cat-face", + sort_order: 121, + added_in: "0.6", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + scream_cat: { + char: "🙀", + key: "scream_cat", + keywords: ["scream_cat", "WEARY CAT FACE"], + category: "people", + lib: { + name: "WEARY CAT FACE", + unified: "1F640", + non_qualified: null, + docomo: "E6F3", + au: "EB66", + softbank: null, + google: "FE350", + image: "1f640.png", + sheet_x: 33, + sheet_y: 27, + short_name: "scream_cat", + short_names: ["scream_cat"], + text: null, + texts: null, + category: "Smileys & Emotion", + subcategory: "cat-face", + sort_order: 122, + added_in: "0.6", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + crying_cat_face: { + char: "😿", + key: "crying_cat_face", + keywords: ["crying_cat_face", "CRYING CAT FACE"], + category: "people", + lib: { + name: "CRYING CAT FACE", + unified: "1F63F", + non_qualified: null, + docomo: "E72E", + au: "EB68", + softbank: null, + google: "FE34D", + image: "1f63f.png", + sheet_x: 33, + sheet_y: 26, + short_name: "crying_cat_face", + short_names: ["crying_cat_face"], + text: null, + texts: null, + category: "Smileys & Emotion", + subcategory: "cat-face", + sort_order: 123, + added_in: "0.6", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + pouting_cat: { + char: "😾", + key: "pouting_cat", + keywords: ["pouting_cat", "POUTING CAT FACE"], + category: "people", + lib: { + name: "POUTING CAT FACE", + unified: "1F63E", + non_qualified: null, + docomo: "E724", + au: "EB5E", + softbank: null, + google: "FE34E", + image: "1f63e.png", + sheet_x: 33, + sheet_y: 25, + short_name: "pouting_cat", + short_names: ["pouting_cat"], + text: null, + texts: null, + category: "Smileys & Emotion", + subcategory: "cat-face", + sort_order: 124, + added_in: "0.6", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + see_no_evil: { + char: "🙈", + key: "see_no_evil", + keywords: ["see_no_evil", "SEE-NO-EVIL MONKEY"], + category: "people", + lib: { + name: "SEE-NO-EVIL MONKEY", + unified: "1F648", + non_qualified: null, + docomo: null, + au: "EB50", + softbank: null, + google: "FE354", + image: "1f648.png", + sheet_x: 34, + sheet_y: 25, + short_name: "see_no_evil", + short_names: ["see_no_evil"], + text: null, + texts: null, + category: "Smileys & Emotion", + subcategory: "monkey-face", + sort_order: 125, + added_in: "0.6", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + hear_no_evil: { + char: "🙉", + key: "hear_no_evil", + keywords: ["hear_no_evil", "HEAR-NO-EVIL MONKEY"], + category: "people", + lib: { + name: "HEAR-NO-EVIL MONKEY", + unified: "1F649", + non_qualified: null, + docomo: null, + au: "EB52", + softbank: null, + google: "FE356", + image: "1f649.png", + sheet_x: 34, + sheet_y: 26, + short_name: "hear_no_evil", + short_names: ["hear_no_evil"], + text: null, + texts: null, + category: "Smileys & Emotion", + subcategory: "monkey-face", + sort_order: 126, + added_in: "0.6", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + speak_no_evil: { + char: "🙊", + key: "speak_no_evil", + keywords: ["speak_no_evil", "SPEAK-NO-EVIL MONKEY"], + category: "people", + lib: { + name: "SPEAK-NO-EVIL MONKEY", + unified: "1F64A", + non_qualified: null, + docomo: null, + au: "EB51", + softbank: null, + google: "FE355", + image: "1f64a.png", + sheet_x: 34, + sheet_y: 27, + short_name: "speak_no_evil", + short_names: ["speak_no_evil"], + text: null, + texts: null, + category: "Smileys & Emotion", + subcategory: "monkey-face", + sort_order: 127, + added_in: "0.6", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + love_letter: { + char: "💌", + key: "love_letter", + keywords: ["love_letter", "LOVE LETTER"], + category: "people", + lib: { + name: "LOVE LETTER", + unified: "1F48C", + non_qualified: null, + docomo: "E717", + au: "EB78", + softbank: null, + google: "FE824", + image: "1f48c.png", + sheet_x: 26, + sheet_y: 39, + short_name: "love_letter", + short_names: ["love_letter"], + text: null, + texts: null, + category: "Smileys & Emotion", + subcategory: "heart", + sort_order: 128, + added_in: "0.6", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + cupid: { + char: "💘", + key: "cupid", + keywords: ["cupid", "HEART WITH ARROW"], + category: "people", + lib: { + name: "HEART WITH ARROW", + unified: "1F498", + non_qualified: null, + docomo: "E6EC", + au: "E4EA", + softbank: "E329", + google: "FEB12", + image: "1f498.png", + sheet_x: 27, + sheet_y: 40, + short_name: "cupid", + short_names: ["cupid"], + text: null, + texts: null, + category: "Smileys & Emotion", + subcategory: "heart", + sort_order: 129, + added_in: "0.6", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + gift_heart: { + char: "💝", + key: "gift_heart", + keywords: ["gift_heart", "HEART WITH RIBBON"], + category: "people", + lib: { + name: "HEART WITH RIBBON", + unified: "1F49D", + non_qualified: null, + docomo: "E6EC", + au: "EB54", + softbank: "E437", + google: "FEB17", + image: "1f49d.png", + sheet_x: 27, + sheet_y: 45, + short_name: "gift_heart", + short_names: ["gift_heart"], + text: null, + texts: null, + category: "Smileys & Emotion", + subcategory: "heart", + sort_order: 130, + added_in: "0.6", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + sparkling_heart: { + char: "💖", + key: "sparkling_heart", + keywords: ["sparkling_heart", "SPARKLING HEART"], + category: "people", + lib: { + name: "SPARKLING HEART", + unified: "1F496", + non_qualified: null, + docomo: "E6EC", + au: "EAA6", + softbank: null, + google: "FEB10", + image: "1f496.png", + sheet_x: 27, + sheet_y: 38, + short_name: "sparkling_heart", + short_names: ["sparkling_heart"], + text: null, + texts: null, + category: "Smileys & Emotion", + subcategory: "heart", + sort_order: 131, + added_in: "0.6", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + heartpulse: { + char: "💗", + key: "heartpulse", + keywords: ["heartpulse", "GROWING HEART"], + category: "people", + lib: { + name: "GROWING HEART", + unified: "1F497", + non_qualified: null, + docomo: "E6ED", + au: "EB75", + softbank: "E328", + google: "FEB11", + image: "1f497.png", + sheet_x: 27, + sheet_y: 39, + short_name: "heartpulse", + short_names: ["heartpulse"], + text: null, + texts: null, + category: "Smileys & Emotion", + subcategory: "heart", + sort_order: 132, + added_in: "0.6", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + heartbeat: { + char: "💓", + key: "heartbeat", + keywords: ["heartbeat", "BEATING HEART"], + category: "people", + lib: { + name: "BEATING HEART", + unified: "1F493", + non_qualified: null, + docomo: "E6ED", + au: "EB75", + softbank: "E327", + google: "FEB0D", + image: "1f493.png", + sheet_x: 27, + sheet_y: 35, + short_name: "heartbeat", + short_names: ["heartbeat"], + text: null, + texts: null, + category: "Smileys & Emotion", + subcategory: "heart", + sort_order: 133, + added_in: "0.6", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + revolving_hearts: { + char: "💞", + key: "revolving_hearts", + keywords: ["revolving_hearts", "REVOLVING HEARTS"], + category: "people", + lib: { + name: "REVOLVING HEARTS", + unified: "1F49E", + non_qualified: null, + docomo: "E6ED", + au: "E5AF", + softbank: null, + google: "FEB18", + image: "1f49e.png", + sheet_x: 27, + sheet_y: 46, + short_name: "revolving_hearts", + short_names: ["revolving_hearts"], + text: null, + texts: null, + category: "Smileys & Emotion", + subcategory: "heart", + sort_order: 134, + added_in: "0.6", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + two_hearts: { + char: "💕", + key: "two_hearts", + keywords: ["two_hearts", "TWO HEARTS"], + category: "people", + lib: { + name: "TWO HEARTS", + unified: "1F495", + non_qualified: null, + docomo: "E6EF", + au: "E478", + softbank: null, + google: "FEB0F", + image: "1f495.png", + sheet_x: 27, + sheet_y: 37, + short_name: "two_hearts", + short_names: ["two_hearts"], + text: null, + texts: null, + category: "Smileys & Emotion", + subcategory: "heart", + sort_order: 135, + added_in: "0.6", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + heart_decoration: { + char: "💟", + key: "heart_decoration", + keywords: ["heart_decoration", "HEART DECORATION"], + category: "people", + lib: { + name: "HEART DECORATION", + unified: "1F49F", + non_qualified: null, + docomo: "E6F8", + au: "E595", + softbank: "E204", + google: "FEB19", + image: "1f49f.png", + sheet_x: 27, + sheet_y: 47, + short_name: "heart_decoration", + short_names: ["heart_decoration"], + text: null, + texts: null, + category: "Smileys & Emotion", + subcategory: "heart", + sort_order: 136, + added_in: "0.6", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + heavy_heart_exclamation_mark_ornament: { + char: "❣️", + key: "heavy_heart_exclamation_mark_ornament", + keywords: ["heavy_heart_exclamation_mark_ornament", "HEART EXCLAMATION"], + category: "people", + lib: { + name: "HEART EXCLAMATION", + unified: "2763-FE0F", + non_qualified: "2763", + docomo: null, + au: null, + softbank: null, + google: null, + image: "2763-fe0f.png", + sheet_x: 59, + sheet_y: 38, + short_name: "heavy_heart_exclamation_mark_ornament", + short_names: ["heavy_heart_exclamation_mark_ornament"], + text: null, + texts: null, + category: "Smileys & Emotion", + subcategory: "heart", + sort_order: 137, + added_in: "1.0", + has_img_apple: true, + has_img_google: true, + has_img_twitter: true, + has_img_facebook: true, + }, + }, + broken_heart: { + char: "💔", + key: "broken_heart", + keywords: ["broken_heart", "BROKEN HEART"], + category: "people", + lib: { + name: "BROKEN HEART", + unified: "1F494", + non_qualified: null, + docomo: "E6EE", + au: "E477", + softbank: "E023", + google: "FEB0E", + image: "1f494.png", + sheet_x: 27, + sheet_y: 36, + short_name: "broken_heart", + short_names: ["broken_heart"], + text: "", ":->"], + "category": "Smileys & Emotion", + "subcategory": "face-smiling", + "sort_order": 5, + "added_in": "0.6", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + { + "name": "SMILING FACE WITH HALO", + "unified": "1F607", + "non_qualified": null, + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1f607.png", + "sheet_x": 32, + "sheet_y": 28, + "short_name": "innocent", + "short_names": ["innocent"], + "text": null, + "texts": null, + "category": "Smileys & Emotion", + "subcategory": "face-smiling", + "sort_order": 14, + "added_in": "1.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + { + "name": "SMILING FACE WITH HORNS", + "unified": "1F608", + "non_qualified": null, + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1f608.png", + "sheet_x": 32, + "sheet_y": 29, + "short_name": "smiling_imp", + "short_names": ["smiling_imp"], + "text": null, + "texts": null, + "category": "Smileys & Emotion", + "subcategory": "face-negative", + "sort_order": 104, + "added_in": "1.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + { + "name": "WINKING FACE", + "unified": "1F609", + "non_qualified": null, + "docomo": "E729", + "au": "E5C3", + "softbank": "E405", + "google": "FE347", + "image": "1f609.png", + "sheet_x": 32, + "sheet_y": 30, + "short_name": "wink", + "short_names": ["wink"], + "text": ";)", + "texts": [";)", ";-)"], + "category": "Smileys & Emotion", + "subcategory": "face-smiling", + "sort_order": 12, + "added_in": "0.6", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + { + "name": "SMILING FACE WITH SMILING EYES", + "unified": "1F60A", + "non_qualified": null, + "docomo": "E6F0", + "au": "EACD", + "softbank": "E056", + "google": "FE335", + "image": "1f60a.png", + "sheet_x": 32, + "sheet_y": 31, + "short_name": "blush", + "short_names": ["blush"], + "text": ":)", + "texts": null, + "category": "Smileys & Emotion", + "subcategory": "face-smiling", + "sort_order": 13, + "added_in": "0.6", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + { + "name": "FACE SAVOURING DELICIOUS FOOD", + "unified": "1F60B", + "non_qualified": null, + "docomo": "E752", + "au": "EACD", + "softbank": null, + "google": "FE32B", + "image": "1f60b.png", + "sheet_x": 32, + "sheet_y": 32, + "short_name": "yum", + "short_names": ["yum"], + "text": null, + "texts": null, + "category": "Smileys & Emotion", + "subcategory": "face-tongue", + "sort_order": 24, + "added_in": "0.6", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + { + "name": "RELIEVED FACE", + "unified": "1F60C", + "non_qualified": null, + "docomo": "E721", + "au": "EAC5", + "softbank": "E40A", + "google": "FE33E", + "image": "1f60c.png", + "sheet_x": 32, + "sheet_y": 33, + "short_name": "relieved", + "short_names": ["relieved"], + "text": null, + "texts": null, + "category": "Smileys & Emotion", + "subcategory": "face-sleepy", + "sort_order": 51, + "added_in": "0.6", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + { + "name": "SMILING FACE WITH HEART-SHAPED EYES", + "unified": "1F60D", + "non_qualified": null, + "docomo": "E726", + "au": "E5C4", + "softbank": "E106", + "google": "FE327", + "image": "1f60d.png", + "sheet_x": 32, + "sheet_y": 34, + "short_name": "heart_eyes", + "short_names": ["heart_eyes"], + "text": null, + "texts": null, + "category": "Smileys & Emotion", + "subcategory": "face-affection", + "sort_order": 16, + "added_in": "0.6", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + { + "name": "SMILING FACE WITH SUNGLASSES", + "unified": "1F60E", + "non_qualified": null, + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1f60e.png", + "sheet_x": 32, + "sheet_y": 35, + "short_name": "sunglasses", + "short_names": ["sunglasses"], + "text": null, + "texts": ["8)"], + "category": "Smileys & Emotion", + "subcategory": "face-glasses", + "sort_order": 71, + "added_in": "1.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + { + "name": "SMIRKING FACE", + "unified": "1F60F", + "non_qualified": null, + "docomo": "E72C", + "au": "EABF", + "softbank": "E402", + "google": "FE343", + "image": "1f60f.png", + "sheet_x": 32, + "sheet_y": 36, + "short_name": "smirk", + "short_names": ["smirk"], + "text": null, + "texts": null, + "category": "Smileys & Emotion", + "subcategory": "face-neutral-skeptical", + "sort_order": 44, + "added_in": "0.6", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + { + "name": "NEUTRAL FACE", + "unified": "1F610", + "non_qualified": null, + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1f610.png", + "sheet_x": 32, + "sheet_y": 37, + "short_name": "neutral_face", + "short_names": ["neutral_face"], + "text": null, + "texts": [":|", ":-|"], + "category": "Smileys & Emotion", + "subcategory": "face-neutral-skeptical", + "sort_order": 39, + "added_in": "0.7", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + { + "name": "EXPRESSIONLESS FACE", + "unified": "1F611", + "non_qualified": null, + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1f611.png", + "sheet_x": 32, + "sheet_y": 38, + "short_name": "expressionless", + "short_names": ["expressionless"], + "text": null, + "texts": null, + "category": "Smileys & Emotion", + "subcategory": "face-neutral-skeptical", + "sort_order": 40, + "added_in": "1.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + { + "name": "UNAMUSED FACE", + "unified": "1F612", + "non_qualified": null, + "docomo": "E725", + "au": "EAC9", + "softbank": "E40E", + "google": "FE326", + "image": "1f612.png", + "sheet_x": 32, + "sheet_y": 39, + "short_name": "unamused", + "short_names": ["unamused"], + "text": ":(", + "texts": null, + "category": "Smileys & Emotion", + "subcategory": "face-neutral-skeptical", + "sort_order": 45, + "added_in": "0.6", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + { + "name": "FACE WITH COLD SWEAT", + "unified": "1F613", + "non_qualified": null, + "docomo": "E723", + "au": "E5C6", + "softbank": "E108", + "google": "FE344", + "image": "1f613.png", + "sheet_x": 32, + "sheet_y": 40, + "short_name": "sweat", + "short_names": ["sweat"], + "text": null, + "texts": null, + "category": "Smileys & Emotion", + "subcategory": "face-concerned", + "sort_order": 96, + "added_in": "0.6", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + { + "name": "PENSIVE FACE", + "unified": "1F614", + "non_qualified": null, + "docomo": "E720", + "au": "EAC0", + "softbank": "E403", + "google": "FE340", + "image": "1f614.png", + "sheet_x": 32, + "sheet_y": 41, + "short_name": "pensive", + "short_names": ["pensive"], + "text": null, + "texts": null, + "category": "Smileys & Emotion", + "subcategory": "face-sleepy", + "sort_order": 52, + "added_in": "0.6", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + { + "name": "CONFUSED FACE", + "unified": "1F615", + "non_qualified": null, + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1f615.png", + "sheet_x": 32, + "sheet_y": 42, + "short_name": "confused", + "short_names": ["confused"], + "text": null, + "texts": [":\\", ":-\\", ":/", ":-/"], + "category": "Smileys & Emotion", + "subcategory": "face-concerned", + "sort_order": 74, + "added_in": "1.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + { + "name": "CONFOUNDED FACE", + "unified": "1F616", + "non_qualified": null, + "docomo": "E6F3", + "au": "EAC3", + "softbank": "E407", + "google": "FE33F", + "image": "1f616.png", + "sheet_x": 32, + "sheet_y": 43, + "short_name": "confounded", + "short_names": ["confounded"], + "text": null, + "texts": null, + "category": "Smileys & Emotion", + "subcategory": "face-concerned", + "sort_order": 93, + "added_in": "0.6", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + { + "name": "KISSING FACE", + "unified": "1F617", + "non_qualified": null, + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1f617.png", + "sheet_x": 32, + "sheet_y": 44, + "short_name": "kissing", + "short_names": ["kissing"], + "text": null, + "texts": null, + "category": "Smileys & Emotion", + "subcategory": "face-affection", + "sort_order": 19, + "added_in": "1.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + { + "name": "FACE THROWING A KISS", + "unified": "1F618", + "non_qualified": null, + "docomo": "E726", + "au": "EACF", + "softbank": "E418", + "google": "FE32C", + "image": "1f618.png", + "sheet_x": 32, + "sheet_y": 45, + "short_name": "kissing_heart", + "short_names": ["kissing_heart"], + "text": null, + "texts": [":*", ":-*"], + "category": "Smileys & Emotion", + "subcategory": "face-affection", + "sort_order": 18, + "added_in": "0.6", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + { + "name": "KISSING FACE WITH SMILING EYES", + "unified": "1F619", + "non_qualified": null, + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1f619.png", + "sheet_x": 32, + "sheet_y": 46, + "short_name": "kissing_smiling_eyes", + "short_names": ["kissing_smiling_eyes"], + "text": null, + "texts": null, + "category": "Smileys & Emotion", + "subcategory": "face-affection", + "sort_order": 22, + "added_in": "1.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + { + "name": "KISSING FACE WITH CLOSED EYES", + "unified": "1F61A", + "non_qualified": null, + "docomo": "E726", + "au": "EACE", + "softbank": "E417", + "google": "FE32D", + "image": "1f61a.png", + "sheet_x": 32, + "sheet_y": 47, + "short_name": "kissing_closed_eyes", + "short_names": ["kissing_closed_eyes"], + "text": null, + "texts": null, + "category": "Smileys & Emotion", + "subcategory": "face-affection", + "sort_order": 21, + "added_in": "0.6", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + { + "name": "FACE WITH STUCK-OUT TONGUE", + "unified": "1F61B", + "non_qualified": null, + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1f61b.png", + "sheet_x": 32, + "sheet_y": 48, + "short_name": "stuck_out_tongue", + "short_names": ["stuck_out_tongue"], + "text": ":p", + "texts": [":p", ":-p", ":P", ":-P", ":b", ":-b"], + "category": "Smileys & Emotion", + "subcategory": "face-tongue", + "sort_order": 25, + "added_in": "1.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + { + "name": "FACE WITH STUCK-OUT TONGUE AND WINKING EYE", + "unified": "1F61C", + "non_qualified": null, + "docomo": "E728", + "au": "E4E7", + "softbank": "E105", + "google": "FE329", + "image": "1f61c.png", + "sheet_x": 32, + "sheet_y": 49, + "short_name": "stuck_out_tongue_winking_eye", + "short_names": ["stuck_out_tongue_winking_eye"], + "text": ";p", + "texts": [";p", ";-p", ";b", ";-b", ";P", ";-P"], + "category": "Smileys & Emotion", + "subcategory": "face-tongue", + "sort_order": 26, + "added_in": "0.6", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + { + "name": "FACE WITH STUCK-OUT TONGUE AND TIGHTLY-CLOSED EYES", + "unified": "1F61D", + "non_qualified": null, + "docomo": "E728", + "au": "E4E7", + "softbank": "E409", + "google": "FE32A", + "image": "1f61d.png", + "sheet_x": 32, + "sheet_y": 50, + "short_name": "stuck_out_tongue_closed_eyes", + "short_names": ["stuck_out_tongue_closed_eyes"], + "text": null, + "texts": null, + "category": "Smileys & Emotion", + "subcategory": "face-tongue", + "sort_order": 28, + "added_in": "0.6", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + { + "name": "DISAPPOINTED FACE", + "unified": "1F61E", + "non_qualified": null, + "docomo": "E6F2", + "au": "EAC0", + "softbank": "E058", + "google": "FE323", + "image": "1f61e.png", + "sheet_x": 32, + "sheet_y": 51, + "short_name": "disappointed", + "short_names": ["disappointed"], + "text": ":(", + "texts": ["):", ":(", ":-("], + "category": "Smileys & Emotion", + "subcategory": "face-concerned", + "sort_order": 95, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { - "name": "KISS", - "unified": "1F48F", + "name": "WORRIED FACE", + "unified": "1F61F", "non_qualified": null, - "docomo": "E6F9", - "au": "E5CA", - "softbank": "E111", - "google": "FE827", - "image": "1f48f.png", - "sheet_x": 25, - "sheet_y": 13, - "short_name": "couplekiss", - "short_names": ["couplekiss"], + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1f61f.png", + "sheet_x": 32, + "sheet_y": 52, + "short_name": "worried", + "short_names": ["worried"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 322, - "added_in": "6.0", + "category": "Smileys & Emotion", + "subcategory": "face-concerned", + "sort_order": 76, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": true, - "obsoleted_by": "1F469-200D-2764-FE0F-200D-1F48B-200D-1F468" + "has_img_facebook": true }, { - "name": "BOUQUET", - "unified": "1F490", + "name": "ANGRY FACE", + "unified": "1F620", "non_qualified": null, - "docomo": null, - "au": "EA95", - "softbank": "E306", - "google": "FE828", - "image": "1f490.png", - "sheet_x": 25, - "sheet_y": 14, - "short_name": "bouquet", - "short_names": ["bouquet"], + "docomo": "E6F1", + "au": "E472", + "softbank": "E059", + "google": "FE320", + "image": "1f620.png", + "sheet_x": 32, + "sheet_y": 53, + "short_name": "angry", + "short_names": ["angry"], "text": null, - "texts": null, - "category": "Animals & Nature", - "sort_order": 103, - "added_in": "6.0", + "texts": [">:(", ">:-("], + "category": "Smileys & Emotion", + "subcategory": "face-negative", + "sort_order": 102, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { - "name": "COUPLE WITH HEART", - "unified": "1F491", + "name": "POUTING FACE", + "unified": "1F621", "non_qualified": null, - "docomo": "E6ED", - "au": "EADA", - "softbank": "E425", - "google": "FE829", - "image": "1f491.png", - "sheet_x": 25, - "sheet_y": 15, - "short_name": "couple_with_heart", - "short_names": ["couple_with_heart"], + "docomo": "E724", + "au": "EB5D", + "softbank": "E416", + "google": "FE33D", + "image": "1f621.png", + "sheet_x": 32, + "sheet_y": 54, + "short_name": "rage", + "short_names": ["rage"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 326, - "added_in": "6.0", + "category": "Smileys & Emotion", + "subcategory": "face-negative", + "sort_order": 101, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": true, - "obsoleted_by": "1F469-200D-2764-FE0F-200D-1F468" + "has_img_facebook": true }, { - "name": "WEDDING", - "unified": "1F492", + "name": "CRYING FACE", + "unified": "1F622", "non_qualified": null, - "docomo": null, - "au": "E5BB", - "softbank": "E43D", - "google": "FE82A", - "image": "1f492.png", - "sheet_x": 25, - "sheet_y": 16, - "short_name": "wedding", - "short_names": ["wedding"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 38, - "added_in": "6.0", + "docomo": "E72E", + "au": "EB69", + "softbank": "E413", + "google": "FE339", + "image": "1f622.png", + "sheet_x": 32, + "sheet_y": 55, + "short_name": "cry", + "short_names": ["cry"], + "text": ":'(", + "texts": [":'("], + "category": "Smileys & Emotion", + "subcategory": "face-concerned", + "sort_order": 90, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { - "name": "BEATING HEART", - "unified": "1F493", + "name": "PERSEVERING FACE", + "unified": "1F623", "non_qualified": null, - "docomo": "E6ED", - "au": "EB75", - "softbank": "E327", - "google": "FEB0D", - "image": "1f493.png", - "sheet_x": 25, - "sheet_y": 17, - "short_name": "heartbeat", - "short_names": ["heartbeat"], + "docomo": "E72B", + "au": "EAC2", + "softbank": "E406", + "google": "FE33C", + "image": "1f623.png", + "sheet_x": 32, + "sheet_y": 56, + "short_name": "persevere", + "short_names": ["persevere"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 405, - "added_in": "6.0", + "category": "Smileys & Emotion", + "subcategory": "face-concerned", + "sort_order": 94, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { - "name": "BROKEN HEART", - "unified": "1F494", + "name": "FACE WITH LOOK OF TRIUMPH", + "unified": "1F624", "non_qualified": null, - "docomo": "E6EE", - "au": "E477", - "softbank": "E023", - "google": "FEB0E", - "image": "1f494.png", - "sheet_x": 25, - "sheet_y": 18, - "short_name": "broken_heart", - "short_names": ["broken_heart"], - "text": "", ":->"], - "category": "Smileys & People", - "sort_order": 8, - "added_in": "6.0", + "texts": null, + "category": "People & Body", + "subcategory": "person-role", + "sort_order": 364, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true, - "has_img_messenger": true + "skin_variations": { + "1F3FB": { + "unified": "1F931-1F3FB", + "non_qualified": null, + "image": "1f931-1f3fb.png", + "sheet_x": 40, + "sheet_y": 54, + "added_in": "5.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FC": { + "unified": "1F931-1F3FC", + "non_qualified": null, + "image": "1f931-1f3fc.png", + "sheet_x": 40, + "sheet_y": 55, + "added_in": "5.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FD": { + "unified": "1F931-1F3FD", + "non_qualified": null, + "image": "1f931-1f3fd.png", + "sheet_x": 40, + "sheet_y": 56, + "added_in": "5.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FE": { + "unified": "1F931-1F3FE", + "non_qualified": null, + "image": "1f931-1f3fe.png", + "sheet_x": 40, + "sheet_y": 57, + "added_in": "5.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FF": { + "unified": "1F931-1F3FF", + "non_qualified": null, + "image": "1f931-1f3ff.png", + "sheet_x": 40, + "sheet_y": 58, + "added_in": "5.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + } + } }, { - "name": "SMILING FACE WITH HALO", - "unified": "1F607", + "name": "PALMS UP TOGETHER", + "unified": "1F932", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f607.png", - "sheet_x": 30, - "sheet_y": 50, - "short_name": "innocent", - "short_names": ["innocent"], + "image": "1f932.png", + "sheet_x": 40, + "sheet_y": 59, + "short_name": "palms_up_together", + "short_names": ["palms_up_together"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 80, - "added_in": "6.0", + "category": "People & Body", + "subcategory": "hands", + "sort_order": 204, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true, - "has_img_messenger": true + "skin_variations": { + "1F3FB": { + "unified": "1F932-1F3FB", + "non_qualified": null, + "image": "1f932-1f3fb.png", + "sheet_x": 40, + "sheet_y": 60, + "added_in": "5.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FC": { + "unified": "1F932-1F3FC", + "non_qualified": null, + "image": "1f932-1f3fc.png", + "sheet_x": 41, + "sheet_y": 0, + "added_in": "5.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FD": { + "unified": "1F932-1F3FD", + "non_qualified": null, + "image": "1f932-1f3fd.png", + "sheet_x": 41, + "sheet_y": 1, + "added_in": "5.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FE": { + "unified": "1F932-1F3FE", + "non_qualified": null, + "image": "1f932-1f3fe.png", + "sheet_x": 41, + "sheet_y": 2, + "added_in": "5.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FF": { + "unified": "1F932-1F3FF", + "non_qualified": null, + "image": "1f932-1f3ff.png", + "sheet_x": 41, + "sheet_y": 3, + "added_in": "5.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + } + } }, { - "name": "SMILING FACE WITH HORNS", - "unified": "1F608", + "name": "SELFIE", + "unified": "1F933", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f608.png", - "sheet_x": 30, - "sheet_y": 51, - "short_name": "smiling_imp", - "short_names": ["smiling_imp"], + "image": "1f933.png", + "sheet_x": 41, + "sheet_y": 4, + "short_name": "selfie", + "short_names": ["selfie"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 90, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - { - "name": "WINKING FACE", - "unified": "1F609", - "non_qualified": null, - "docomo": "E729", - "au": "E5C3", - "softbank": "E405", - "google": "FE347", - "image": "1f609.png", - "sheet_x": 30, - "sheet_y": 52, - "short_name": "wink", - "short_names": ["wink"], - "text": ";)", - "texts": [";)", ";-)"], - "category": "Smileys & People", - "sort_order": 9, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - { - "name": "SMILING FACE WITH SMILING EYES", - "unified": "1F60A", - "non_qualified": null, - "docomo": "E6F0", - "au": "EACD", - "softbank": "E056", - "google": "FE335", - "image": "1f60a.png", - "sheet_x": 31, - "sheet_y": 0, - "short_name": "blush", - "short_names": ["blush"], - "text": ":)", - "texts": null, - "category": "Smileys & People", - "sort_order": 10, - "added_in": "6.0", + "category": "People & Body", + "subcategory": "hand-prop", + "sort_order": 209, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true, - "has_img_messenger": true + "skin_variations": { + "1F3FB": { + "unified": "1F933-1F3FB", + "non_qualified": null, + "image": "1f933-1f3fb.png", + "sheet_x": 41, + "sheet_y": 5, + "added_in": "3.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FC": { + "unified": "1F933-1F3FC", + "non_qualified": null, + "image": "1f933-1f3fc.png", + "sheet_x": 41, + "sheet_y": 6, + "added_in": "3.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FD": { + "unified": "1F933-1F3FD", + "non_qualified": null, + "image": "1f933-1f3fd.png", + "sheet_x": 41, + "sheet_y": 7, + "added_in": "3.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FE": { + "unified": "1F933-1F3FE", + "non_qualified": null, + "image": "1f933-1f3fe.png", + "sheet_x": 41, + "sheet_y": 8, + "added_in": "3.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FF": { + "unified": "1F933-1F3FF", + "non_qualified": null, + "image": "1f933-1f3ff.png", + "sheet_x": 41, + "sheet_y": 9, + "added_in": "3.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + } + } }, { - "name": "FACE SAVOURING DELICIOUS FOOD", - "unified": "1F60B", + "name": "PRINCE", + "unified": "1F934", "non_qualified": null, - "docomo": "E752", - "au": "EACD", + "docomo": null, + "au": null, "softbank": null, - "google": "FE32B", - "image": "1f60b.png", - "sheet_x": 31, - "sheet_y": 1, - "short_name": "yum", - "short_names": ["yum"], + "google": null, + "image": "1f934.png", + "sheet_x": 41, + "sheet_y": 10, + "short_name": "prince", + "short_names": ["prince"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 11, - "added_in": "6.0", + "category": "People & Body", + "subcategory": "person-role", + "sort_order": 348, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true, - "has_img_messenger": true + "skin_variations": { + "1F3FB": { + "unified": "1F934-1F3FB", + "non_qualified": null, + "image": "1f934-1f3fb.png", + "sheet_x": 41, + "sheet_y": 11, + "added_in": "3.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FC": { + "unified": "1F934-1F3FC", + "non_qualified": null, + "image": "1f934-1f3fc.png", + "sheet_x": 41, + "sheet_y": 12, + "added_in": "3.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FD": { + "unified": "1F934-1F3FD", + "non_qualified": null, + "image": "1f934-1f3fd.png", + "sheet_x": 41, + "sheet_y": 13, + "added_in": "3.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FE": { + "unified": "1F934-1F3FE", + "non_qualified": null, + "image": "1f934-1f3fe.png", + "sheet_x": 41, + "sheet_y": 14, + "added_in": "3.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FF": { + "unified": "1F934-1F3FF", + "non_qualified": null, + "image": "1f934-1f3ff.png", + "sheet_x": 41, + "sheet_y": 15, + "added_in": "3.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + } + } }, { - "name": "RELIEVED FACE", - "unified": "1F60C", - "non_qualified": null, - "docomo": "E721", - "au": "EAC5", - "softbank": "E40A", - "google": "FE33E", - "image": "1f60c.png", - "sheet_x": 31, - "sheet_y": 2, - "short_name": "relieved", - "short_names": ["relieved"], + "name": "WOMAN IN TUXEDO", + "unified": "1F935-200D-2640-FE0F", + "non_qualified": "1F935-200D-2640", + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1f935-200d-2640-fe0f.png", + "sheet_x": 41, + "sheet_y": 16, + "short_name": "woman_in_tuxedo", + "short_names": ["woman_in_tuxedo"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 38, - "added_in": "6.0", + "category": "People & Body", + "subcategory": "person-role", + "sort_order": 357, + "added_in": "13.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true, - "has_img_messenger": true + "skin_variations": { + "1F3FB": { + "unified": "1F935-1F3FB-200D-2640-FE0F", + "non_qualified": "1F935-1F3FB-200D-2640", + "image": "1f935-1f3fb-200d-2640-fe0f.png", + "sheet_x": 41, + "sheet_y": 17, + "added_in": "13.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FC": { + "unified": "1F935-1F3FC-200D-2640-FE0F", + "non_qualified": "1F935-1F3FC-200D-2640", + "image": "1f935-1f3fc-200d-2640-fe0f.png", + "sheet_x": 41, + "sheet_y": 18, + "added_in": "13.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FD": { + "unified": "1F935-1F3FD-200D-2640-FE0F", + "non_qualified": "1F935-1F3FD-200D-2640", + "image": "1f935-1f3fd-200d-2640-fe0f.png", + "sheet_x": 41, + "sheet_y": 19, + "added_in": "13.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FE": { + "unified": "1F935-1F3FE-200D-2640-FE0F", + "non_qualified": "1F935-1F3FE-200D-2640", + "image": "1f935-1f3fe-200d-2640-fe0f.png", + "sheet_x": 41, + "sheet_y": 20, + "added_in": "13.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FF": { + "unified": "1F935-1F3FF-200D-2640-FE0F", + "non_qualified": "1F935-1F3FF-200D-2640", + "image": "1f935-1f3ff-200d-2640-fe0f.png", + "sheet_x": 41, + "sheet_y": 21, + "added_in": "13.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + } + } }, { - "name": "SMILING FACE WITH HEART-SHAPED EYES", - "unified": "1F60D", - "non_qualified": null, - "docomo": "E726", - "au": "E5C4", - "softbank": "E106", - "google": "FE327", - "image": "1f60d.png", - "sheet_x": 31, - "sheet_y": 3, - "short_name": "heart_eyes", - "short_names": ["heart_eyes"], + "name": "MAN IN TUXEDO", + "unified": "1F935-200D-2642-FE0F", + "non_qualified": "1F935-200D-2642", + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1f935-200d-2642-fe0f.png", + "sheet_x": 41, + "sheet_y": 22, + "short_name": "man_in_tuxedo", + "short_names": ["man_in_tuxedo"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 13, - "added_in": "6.0", + "category": "People & Body", + "subcategory": "person-role", + "sort_order": 356, + "added_in": "13.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true, - "has_img_messenger": true + "skin_variations": { + "1F3FB": { + "unified": "1F935-1F3FB-200D-2642-FE0F", + "non_qualified": "1F935-1F3FB-200D-2642", + "image": "1f935-1f3fb-200d-2642-fe0f.png", + "sheet_x": 41, + "sheet_y": 23, + "added_in": "13.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FC": { + "unified": "1F935-1F3FC-200D-2642-FE0F", + "non_qualified": "1F935-1F3FC-200D-2642", + "image": "1f935-1f3fc-200d-2642-fe0f.png", + "sheet_x": 41, + "sheet_y": 24, + "added_in": "13.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FD": { + "unified": "1F935-1F3FD-200D-2642-FE0F", + "non_qualified": "1F935-1F3FD-200D-2642", + "image": "1f935-1f3fd-200d-2642-fe0f.png", + "sheet_x": 41, + "sheet_y": 25, + "added_in": "13.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FE": { + "unified": "1F935-1F3FE-200D-2642-FE0F", + "non_qualified": "1F935-1F3FE-200D-2642", + "image": "1f935-1f3fe-200d-2642-fe0f.png", + "sheet_x": 41, + "sheet_y": 26, + "added_in": "13.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FF": { + "unified": "1F935-1F3FF-200D-2642-FE0F", + "non_qualified": "1F935-1F3FF-200D-2642", + "image": "1f935-1f3ff-200d-2642-fe0f.png", + "sheet_x": 41, + "sheet_y": 27, + "added_in": "13.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + } + } }, { - "name": "SMILING FACE WITH SUNGLASSES", - "unified": "1F60E", + "name": "MAN IN TUXEDO", + "unified": "1F935", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f60e.png", - "sheet_x": 31, - "sheet_y": 4, - "short_name": "sunglasses", - "short_names": ["sunglasses"], + "image": "1f935.png", + "sheet_x": 41, + "sheet_y": 28, + "short_name": "person_in_tuxedo", + "short_names": ["person_in_tuxedo"], "text": null, - "texts": ["8)"], - "category": "Smileys & People", - "sort_order": 12, - "added_in": "6.0", + "texts": null, + "category": "People & Body", + "subcategory": "person-role", + "sort_order": 355, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true, - "has_img_messenger": true + "skin_variations": { + "1F3FB": { + "unified": "1F935-1F3FB", + "non_qualified": null, + "image": "1f935-1f3fb.png", + "sheet_x": 41, + "sheet_y": 29, + "added_in": "3.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FC": { + "unified": "1F935-1F3FC", + "non_qualified": null, + "image": "1f935-1f3fc.png", + "sheet_x": 41, + "sheet_y": 30, + "added_in": "3.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FD": { + "unified": "1F935-1F3FD", + "non_qualified": null, + "image": "1f935-1f3fd.png", + "sheet_x": 41, + "sheet_y": 31, + "added_in": "3.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FE": { + "unified": "1F935-1F3FE", + "non_qualified": null, + "image": "1f935-1f3fe.png", + "sheet_x": 41, + "sheet_y": 32, + "added_in": "3.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FF": { + "unified": "1F935-1F3FF", + "non_qualified": null, + "image": "1f935-1f3ff.png", + "sheet_x": 41, + "sheet_y": 33, + "added_in": "3.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + } + } }, { - "name": "SMIRKING FACE", - "unified": "1F60F", + "name": "MOTHER CHRISTMAS", + "unified": "1F936", "non_qualified": null, - "docomo": "E72C", - "au": "EABF", - "softbank": "E402", - "google": "FE343", - "image": "1f60f.png", - "sheet_x": 31, - "sheet_y": 5, - "short_name": "smirk", - "short_names": ["smirk"], + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1f936.png", + "sheet_x": 41, + "sheet_y": 34, + "short_name": "mrs_claus", + "short_names": ["mrs_claus", "mother_christmas"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 29, - "added_in": "6.0", + "category": "People & Body", + "subcategory": "person-fantasy", + "sort_order": 370, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true, - "has_img_messenger": true + "skin_variations": { + "1F3FB": { + "unified": "1F936-1F3FB", + "non_qualified": null, + "image": "1f936-1f3fb.png", + "sheet_x": 41, + "sheet_y": 35, + "added_in": "3.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FC": { + "unified": "1F936-1F3FC", + "non_qualified": null, + "image": "1f936-1f3fc.png", + "sheet_x": 41, + "sheet_y": 36, + "added_in": "3.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FD": { + "unified": "1F936-1F3FD", + "non_qualified": null, + "image": "1f936-1f3fd.png", + "sheet_x": 41, + "sheet_y": 37, + "added_in": "3.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FE": { + "unified": "1F936-1F3FE", + "non_qualified": null, + "image": "1f936-1f3fe.png", + "sheet_x": 41, + "sheet_y": 38, + "added_in": "3.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FF": { + "unified": "1F936-1F3FF", + "non_qualified": null, + "image": "1f936-1f3ff.png", + "sheet_x": 41, + "sheet_y": 39, + "added_in": "3.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + } + } }, { - "name": "NEUTRAL FACE", - "unified": "1F610", - "non_qualified": null, + "name": "WOMAN SHRUGGING", + "unified": "1F937-200D-2640-FE0F", + "non_qualified": "1F937-200D-2640", "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f610.png", - "sheet_x": 31, - "sheet_y": 6, - "short_name": "neutral_face", - "short_names": ["neutral_face"], + "image": "1f937-200d-2640-fe0f.png", + "sheet_x": 41, + "sheet_y": 40, + "short_name": "woman-shrugging", + "short_names": ["woman-shrugging"], "text": null, - "texts": [":|", ":-|"], - "category": "Smileys & People", - "sort_order": 25, - "added_in": "6.0", + "texts": null, + "category": "People & Body", + "subcategory": "person-gesture", + "sort_order": 285, + "added_in": "4.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true, - "has_img_messenger": true + "skin_variations": { + "1F3FB": { + "unified": "1F937-1F3FB-200D-2640-FE0F", + "non_qualified": "1F937-1F3FB-200D-2640", + "image": "1f937-1f3fb-200d-2640-fe0f.png", + "sheet_x": 41, + "sheet_y": 41, + "added_in": "4.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FC": { + "unified": "1F937-1F3FC-200D-2640-FE0F", + "non_qualified": "1F937-1F3FC-200D-2640", + "image": "1f937-1f3fc-200d-2640-fe0f.png", + "sheet_x": 41, + "sheet_y": 42, + "added_in": "4.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FD": { + "unified": "1F937-1F3FD-200D-2640-FE0F", + "non_qualified": "1F937-1F3FD-200D-2640", + "image": "1f937-1f3fd-200d-2640-fe0f.png", + "sheet_x": 41, + "sheet_y": 43, + "added_in": "4.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FE": { + "unified": "1F937-1F3FE-200D-2640-FE0F", + "non_qualified": "1F937-1F3FE-200D-2640", + "image": "1f937-1f3fe-200d-2640-fe0f.png", + "sheet_x": 41, + "sheet_y": 44, + "added_in": "4.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FF": { + "unified": "1F937-1F3FF-200D-2640-FE0F", + "non_qualified": "1F937-1F3FF-200D-2640", + "image": "1f937-1f3ff-200d-2640-fe0f.png", + "sheet_x": 41, + "sheet_y": 45, + "added_in": "4.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + } + } }, { - "name": "EXPRESSIONLESS FACE", - "unified": "1F611", - "non_qualified": null, + "name": "MAN SHRUGGING", + "unified": "1F937-200D-2642-FE0F", + "non_qualified": "1F937-200D-2642", "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f611.png", - "sheet_x": 31, - "sheet_y": 7, - "short_name": "expressionless", - "short_names": ["expressionless"], + "image": "1f937-200d-2642-fe0f.png", + "sheet_x": 41, + "sheet_y": 46, + "short_name": "man-shrugging", + "short_names": ["man-shrugging"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 26, - "added_in": "6.1", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - { - "name": "UNAMUSED FACE", - "unified": "1F612", - "non_qualified": null, - "docomo": "E725", - "au": "EAC9", - "softbank": "E40E", - "google": "FE326", - "image": "1f612.png", - "sheet_x": 31, - "sheet_y": 8, - "short_name": "unamused", - "short_names": ["unamused"], - "text": ":(", - "texts": null, - "category": "Smileys & People", - "sort_order": 43, - "added_in": "6.0", + "category": "People & Body", + "subcategory": "person-gesture", + "sort_order": 284, + "added_in": "4.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true, - "has_img_messenger": true + "skin_variations": { + "1F3FB": { + "unified": "1F937-1F3FB-200D-2642-FE0F", + "non_qualified": "1F937-1F3FB-200D-2642", + "image": "1f937-1f3fb-200d-2642-fe0f.png", + "sheet_x": 41, + "sheet_y": 47, + "added_in": "4.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FC": { + "unified": "1F937-1F3FC-200D-2642-FE0F", + "non_qualified": "1F937-1F3FC-200D-2642", + "image": "1f937-1f3fc-200d-2642-fe0f.png", + "sheet_x": 41, + "sheet_y": 48, + "added_in": "4.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FD": { + "unified": "1F937-1F3FD-200D-2642-FE0F", + "non_qualified": "1F937-1F3FD-200D-2642", + "image": "1f937-1f3fd-200d-2642-fe0f.png", + "sheet_x": 41, + "sheet_y": 49, + "added_in": "4.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FE": { + "unified": "1F937-1F3FE-200D-2642-FE0F", + "non_qualified": "1F937-1F3FE-200D-2642", + "image": "1f937-1f3fe-200d-2642-fe0f.png", + "sheet_x": 41, + "sheet_y": 50, + "added_in": "4.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FF": { + "unified": "1F937-1F3FF-200D-2642-FE0F", + "non_qualified": "1F937-1F3FF-200D-2642", + "image": "1f937-1f3ff-200d-2642-fe0f.png", + "sheet_x": 41, + "sheet_y": 51, + "added_in": "4.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + } + } }, { - "name": "FACE WITH COLD SWEAT", - "unified": "1F613", + "name": "SHRUG", + "unified": "1F937", "non_qualified": null, - "docomo": "E723", - "au": "E5C6", - "softbank": "E108", - "google": "FE344", - "image": "1f613.png", - "sheet_x": 31, - "sheet_y": 9, - "short_name": "sweat", - "short_names": ["sweat"], + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1f937.png", + "sheet_x": 41, + "sheet_y": 52, + "short_name": "shrug", + "short_names": ["shrug"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 44, - "added_in": "6.0", + "category": "People & Body", + "subcategory": "person-gesture", + "sort_order": 283, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true, - "has_img_messenger": true + "skin_variations": { + "1F3FB": { + "unified": "1F937-1F3FB", + "non_qualified": null, + "image": "1f937-1f3fb.png", + "sheet_x": 41, + "sheet_y": 53, + "added_in": "3.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FC": { + "unified": "1F937-1F3FC", + "non_qualified": null, + "image": "1f937-1f3fc.png", + "sheet_x": 41, + "sheet_y": 54, + "added_in": "3.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FD": { + "unified": "1F937-1F3FD", + "non_qualified": null, + "image": "1f937-1f3fd.png", + "sheet_x": 41, + "sheet_y": 55, + "added_in": "3.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FE": { + "unified": "1F937-1F3FE", + "non_qualified": null, + "image": "1f937-1f3fe.png", + "sheet_x": 41, + "sheet_y": 56, + "added_in": "3.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FF": { + "unified": "1F937-1F3FF", + "non_qualified": null, + "image": "1f937-1f3ff.png", + "sheet_x": 41, + "sheet_y": 57, + "added_in": "3.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + } + } }, { - "name": "PENSIVE FACE", - "unified": "1F614", - "non_qualified": null, - "docomo": "E720", - "au": "EAC0", - "softbank": "E403", - "google": "FE340", - "image": "1f614.png", - "sheet_x": 31, - "sheet_y": 10, - "short_name": "pensive", - "short_names": ["pensive"], + "name": "WOMAN CARTWHEELING", + "unified": "1F938-200D-2640-FE0F", + "non_qualified": "1F938-200D-2640", + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1f938-200d-2640-fe0f.png", + "sheet_x": 41, + "sheet_y": 58, + "short_name": "woman-cartwheeling", + "short_names": ["woman-cartwheeling"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 45, - "added_in": "6.0", + "category": "People & Body", + "subcategory": "person-sport", + "sort_order": 469, + "added_in": "4.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true, - "has_img_messenger": true + "skin_variations": { + "1F3FB": { + "unified": "1F938-1F3FB-200D-2640-FE0F", + "non_qualified": "1F938-1F3FB-200D-2640", + "image": "1f938-1f3fb-200d-2640-fe0f.png", + "sheet_x": 41, + "sheet_y": 59, + "added_in": "4.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FC": { + "unified": "1F938-1F3FC-200D-2640-FE0F", + "non_qualified": "1F938-1F3FC-200D-2640", + "image": "1f938-1f3fc-200d-2640-fe0f.png", + "sheet_x": 41, + "sheet_y": 60, + "added_in": "4.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FD": { + "unified": "1F938-1F3FD-200D-2640-FE0F", + "non_qualified": "1F938-1F3FD-200D-2640", + "image": "1f938-1f3fd-200d-2640-fe0f.png", + "sheet_x": 42, + "sheet_y": 0, + "added_in": "4.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FE": { + "unified": "1F938-1F3FE-200D-2640-FE0F", + "non_qualified": "1F938-1F3FE-200D-2640", + "image": "1f938-1f3fe-200d-2640-fe0f.png", + "sheet_x": 42, + "sheet_y": 1, + "added_in": "4.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FF": { + "unified": "1F938-1F3FF-200D-2640-FE0F", + "non_qualified": "1F938-1F3FF-200D-2640", + "image": "1f938-1f3ff-200d-2640-fe0f.png", + "sheet_x": 42, + "sheet_y": 2, + "added_in": "4.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + } + } }, { - "name": "CONFUSED FACE", - "unified": "1F615", - "non_qualified": null, + "name": "MAN CARTWHEELING", + "unified": "1F938-200D-2642-FE0F", + "non_qualified": "1F938-200D-2642", "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f615.png", - "sheet_x": 31, - "sheet_y": 11, - "short_name": "confused", - "short_names": ["confused"], + "image": "1f938-200d-2642-fe0f.png", + "sheet_x": 42, + "sheet_y": 3, + "short_name": "man-cartwheeling", + "short_names": ["man-cartwheeling"], "text": null, - "texts": [":\\", ":-\\", ":/", ":-/"], - "category": "Smileys & People", - "sort_order": 46, - "added_in": "6.1", + "texts": null, + "category": "People & Body", + "subcategory": "person-sport", + "sort_order": 468, + "added_in": "4.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true, - "has_img_messenger": true + "skin_variations": { + "1F3FB": { + "unified": "1F938-1F3FB-200D-2642-FE0F", + "non_qualified": "1F938-1F3FB-200D-2642", + "image": "1f938-1f3fb-200d-2642-fe0f.png", + "sheet_x": 42, + "sheet_y": 4, + "added_in": "4.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FC": { + "unified": "1F938-1F3FC-200D-2642-FE0F", + "non_qualified": "1F938-1F3FC-200D-2642", + "image": "1f938-1f3fc-200d-2642-fe0f.png", + "sheet_x": 42, + "sheet_y": 5, + "added_in": "4.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FD": { + "unified": "1F938-1F3FD-200D-2642-FE0F", + "non_qualified": "1F938-1F3FD-200D-2642", + "image": "1f938-1f3fd-200d-2642-fe0f.png", + "sheet_x": 42, + "sheet_y": 6, + "added_in": "4.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FE": { + "unified": "1F938-1F3FE-200D-2642-FE0F", + "non_qualified": "1F938-1F3FE-200D-2642", + "image": "1f938-1f3fe-200d-2642-fe0f.png", + "sheet_x": 42, + "sheet_y": 7, + "added_in": "4.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FF": { + "unified": "1F938-1F3FF-200D-2642-FE0F", + "non_qualified": "1F938-1F3FF-200D-2642", + "image": "1f938-1f3ff-200d-2642-fe0f.png", + "sheet_x": 42, + "sheet_y": 8, + "added_in": "4.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + } + } }, { - "name": "CONFOUNDED FACE", - "unified": "1F616", + "name": "PERSON DOING CARTWHEEL", + "unified": "1F938", "non_qualified": null, - "docomo": "E6F3", - "au": "EAC3", - "softbank": "E407", - "google": "FE33F", - "image": "1f616.png", - "sheet_x": 31, - "sheet_y": 12, - "short_name": "confounded", - "short_names": ["confounded"], + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1f938.png", + "sheet_x": 42, + "sheet_y": 9, + "short_name": "person_doing_cartwheel", + "short_names": ["person_doing_cartwheel"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 52, - "added_in": "6.0", + "category": "People & Body", + "subcategory": "person-sport", + "sort_order": 467, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true, - "has_img_messenger": true + "skin_variations": { + "1F3FB": { + "unified": "1F938-1F3FB", + "non_qualified": null, + "image": "1f938-1f3fb.png", + "sheet_x": 42, + "sheet_y": 10, + "added_in": "3.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FC": { + "unified": "1F938-1F3FC", + "non_qualified": null, + "image": "1f938-1f3fc.png", + "sheet_x": 42, + "sheet_y": 11, + "added_in": "3.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FD": { + "unified": "1F938-1F3FD", + "non_qualified": null, + "image": "1f938-1f3fd.png", + "sheet_x": 42, + "sheet_y": 12, + "added_in": "3.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FE": { + "unified": "1F938-1F3FE", + "non_qualified": null, + "image": "1f938-1f3fe.png", + "sheet_x": 42, + "sheet_y": 13, + "added_in": "3.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FF": { + "unified": "1F938-1F3FF", + "non_qualified": null, + "image": "1f938-1f3ff.png", + "sheet_x": 42, + "sheet_y": 14, + "added_in": "3.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + } + } }, { - "name": "KISSING FACE", - "unified": "1F617", - "non_qualified": null, + "name": "WOMAN JUGGLING", + "unified": "1F939-200D-2640-FE0F", + "non_qualified": "1F939-200D-2640", "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f617.png", - "sheet_x": 31, - "sheet_y": 13, - "short_name": "kissing", - "short_names": ["kissing"], + "image": "1f939-200d-2640-fe0f.png", + "sheet_x": 42, + "sheet_y": 15, + "short_name": "woman-juggling", + "short_names": ["woman-juggling"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 16, - "added_in": "6.1", + "category": "People & Body", + "subcategory": "person-sport", + "sort_order": 481, + "added_in": "4.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true, - "has_img_messenger": true + "skin_variations": { + "1F3FB": { + "unified": "1F939-1F3FB-200D-2640-FE0F", + "non_qualified": "1F939-1F3FB-200D-2640", + "image": "1f939-1f3fb-200d-2640-fe0f.png", + "sheet_x": 42, + "sheet_y": 16, + "added_in": "4.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FC": { + "unified": "1F939-1F3FC-200D-2640-FE0F", + "non_qualified": "1F939-1F3FC-200D-2640", + "image": "1f939-1f3fc-200d-2640-fe0f.png", + "sheet_x": 42, + "sheet_y": 17, + "added_in": "4.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FD": { + "unified": "1F939-1F3FD-200D-2640-FE0F", + "non_qualified": "1F939-1F3FD-200D-2640", + "image": "1f939-1f3fd-200d-2640-fe0f.png", + "sheet_x": 42, + "sheet_y": 18, + "added_in": "4.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FE": { + "unified": "1F939-1F3FE-200D-2640-FE0F", + "non_qualified": "1F939-1F3FE-200D-2640", + "image": "1f939-1f3fe-200d-2640-fe0f.png", + "sheet_x": 42, + "sheet_y": 19, + "added_in": "4.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FF": { + "unified": "1F939-1F3FF-200D-2640-FE0F", + "non_qualified": "1F939-1F3FF-200D-2640", + "image": "1f939-1f3ff-200d-2640-fe0f.png", + "sheet_x": 42, + "sheet_y": 20, + "added_in": "4.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + } + } }, { - "name": "FACE THROWING A KISS", - "unified": "1F618", - "non_qualified": null, - "docomo": "E726", - "au": "EACF", - "softbank": "E418", - "google": "FE32C", - "image": "1f618.png", - "sheet_x": 31, - "sheet_y": 14, - "short_name": "kissing_heart", - "short_names": ["kissing_heart"], + "name": "MAN JUGGLING", + "unified": "1F939-200D-2642-FE0F", + "non_qualified": "1F939-200D-2642", + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1f939-200d-2642-fe0f.png", + "sheet_x": 42, + "sheet_y": 21, + "short_name": "man-juggling", + "short_names": ["man-juggling"], "text": null, - "texts": [":*", ":-*"], - "category": "Smileys & People", - "sort_order": 14, - "added_in": "6.0", + "texts": null, + "category": "People & Body", + "subcategory": "person-sport", + "sort_order": 480, + "added_in": "4.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true, - "has_img_messenger": true + "skin_variations": { + "1F3FB": { + "unified": "1F939-1F3FB-200D-2642-FE0F", + "non_qualified": "1F939-1F3FB-200D-2642", + "image": "1f939-1f3fb-200d-2642-fe0f.png", + "sheet_x": 42, + "sheet_y": 22, + "added_in": "4.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FC": { + "unified": "1F939-1F3FC-200D-2642-FE0F", + "non_qualified": "1F939-1F3FC-200D-2642", + "image": "1f939-1f3fc-200d-2642-fe0f.png", + "sheet_x": 42, + "sheet_y": 23, + "added_in": "4.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FD": { + "unified": "1F939-1F3FD-200D-2642-FE0F", + "non_qualified": "1F939-1F3FD-200D-2642", + "image": "1f939-1f3fd-200d-2642-fe0f.png", + "sheet_x": 42, + "sheet_y": 24, + "added_in": "4.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FE": { + "unified": "1F939-1F3FE-200D-2642-FE0F", + "non_qualified": "1F939-1F3FE-200D-2642", + "image": "1f939-1f3fe-200d-2642-fe0f.png", + "sheet_x": 42, + "sheet_y": 25, + "added_in": "4.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FF": { + "unified": "1F939-1F3FF-200D-2642-FE0F", + "non_qualified": "1F939-1F3FF-200D-2642", + "image": "1f939-1f3ff-200d-2642-fe0f.png", + "sheet_x": 42, + "sheet_y": 26, + "added_in": "4.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + } + } }, { - "name": "KISSING FACE WITH SMILING EYES", - "unified": "1F619", + "name": "JUGGLING", + "unified": "1F939", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f619.png", - "sheet_x": 31, - "sheet_y": 15, - "short_name": "kissing_smiling_eyes", - "short_names": ["kissing_smiling_eyes"], + "image": "1f939.png", + "sheet_x": 42, + "sheet_y": 27, + "short_name": "juggling", + "short_names": ["juggling"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 17, - "added_in": "6.1", + "category": "People & Body", + "subcategory": "person-sport", + "sort_order": 479, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true, - "has_img_messenger": true + "skin_variations": { + "1F3FB": { + "unified": "1F939-1F3FB", + "non_qualified": null, + "image": "1f939-1f3fb.png", + "sheet_x": 42, + "sheet_y": 28, + "added_in": "3.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FC": { + "unified": "1F939-1F3FC", + "non_qualified": null, + "image": "1f939-1f3fc.png", + "sheet_x": 42, + "sheet_y": 29, + "added_in": "3.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FD": { + "unified": "1F939-1F3FD", + "non_qualified": null, + "image": "1f939-1f3fd.png", + "sheet_x": 42, + "sheet_y": 30, + "added_in": "3.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FE": { + "unified": "1F939-1F3FE", + "non_qualified": null, + "image": "1f939-1f3fe.png", + "sheet_x": 42, + "sheet_y": 31, + "added_in": "3.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FF": { + "unified": "1F939-1F3FF", + "non_qualified": null, + "image": "1f939-1f3ff.png", + "sheet_x": 42, + "sheet_y": 32, + "added_in": "3.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + } + } }, { - "name": "KISSING FACE WITH CLOSED EYES", - "unified": "1F61A", + "name": "FENCER", + "unified": "1F93A", "non_qualified": null, - "docomo": "E726", - "au": "EACE", - "softbank": "E417", - "google": "FE32D", - "image": "1f61a.png", - "sheet_x": 31, - "sheet_y": 16, - "short_name": "kissing_closed_eyes", - "short_names": ["kissing_closed_eyes"], + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1f93a.png", + "sheet_x": 42, + "sheet_y": 33, + "short_name": "fencer", + "short_names": ["fencer"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 18, - "added_in": "6.0", + "category": "People & Body", + "subcategory": "person-sport", + "sort_order": 439, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { - "name": "FACE WITH STUCK-OUT TONGUE", - "unified": "1F61B", - "non_qualified": null, + "name": "WOMEN WRESTLING", + "unified": "1F93C-200D-2640-FE0F", + "non_qualified": "1F93C-200D-2640", "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f61b.png", - "sheet_x": 31, - "sheet_y": 17, - "short_name": "stuck_out_tongue", - "short_names": ["stuck_out_tongue"], - "text": ":p", - "texts": [":p", ":-p", ":P", ":-P", ":b", ":-b"], - "category": "Smileys & People", - "sort_order": 39, - "added_in": "6.1", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - { - "name": "FACE WITH STUCK-OUT TONGUE AND WINKING EYE", - "unified": "1F61C", - "non_qualified": null, - "docomo": "E728", - "au": "E4E7", - "softbank": "E105", - "google": "FE329", - "image": "1f61c.png", - "sheet_x": 31, - "sheet_y": 18, - "short_name": "stuck_out_tongue_winking_eye", - "short_names": ["stuck_out_tongue_winking_eye"], - "text": ";p", - "texts": [";p", ";-p", ";b", ";-b", ";P", ";-P"], - "category": "Smileys & People", - "sort_order": 40, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - { - "name": "FACE WITH STUCK-OUT TONGUE AND TIGHTLY-CLOSED EYES", - "unified": "1F61D", - "non_qualified": null, - "docomo": "E728", - "au": "E4E7", - "softbank": "E409", - "google": "FE32A", - "image": "1f61d.png", - "sheet_x": 31, - "sheet_y": 19, - "short_name": "stuck_out_tongue_closed_eyes", - "short_names": ["stuck_out_tongue_closed_eyes"], + "image": "1f93c-200d-2640-fe0f.png", + "sheet_x": 42, + "sheet_y": 34, + "short_name": "woman-wrestling", + "short_names": ["woman-wrestling"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 41, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - { - "name": "DISAPPOINTED FACE", - "unified": "1F61E", - "non_qualified": null, - "docomo": "E6F2", - "au": "EAC0", - "softbank": "E058", - "google": "FE323", - "image": "1f61e.png", - "sheet_x": 31, - "sheet_y": 20, - "short_name": "disappointed", - "short_names": ["disappointed"], - "text": ":(", - "texts": ["):", ":(", ":-("], - "category": "Smileys & People", - "sort_order": 53, - "added_in": "6.0", + "category": "People & Body", + "subcategory": "person-sport", + "sort_order": 472, + "added_in": "4.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { - "name": "WORRIED FACE", - "unified": "1F61F", - "non_qualified": null, + "name": "MEN WRESTLING", + "unified": "1F93C-200D-2642-FE0F", + "non_qualified": "1F93C-200D-2642", "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f61f.png", - "sheet_x": 31, - "sheet_y": 21, - "short_name": "worried", - "short_names": ["worried"], + "image": "1f93c-200d-2642-fe0f.png", + "sheet_x": 42, + "sheet_y": 35, + "short_name": "man-wrestling", + "short_names": ["man-wrestling"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 54, - "added_in": "6.1", + "category": "People & Body", + "subcategory": "person-sport", + "sort_order": 471, + "added_in": "4.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { - "name": "ANGRY FACE", - "unified": "1F620", + "name": "WRESTLERS", + "unified": "1F93C", "non_qualified": null, - "docomo": "E6F1", - "au": "E472", - "softbank": "E059", - "google": "FE320", - "image": "1f620.png", - "sheet_x": 31, - "sheet_y": 22, - "short_name": "angry", - "short_names": ["angry"], + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1f93c.png", + "sheet_x": 42, + "sheet_y": 36, + "short_name": "wrestlers", + "short_names": ["wrestlers"], "text": null, - "texts": [">:(", ">:-("], - "category": "Smileys & People", - "sort_order": 72, - "added_in": "6.0", + "texts": null, + "category": "People & Body", + "subcategory": "person-sport", + "sort_order": 470, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { - "name": "POUTING FACE", - "unified": "1F621", - "non_qualified": null, - "docomo": "E724", - "au": "EB5D", - "softbank": "E416", - "google": "FE33D", - "image": "1f621.png", - "sheet_x": 31, - "sheet_y": 23, - "short_name": "rage", - "short_names": ["rage"], + "name": "WOMAN PLAYING WATER POLO", + "unified": "1F93D-200D-2640-FE0F", + "non_qualified": "1F93D-200D-2640", + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1f93d-200d-2640-fe0f.png", + "sheet_x": 42, + "sheet_y": 37, + "short_name": "woman-playing-water-polo", + "short_names": ["woman-playing-water-polo"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 71, - "added_in": "6.0", + "category": "People & Body", + "subcategory": "person-sport", + "sort_order": 475, + "added_in": "4.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true, - "has_img_messenger": true + "skin_variations": { + "1F3FB": { + "unified": "1F93D-1F3FB-200D-2640-FE0F", + "non_qualified": "1F93D-1F3FB-200D-2640", + "image": "1f93d-1f3fb-200d-2640-fe0f.png", + "sheet_x": 42, + "sheet_y": 38, + "added_in": "4.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FC": { + "unified": "1F93D-1F3FC-200D-2640-FE0F", + "non_qualified": "1F93D-1F3FC-200D-2640", + "image": "1f93d-1f3fc-200d-2640-fe0f.png", + "sheet_x": 42, + "sheet_y": 39, + "added_in": "4.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FD": { + "unified": "1F93D-1F3FD-200D-2640-FE0F", + "non_qualified": "1F93D-1F3FD-200D-2640", + "image": "1f93d-1f3fd-200d-2640-fe0f.png", + "sheet_x": 42, + "sheet_y": 40, + "added_in": "4.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FE": { + "unified": "1F93D-1F3FE-200D-2640-FE0F", + "non_qualified": "1F93D-1F3FE-200D-2640", + "image": "1f93d-1f3fe-200d-2640-fe0f.png", + "sheet_x": 42, + "sheet_y": 41, + "added_in": "4.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FF": { + "unified": "1F93D-1F3FF-200D-2640-FE0F", + "non_qualified": "1F93D-1F3FF-200D-2640", + "image": "1f93d-1f3ff-200d-2640-fe0f.png", + "sheet_x": 42, + "sheet_y": 42, + "added_in": "4.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + } + } }, { - "name": "CRYING FACE", - "unified": "1F622", - "non_qualified": null, - "docomo": "E72E", - "au": "EB69", - "softbank": "E413", - "google": "FE339", - "image": "1f622.png", - "sheet_x": 31, - "sheet_y": 24, - "short_name": "cry", - "short_names": ["cry"], - "text": ":'(", - "texts": [":'("], - "category": "Smileys & People", - "sort_order": 56, - "added_in": "6.0", + "name": "MAN PLAYING WATER POLO", + "unified": "1F93D-200D-2642-FE0F", + "non_qualified": "1F93D-200D-2642", + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1f93d-200d-2642-fe0f.png", + "sheet_x": 42, + "sheet_y": 43, + "short_name": "man-playing-water-polo", + "short_names": ["man-playing-water-polo"], + "text": null, + "texts": null, + "category": "People & Body", + "subcategory": "person-sport", + "sort_order": 474, + "added_in": "4.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true, - "has_img_messenger": true + "skin_variations": { + "1F3FB": { + "unified": "1F93D-1F3FB-200D-2642-FE0F", + "non_qualified": "1F93D-1F3FB-200D-2642", + "image": "1f93d-1f3fb-200d-2642-fe0f.png", + "sheet_x": 42, + "sheet_y": 44, + "added_in": "4.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FC": { + "unified": "1F93D-1F3FC-200D-2642-FE0F", + "non_qualified": "1F93D-1F3FC-200D-2642", + "image": "1f93d-1f3fc-200d-2642-fe0f.png", + "sheet_x": 42, + "sheet_y": 45, + "added_in": "4.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FD": { + "unified": "1F93D-1F3FD-200D-2642-FE0F", + "non_qualified": "1F93D-1F3FD-200D-2642", + "image": "1f93d-1f3fd-200d-2642-fe0f.png", + "sheet_x": 42, + "sheet_y": 46, + "added_in": "4.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FE": { + "unified": "1F93D-1F3FE-200D-2642-FE0F", + "non_qualified": "1F93D-1F3FE-200D-2642", + "image": "1f93d-1f3fe-200d-2642-fe0f.png", + "sheet_x": 42, + "sheet_y": 47, + "added_in": "4.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FF": { + "unified": "1F93D-1F3FF-200D-2642-FE0F", + "non_qualified": "1F93D-1F3FF-200D-2642", + "image": "1f93d-1f3ff-200d-2642-fe0f.png", + "sheet_x": 42, + "sheet_y": 48, + "added_in": "4.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + } + } }, { - "name": "PERSEVERING FACE", - "unified": "1F623", + "name": "WATER POLO", + "unified": "1F93D", "non_qualified": null, - "docomo": "E72B", - "au": "EAC2", - "softbank": "E406", - "google": "FE33C", - "image": "1f623.png", - "sheet_x": 31, - "sheet_y": 25, - "short_name": "persevere", - "short_names": ["persevere"], + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1f93d.png", + "sheet_x": 42, + "sheet_y": 49, + "short_name": "water_polo", + "short_names": ["water_polo"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 30, - "added_in": "6.0", + "category": "People & Body", + "subcategory": "person-sport", + "sort_order": 473, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true, - "has_img_messenger": true + "skin_variations": { + "1F3FB": { + "unified": "1F93D-1F3FB", + "non_qualified": null, + "image": "1f93d-1f3fb.png", + "sheet_x": 42, + "sheet_y": 50, + "added_in": "3.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FC": { + "unified": "1F93D-1F3FC", + "non_qualified": null, + "image": "1f93d-1f3fc.png", + "sheet_x": 42, + "sheet_y": 51, + "added_in": "3.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FD": { + "unified": "1F93D-1F3FD", + "non_qualified": null, + "image": "1f93d-1f3fd.png", + "sheet_x": 42, + "sheet_y": 52, + "added_in": "3.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FE": { + "unified": "1F93D-1F3FE", + "non_qualified": null, + "image": "1f93d-1f3fe.png", + "sheet_x": 42, + "sheet_y": 53, + "added_in": "3.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FF": { + "unified": "1F93D-1F3FF", + "non_qualified": null, + "image": "1f93d-1f3ff.png", + "sheet_x": 42, + "sheet_y": 54, + "added_in": "3.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + } + } }, { - "name": "FACE WITH LOOK OF TRIUMPH", - "unified": "1F624", - "non_qualified": null, - "docomo": "E753", - "au": "EAC1", + "name": "WOMAN PLAYING HANDBALL", + "unified": "1F93E-200D-2640-FE0F", + "non_qualified": "1F93E-200D-2640", + "docomo": null, + "au": null, "softbank": null, - "google": "FE328", - "image": "1f624.png", - "sheet_x": 31, - "sheet_y": 26, - "short_name": "triumph", - "short_names": ["triumph"], + "google": null, + "image": "1f93e-200d-2640-fe0f.png", + "sheet_x": 42, + "sheet_y": 55, + "short_name": "woman-playing-handball", + "short_names": ["woman-playing-handball"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 55, - "added_in": "6.0", + "category": "People & Body", + "subcategory": "person-sport", + "sort_order": 478, + "added_in": "4.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true, - "has_img_messenger": true + "skin_variations": { + "1F3FB": { + "unified": "1F93E-1F3FB-200D-2640-FE0F", + "non_qualified": "1F93E-1F3FB-200D-2640", + "image": "1f93e-1f3fb-200d-2640-fe0f.png", + "sheet_x": 42, + "sheet_y": 56, + "added_in": "4.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FC": { + "unified": "1F93E-1F3FC-200D-2640-FE0F", + "non_qualified": "1F93E-1F3FC-200D-2640", + "image": "1f93e-1f3fc-200d-2640-fe0f.png", + "sheet_x": 42, + "sheet_y": 57, + "added_in": "4.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FD": { + "unified": "1F93E-1F3FD-200D-2640-FE0F", + "non_qualified": "1F93E-1F3FD-200D-2640", + "image": "1f93e-1f3fd-200d-2640-fe0f.png", + "sheet_x": 42, + "sheet_y": 58, + "added_in": "4.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FE": { + "unified": "1F93E-1F3FE-200D-2640-FE0F", + "non_qualified": "1F93E-1F3FE-200D-2640", + "image": "1f93e-1f3fe-200d-2640-fe0f.png", + "sheet_x": 42, + "sheet_y": 59, + "added_in": "4.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FF": { + "unified": "1F93E-1F3FF-200D-2640-FE0F", + "non_qualified": "1F93E-1F3FF-200D-2640", + "image": "1f93e-1f3ff-200d-2640-fe0f.png", + "sheet_x": 42, + "sheet_y": 60, + "added_in": "4.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + } + } }, { - "name": "DISAPPOINTED BUT RELIEVED FACE", - "unified": "1F625", - "non_qualified": null, - "docomo": "E723", - "au": "E5C6", - "softbank": "E401", - "google": "FE345", - "image": "1f625.png", - "sheet_x": 31, - "sheet_y": 27, - "short_name": "disappointed_relieved", - "short_names": ["disappointed_relieved"], + "name": "MAN PLAYING HANDBALL", + "unified": "1F93E-200D-2642-FE0F", + "non_qualified": "1F93E-200D-2642", + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1f93e-200d-2642-fe0f.png", + "sheet_x": 43, + "sheet_y": 0, + "short_name": "man-playing-handball", + "short_names": ["man-playing-handball"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 31, - "added_in": "6.0", + "category": "People & Body", + "subcategory": "person-sport", + "sort_order": 477, + "added_in": "4.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true, - "has_img_messenger": true + "skin_variations": { + "1F3FB": { + "unified": "1F93E-1F3FB-200D-2642-FE0F", + "non_qualified": "1F93E-1F3FB-200D-2642", + "image": "1f93e-1f3fb-200d-2642-fe0f.png", + "sheet_x": 43, + "sheet_y": 1, + "added_in": "4.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FC": { + "unified": "1F93E-1F3FC-200D-2642-FE0F", + "non_qualified": "1F93E-1F3FC-200D-2642", + "image": "1f93e-1f3fc-200d-2642-fe0f.png", + "sheet_x": 43, + "sheet_y": 2, + "added_in": "4.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FD": { + "unified": "1F93E-1F3FD-200D-2642-FE0F", + "non_qualified": "1F93E-1F3FD-200D-2642", + "image": "1f93e-1f3fd-200d-2642-fe0f.png", + "sheet_x": 43, + "sheet_y": 3, + "added_in": "4.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FE": { + "unified": "1F93E-1F3FE-200D-2642-FE0F", + "non_qualified": "1F93E-1F3FE-200D-2642", + "image": "1f93e-1f3fe-200d-2642-fe0f.png", + "sheet_x": 43, + "sheet_y": 4, + "added_in": "4.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FF": { + "unified": "1F93E-1F3FF-200D-2642-FE0F", + "non_qualified": "1F93E-1F3FF-200D-2642", + "image": "1f93e-1f3ff-200d-2642-fe0f.png", + "sheet_x": 43, + "sheet_y": 5, + "added_in": "4.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + } + } }, { - "name": "FROWNING FACE WITH OPEN MOUTH", - "unified": "1F626", + "name": "HANDBALL", + "unified": "1F93E", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f626.png", - "sheet_x": 31, - "sheet_y": 28, - "short_name": "frowning", - "short_names": ["frowning"], + "image": "1f93e.png", + "sheet_x": 43, + "sheet_y": 6, + "short_name": "handball", + "short_names": ["handball"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 58, - "added_in": "6.1", + "category": "People & Body", + "subcategory": "person-sport", + "sort_order": 476, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true, - "has_img_messenger": true + "skin_variations": { + "1F3FB": { + "unified": "1F93E-1F3FB", + "non_qualified": null, + "image": "1f93e-1f3fb.png", + "sheet_x": 43, + "sheet_y": 7, + "added_in": "3.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FC": { + "unified": "1F93E-1F3FC", + "non_qualified": null, + "image": "1f93e-1f3fc.png", + "sheet_x": 43, + "sheet_y": 8, + "added_in": "3.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FD": { + "unified": "1F93E-1F3FD", + "non_qualified": null, + "image": "1f93e-1f3fd.png", + "sheet_x": 43, + "sheet_y": 9, + "added_in": "3.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FE": { + "unified": "1F93E-1F3FE", + "non_qualified": null, + "image": "1f93e-1f3fe.png", + "sheet_x": 43, + "sheet_y": 10, + "added_in": "3.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FF": { + "unified": "1F93E-1F3FF", + "non_qualified": null, + "image": "1f93e-1f3ff.png", + "sheet_x": 43, + "sheet_y": 11, + "added_in": "3.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + } + } }, { - "name": "ANGUISHED FACE", - "unified": "1F627", + "name": "DIVING MASK", + "unified": "1F93F", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f627.png", - "sheet_x": 31, - "sheet_y": 29, - "short_name": "anguished", - "short_names": ["anguished"], - "text": null, - "texts": ["D:"], - "category": "Smileys & People", - "sort_order": 59, - "added_in": "6.1", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - { - "name": "FEARFUL FACE", - "unified": "1F628", - "non_qualified": null, - "docomo": "E757", - "au": "EAC6", - "softbank": "E40B", - "google": "FE33B", - "image": "1f628.png", - "sheet_x": 31, - "sheet_y": 30, - "short_name": "fearful", - "short_names": ["fearful"], + "image": "1f93f.png", + "sheet_x": 43, + "sheet_y": 12, + "short_name": "diving_mask", + "short_names": ["diving_mask"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 60, - "added_in": "6.0", + "category": "Activities", + "subcategory": "sport", + "sort_order": 1087, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { - "name": "WEARY FACE", - "unified": "1F629", + "name": "WILTED FLOWER", + "unified": "1F940", "non_qualified": null, - "docomo": "E6F3", - "au": "EB67", + "docomo": null, + "au": null, "softbank": null, - "google": "FE321", - "image": "1f629.png", - "sheet_x": 31, - "sheet_y": 31, - "short_name": "weary", - "short_names": ["weary"], + "google": null, + "image": "1f940.png", + "sheet_x": 43, + "sheet_y": 13, + "short_name": "wilted_flower", + "short_names": ["wilted_flower"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 61, - "added_in": "6.0", + "category": "Animals & Nature", + "subcategory": "plant-flower", + "sort_order": 665, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { - "name": "SLEEPY FACE", - "unified": "1F62A", + "name": "DRUM WITH DRUMSTICKS", + "unified": "1F941", "non_qualified": null, - "docomo": "E701", - "au": "EAC4", - "softbank": "E408", - "google": "FE342", - "image": "1f62a.png", - "sheet_x": 31, - "sheet_y": 32, - "short_name": "sleepy", - "short_names": ["sleepy"], + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1f941.png", + "sheet_x": 43, + "sheet_y": 14, + "short_name": "drum_with_drumsticks", + "short_names": ["drum_with_drumsticks"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 35, - "added_in": "6.0", + "category": "Objects", + "subcategory": "musical-instrument", + "sort_order": 1195, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { - "name": "TIRED FACE", - "unified": "1F62B", + "name": "CLINKING GLASSES", + "unified": "1F942", "non_qualified": null, - "docomo": "E72B", - "au": "E474", + "docomo": null, + "au": null, "softbank": null, - "google": "FE346", - "image": "1f62b.png", - "sheet_x": 31, - "sheet_y": 33, - "short_name": "tired_face", - "short_names": ["tired_face"], + "google": null, + "image": "1f942.png", + "sheet_x": 43, + "sheet_y": 15, + "short_name": "clinking_glasses", + "short_names": ["clinking_glasses"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 36, - "added_in": "6.0", + "category": "Food & Drink", + "subcategory": "drink", + "sort_order": 805, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { - "name": "GRIMACING FACE", - "unified": "1F62C", + "name": "TUMBLER GLASS", + "unified": "1F943", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f62c.png", - "sheet_x": 31, - "sheet_y": 34, - "short_name": "grimacing", - "short_names": ["grimacing"], + "image": "1f943.png", + "sheet_x": 43, + "sheet_y": 16, + "short_name": "tumbler_glass", + "short_names": ["tumbler_glass"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 63, - "added_in": "6.1", + "category": "Food & Drink", + "subcategory": "drink", + "sort_order": 806, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { - "name": "LOUDLY CRYING FACE", - "unified": "1F62D", + "name": "SPOON", + "unified": "1F944", "non_qualified": null, - "docomo": "E72D", - "au": "E473", - "softbank": "E411", - "google": "FE33A", - "image": "1f62d.png", - "sheet_x": 31, - "sheet_y": 35, - "short_name": "sob", - "short_names": ["sob"], - "text": ":'(", + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1f944.png", + "sheet_x": 43, + "sheet_y": 17, + "short_name": "spoon", + "short_names": ["spoon"], + "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 57, - "added_in": "6.0", + "category": "Food & Drink", + "subcategory": "dishware", + "sort_order": 816, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { - "name": "FACE WITH OPEN MOUTH", - "unified": "1F62E", + "name": "GOAL NET", + "unified": "1F945", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f62e.png", - "sheet_x": 31, - "sheet_y": 36, - "short_name": "open_mouth", - "short_names": ["open_mouth"], + "image": "1f945.png", + "sheet_x": 43, + "sheet_y": 18, + "short_name": "goal_net", + "short_names": ["goal_net"], "text": null, - "texts": [":o", ":-o", ":O", ":-O"], - "category": "Smileys & People", - "sort_order": 32, - "added_in": "6.1", + "texts": null, + "category": "Activities", + "subcategory": "sport", + "sort_order": 1083, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { - "name": "HUSHED FACE", - "unified": "1F62F", + "name": "FIRST PLACE MEDAL", + "unified": "1F947", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f62f.png", - "sheet_x": 31, - "sheet_y": 37, - "short_name": "hushed", - "short_names": ["hushed"], + "image": "1f947.png", + "sheet_x": 43, + "sheet_y": 19, + "short_name": "first_place_medal", + "short_names": ["first_place_medal"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 34, - "added_in": "6.1", + "category": "Activities", + "subcategory": "award-medal", + "sort_order": 1062, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { - "name": "FACE WITH OPEN MOUTH AND COLD SWEAT", - "unified": "1F630", + "name": "SECOND PLACE MEDAL", + "unified": "1F948", "non_qualified": null, - "docomo": "E723", - "au": "EACB", - "softbank": "E40F", - "google": "FE325", - "image": "1f630.png", - "sheet_x": 31, - "sheet_y": 38, - "short_name": "cold_sweat", - "short_names": ["cold_sweat"], + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1f948.png", + "sheet_x": 43, + "sheet_y": 20, + "short_name": "second_place_medal", + "short_names": ["second_place_medal"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 64, - "added_in": "6.0", + "category": "Activities", + "subcategory": "award-medal", + "sort_order": 1063, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { - "name": "FACE SCREAMING IN FEAR", - "unified": "1F631", - "non_qualified": null, - "docomo": "E757", - "au": "E5C5", - "softbank": "E107", - "google": "FE341", - "image": "1f631.png", - "sheet_x": 31, - "sheet_y": 39, - "short_name": "scream", - "short_names": ["scream"], + "name": "THIRD PLACE MEDAL", + "unified": "1F949", + "non_qualified": null, + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1f949.png", + "sheet_x": 43, + "sheet_y": 21, + "short_name": "third_place_medal", + "short_names": ["third_place_medal"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 65, - "added_in": "6.0", + "category": "Activities", + "subcategory": "award-medal", + "sort_order": 1064, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { - "name": "ASTONISHED FACE", - "unified": "1F632", + "name": "BOXING GLOVE", + "unified": "1F94A", "non_qualified": null, - "docomo": "E6F4", - "au": "EACA", - "softbank": "E410", - "google": "FE322", - "image": "1f632.png", - "sheet_x": 31, - "sheet_y": 40, - "short_name": "astonished", - "short_names": ["astonished"], + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1f94a.png", + "sheet_x": 43, + "sheet_y": 22, + "short_name": "boxing_glove", + "short_names": ["boxing_glove"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 49, - "added_in": "6.0", + "category": "Activities", + "subcategory": "sport", + "sort_order": 1081, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { - "name": "FLUSHED FACE", - "unified": "1F633", + "name": "MARTIAL ARTS UNIFORM", + "unified": "1F94B", "non_qualified": null, - "docomo": "E72A", - "au": "EAC8", - "softbank": "E40D", - "google": "FE32F", - "image": "1f633.png", - "sheet_x": 31, - "sheet_y": 41, - "short_name": "flushed", - "short_names": ["flushed"], + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1f94b.png", + "sheet_x": 43, + "sheet_y": 23, + "short_name": "martial_arts_uniform", + "short_names": ["martial_arts_uniform"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 68, - "added_in": "6.0", + "category": "Activities", + "subcategory": "sport", + "sort_order": 1082, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { - "name": "SLEEPING FACE", - "unified": "1F634", + "name": "CURLING STONE", + "unified": "1F94C", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f634.png", - "sheet_x": 31, - "sheet_y": 42, - "short_name": "sleeping", - "short_names": ["sleeping"], + "image": "1f94c.png", + "sheet_x": 43, + "sheet_y": 24, + "short_name": "curling_stone", + "short_names": ["curling_stone"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 37, - "added_in": "6.1", + "category": "Activities", + "subcategory": "sport", + "sort_order": 1091, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { - "name": "DIZZY FACE", - "unified": "1F635", + "name": "LACROSSE STICK AND BALL", + "unified": "1F94D", "non_qualified": null, - "docomo": "E6F4", - "au": "E5AE", + "docomo": null, + "au": null, "softbank": null, - "google": "FE324", - "image": "1f635.png", - "sheet_x": 31, - "sheet_y": 43, - "short_name": "dizzy_face", - "short_names": ["dizzy_face"], + "google": null, + "image": "1f94d.png", + "sheet_x": 43, + "sheet_y": 25, + "short_name": "lacrosse", + "short_names": ["lacrosse"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 70, - "added_in": "6.0", + "category": "Activities", + "subcategory": "sport", + "sort_order": 1078, + "added_in": "11.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { - "name": "FACE WITHOUT MOUTH", - "unified": "1F636", + "name": "SOFTBALL", + "unified": "1F94E", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f636.png", - "sheet_x": 31, - "sheet_y": 44, - "short_name": "no_mouth", - "short_names": ["no_mouth"], + "image": "1f94e.png", + "sheet_x": 43, + "sheet_y": 26, + "short_name": "softball", + "short_names": ["softball"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 27, - "added_in": "6.0", + "category": "Activities", + "subcategory": "sport", + "sort_order": 1067, + "added_in": "11.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { - "name": "FACE WITH MEDICAL MASK", - "unified": "1F637", + "name": "FLYING DISC", + "unified": "1F94F", "non_qualified": null, "docomo": null, - "au": "EAC7", - "softbank": "E40C", - "google": "FE32E", - "image": "1f637.png", - "sheet_x": 31, - "sheet_y": 45, - "short_name": "mask", - "short_names": ["mask"], + "au": null, + "softbank": null, + "google": null, + "image": "1f94f.png", + "sheet_x": 43, + "sheet_y": 27, + "short_name": "flying_disc", + "short_names": ["flying_disc"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 74, - "added_in": "6.0", + "category": "Activities", + "subcategory": "sport", + "sort_order": 1073, + "added_in": "11.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { - "name": "GRINNING CAT FACE WITH SMILING EYES", - "unified": "1F638", + "name": "CROISSANT", + "unified": "1F950", "non_qualified": null, - "docomo": "E753", - "au": "EB7F", + "docomo": null, + "au": null, "softbank": null, - "google": "FE349", - "image": "1f638.png", - "sheet_x": 31, - "sheet_y": 46, - "short_name": "smile_cat", - "short_names": ["smile_cat"], + "google": null, + "image": "1f950.png", + "sheet_x": 43, + "sheet_y": 28, + "short_name": "croissant", + "short_names": ["croissant"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 103, - "added_in": "6.0", + "category": "Food & Drink", + "subcategory": "food-prepared", + "sort_order": 724, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { - "name": "CAT FACE WITH TEARS OF JOY", - "unified": "1F639", + "name": "AVOCADO", + "unified": "1F951", "non_qualified": null, - "docomo": "E72A", - "au": "EB63", + "docomo": null, + "au": null, "softbank": null, - "google": "FE34A", - "image": "1f639.png", - "sheet_x": 31, - "sheet_y": 47, - "short_name": "joy_cat", - "short_names": ["joy_cat"], + "google": null, + "image": "1f951.png", + "sheet_x": 43, + "sheet_y": 29, + "short_name": "avocado", + "short_names": ["avocado"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 104, - "added_in": "6.0", + "category": "Food & Drink", + "subcategory": "food-vegetable", + "sort_order": 706, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { - "name": "SMILING CAT FACE WITH OPEN MOUTH", - "unified": "1F63A", + "name": "CUCUMBER", + "unified": "1F952", "non_qualified": null, - "docomo": "E6F0", - "au": "EB61", + "docomo": null, + "au": null, "softbank": null, - "google": "FE348", - "image": "1f63a.png", - "sheet_x": 31, - "sheet_y": 48, - "short_name": "smiley_cat", - "short_names": ["smiley_cat"], + "google": null, + "image": "1f952.png", + "sheet_x": 43, + "sheet_y": 30, + "short_name": "cucumber", + "short_names": ["cucumber"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 102, - "added_in": "6.0", + "category": "Food & Drink", + "subcategory": "food-vegetable", + "sort_order": 713, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { - "name": "SMILING CAT FACE WITH HEART-SHAPED EYES", - "unified": "1F63B", + "name": "BACON", + "unified": "1F953", "non_qualified": null, - "docomo": "E726", - "au": "EB65", + "docomo": null, + "au": null, "softbank": null, - "google": "FE34C", - "image": "1f63b.png", - "sheet_x": 31, - "sheet_y": 49, - "short_name": "heart_eyes_cat", - "short_names": ["heart_eyes_cat"], + "google": null, + "image": "1f953.png", + "sheet_x": 43, + "sheet_y": 31, + "short_name": "bacon", + "short_names": ["bacon"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 105, - "added_in": "6.0", + "category": "Food & Drink", + "subcategory": "food-prepared", + "sort_order": 735, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { - "name": "CAT FACE WITH WRY SMILE", - "unified": "1F63C", + "name": "POTATO", + "unified": "1F954", "non_qualified": null, - "docomo": "E753", - "au": "EB6A", + "docomo": null, + "au": null, "softbank": null, - "google": "FE34F", - "image": "1f63c.png", - "sheet_x": 31, - "sheet_y": 50, - "short_name": "smirk_cat", - "short_names": ["smirk_cat"], + "google": null, + "image": "1f954.png", + "sheet_x": 43, + "sheet_y": 32, + "short_name": "potato", + "short_names": ["potato"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 106, - "added_in": "6.0", + "category": "Food & Drink", + "subcategory": "food-vegetable", + "sort_order": 708, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { - "name": "KISSING CAT FACE WITH CLOSED EYES", - "unified": "1F63D", + "name": "CARROT", + "unified": "1F955", "non_qualified": null, - "docomo": "E726", - "au": "EB60", + "docomo": null, + "au": null, "softbank": null, - "google": "FE34B", - "image": "1f63d.png", - "sheet_x": 31, - "sheet_y": 51, - "short_name": "kissing_cat", - "short_names": ["kissing_cat"], + "google": null, + "image": "1f955.png", + "sheet_x": 43, + "sheet_y": 33, + "short_name": "carrot", + "short_names": ["carrot"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 107, - "added_in": "6.0", + "category": "Food & Drink", + "subcategory": "food-vegetable", + "sort_order": 709, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { - "name": "POUTING CAT FACE", - "unified": "1F63E", + "name": "BAGUETTE BREAD", + "unified": "1F956", "non_qualified": null, - "docomo": "E724", - "au": "EB5E", + "docomo": null, + "au": null, "softbank": null, - "google": "FE34E", - "image": "1f63e.png", - "sheet_x": 31, - "sheet_y": 52, - "short_name": "pouting_cat", - "short_names": ["pouting_cat"], + "google": null, + "image": "1f956.png", + "sheet_x": 43, + "sheet_y": 34, + "short_name": "baguette_bread", + "short_names": ["baguette_bread"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 110, - "added_in": "6.0", + "category": "Food & Drink", + "subcategory": "food-prepared", + "sort_order": 725, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { - "name": "CRYING CAT FACE", - "unified": "1F63F", + "name": "GREEN SALAD", + "unified": "1F957", "non_qualified": null, - "docomo": "E72E", - "au": "EB68", + "docomo": null, + "au": null, "softbank": null, - "google": "FE34D", - "image": "1f63f.png", - "sheet_x": 32, - "sheet_y": 0, - "short_name": "crying_cat_face", - "short_names": ["crying_cat_face"], + "google": null, + "image": "1f957.png", + "sheet_x": 43, + "sheet_y": 35, + "short_name": "green_salad", + "short_names": ["green_salad"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 109, - "added_in": "6.0", + "category": "Food & Drink", + "subcategory": "food-prepared", + "sort_order": 752, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { - "name": "WEARY CAT FACE", - "unified": "1F640", + "name": "SHALLOW PAN OF FOOD", + "unified": "1F958", "non_qualified": null, - "docomo": "E6F3", - "au": "EB66", + "docomo": null, + "au": null, "softbank": null, - "google": "FE350", - "image": "1f640.png", - "sheet_x": 32, - "sheet_y": 1, - "short_name": "scream_cat", - "short_names": ["scream_cat"], + "google": null, + "image": "1f958.png", + "sheet_x": 43, + "sheet_y": 36, + "short_name": "shallow_pan_of_food", + "short_names": ["shallow_pan_of_food"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 108, - "added_in": "6.0", + "category": "Food & Drink", + "subcategory": "food-prepared", + "sort_order": 748, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { - "name": "SLIGHTLY FROWNING FACE", - "unified": "1F641", + "name": "STUFFED FLATBREAD", + "unified": "1F959", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f641.png", - "sheet_x": 32, - "sheet_y": 2, - "short_name": "slightly_frowning_face", - "short_names": ["slightly_frowning_face"], + "image": "1f959.png", + "sheet_x": 43, + "sheet_y": 37, + "short_name": "stuffed_flatbread", + "short_names": ["stuffed_flatbread"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 51, - "added_in": "7.0", + "category": "Food & Drink", + "subcategory": "food-prepared", + "sort_order": 744, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, { - "name": "SLIGHTLY SMILING FACE", - "unified": "1F642", + "name": "EGG", + "unified": "1F95A", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f642.png", - "sheet_x": 32, - "sheet_y": 3, - "short_name": "slightly_smiling_face", - "short_names": ["slightly_smiling_face"], + "image": "1f95a.png", + "sheet_x": 43, + "sheet_y": 38, + "short_name": "egg", + "short_names": ["egg"], "text": null, - "texts": [":)", "(:", ":-)"], - "category": "Smileys & People", - "sort_order": 20, - "added_in": "7.0", + "texts": null, + "category": "Food & Drink", + "subcategory": "food-prepared", + "sort_order": 746, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { - "name": "UPSIDE-DOWN FACE", - "unified": "1F643", + "name": "GLASS OF MILK", + "unified": "1F95B", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f643.png", - "sheet_x": 32, - "sheet_y": 4, - "short_name": "upside_down_face", - "short_names": ["upside_down_face"], + "image": "1f95b.png", + "sheet_x": 43, + "sheet_y": 39, + "short_name": "glass_of_milk", + "short_names": ["glass_of_milk"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 47, - "added_in": "8.0", + "category": "Food & Drink", + "subcategory": "drink", + "sort_order": 794, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, { - "name": "FACE WITH ROLLING EYES", - "unified": "1F644", + "name": "PEANUTS", + "unified": "1F95C", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f644.png", - "sheet_x": 32, - "sheet_y": 5, - "short_name": "face_with_rolling_eyes", - "short_names": ["face_with_rolling_eyes"], + "image": "1f95c.png", + "sheet_x": 43, + "sheet_y": 40, + "short_name": "peanuts", + "short_names": ["peanuts"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 28, - "added_in": "8.0", + "category": "Food & Drink", + "subcategory": "food-vegetable", + "sort_order": 718, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, { - "name": null, - "unified": "1F645-200D-2640-FE0F", - "non_qualified": "1F645-200D-2640", + "name": "KIWIFRUIT", + "unified": "1F95D", + "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f645-200d-2640-fe0f.png", - "sheet_x": 32, - "sheet_y": 6, - "short_name": "woman-gesturing-no", - "short_names": ["woman-gesturing-no"], + "image": "1f95d.png", + "sheet_x": 43, + "sheet_y": 41, + "short_name": "kiwifruit", + "short_names": ["kiwifruit"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 223, - "added_in": "6.0", + "category": "Food & Drink", + "subcategory": "food-fruit", + "sort_order": 702, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F645-1F3FB-200D-2640-FE0F", - "non_qualified": "1F645-1F3FB-200D-2640", - "image": "1f645-1f3fb-200d-2640-fe0f.png", - "sheet_x": 32, - "sheet_y": 7, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F645-1F3FC-200D-2640-FE0F", - "non_qualified": "1F645-1F3FC-200D-2640", - "image": "1f645-1f3fc-200d-2640-fe0f.png", - "sheet_x": 32, - "sheet_y": 8, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F645-1F3FD-200D-2640-FE0F", - "non_qualified": "1F645-1F3FD-200D-2640", - "image": "1f645-1f3fd-200d-2640-fe0f.png", - "sheet_x": 32, - "sheet_y": 9, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F645-1F3FE-200D-2640-FE0F", - "non_qualified": "1F645-1F3FE-200D-2640", - "image": "1f645-1f3fe-200d-2640-fe0f.png", - "sheet_x": 32, - "sheet_y": 10, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F645-1F3FF-200D-2640-FE0F", - "non_qualified": "1F645-1F3FF-200D-2640", - "image": "1f645-1f3ff-200d-2640-fe0f.png", - "sheet_x": 32, - "sheet_y": 11, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - } - }, - "obsoletes": "1F645" + "has_img_facebook": true + }, + { + "name": "PANCAKES", + "unified": "1F95E", + "non_qualified": null, + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1f95e.png", + "sheet_x": 43, + "sheet_y": 42, + "short_name": "pancakes", + "short_names": ["pancakes"], + "text": null, + "texts": null, + "category": "Food & Drink", + "subcategory": "food-prepared", + "sort_order": 729, + "added_in": "3.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, { - "name": null, - "unified": "1F645-200D-2642-FE0F", - "non_qualified": "1F645-200D-2642", + "name": "DUMPLING", + "unified": "1F95F", + "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f645-200d-2642-fe0f.png", - "sheet_x": 32, - "sheet_y": 12, - "short_name": "man-gesturing-no", - "short_names": ["man-gesturing-no"], + "image": "1f95f.png", + "sheet_x": 43, + "sheet_y": 43, + "short_name": "dumpling", + "short_names": ["dumpling"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 222, - "added_in": "6.0", + "category": "Food & Drink", + "subcategory": "food-asian", + "sort_order": 771, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F645-1F3FB-200D-2642-FE0F", - "non_qualified": "1F645-1F3FB-200D-2642", - "image": "1f645-1f3fb-200d-2642-fe0f.png", - "sheet_x": 32, - "sheet_y": 13, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F645-1F3FC-200D-2642-FE0F", - "non_qualified": "1F645-1F3FC-200D-2642", - "image": "1f645-1f3fc-200d-2642-fe0f.png", - "sheet_x": 32, - "sheet_y": 14, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F645-1F3FD-200D-2642-FE0F", - "non_qualified": "1F645-1F3FD-200D-2642", - "image": "1f645-1f3fd-200d-2642-fe0f.png", - "sheet_x": 32, - "sheet_y": 15, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F645-1F3FE-200D-2642-FE0F", - "non_qualified": "1F645-1F3FE-200D-2642", - "image": "1f645-1f3fe-200d-2642-fe0f.png", - "sheet_x": 32, - "sheet_y": 16, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F645-1F3FF-200D-2642-FE0F", - "non_qualified": "1F645-1F3FF-200D-2642", - "image": "1f645-1f3ff-200d-2642-fe0f.png", - "sheet_x": 32, - "sheet_y": 17, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - } - } + "has_img_facebook": true }, { - "name": "FACE WITH NO GOOD GESTURE", - "unified": "1F645", + "name": "FORTUNE COOKIE", + "unified": "1F960", "non_qualified": null, - "docomo": "E72F", - "au": "EAD7", - "softbank": "E423", - "google": "FE351", - "image": "1f645.png", - "sheet_x": 32, - "sheet_y": 18, - "short_name": "no_good", - "short_names": ["no_good"], + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1f960.png", + "sheet_x": 43, + "sheet_y": 44, + "short_name": "fortune_cookie", + "short_names": ["fortune_cookie"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 221, - "added_in": "6.0", + "category": "Food & Drink", + "subcategory": "food-asian", + "sort_order": 772, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": true, - "skin_variations": { - "1F3FB": { - "unified": "1F645-1F3FB", - "non_qualified": null, - "image": "1f645-1f3fb.png", - "sheet_x": 32, - "sheet_y": 19, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": true - }, - "1F3FC": { - "unified": "1F645-1F3FC", - "non_qualified": null, - "image": "1f645-1f3fc.png", - "sheet_x": 32, - "sheet_y": 20, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": true - }, - "1F3FD": { - "unified": "1F645-1F3FD", - "non_qualified": null, - "image": "1f645-1f3fd.png", - "sheet_x": 32, - "sheet_y": 21, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": true - }, - "1F3FE": { - "unified": "1F645-1F3FE", - "non_qualified": null, - "image": "1f645-1f3fe.png", - "sheet_x": 32, - "sheet_y": 22, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": true - }, - "1F3FF": { - "unified": "1F645-1F3FF", - "non_qualified": null, - "image": "1f645-1f3ff.png", - "sheet_x": 32, - "sheet_y": 23, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": true - } - }, - "obsoleted_by": "1F645-200D-2640-FE0F" + "has_img_facebook": true }, { - "name": null, - "unified": "1F646-200D-2640-FE0F", - "non_qualified": "1F646-200D-2640", + "name": "TAKEOUT BOX", + "unified": "1F961", + "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f646-200d-2640-fe0f.png", - "sheet_x": 32, - "sheet_y": 24, - "short_name": "woman-gesturing-ok", - "short_names": ["woman-gesturing-ok"], + "image": "1f961.png", + "sheet_x": 43, + "sheet_y": 45, + "short_name": "takeout_box", + "short_names": ["takeout_box"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 226, - "added_in": "6.0", + "category": "Food & Drink", + "subcategory": "food-asian", + "sort_order": 773, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F646-1F3FB-200D-2640-FE0F", - "non_qualified": "1F646-1F3FB-200D-2640", - "image": "1f646-1f3fb-200d-2640-fe0f.png", - "sheet_x": 32, - "sheet_y": 25, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F646-1F3FC-200D-2640-FE0F", - "non_qualified": "1F646-1F3FC-200D-2640", - "image": "1f646-1f3fc-200d-2640-fe0f.png", - "sheet_x": 32, - "sheet_y": 26, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F646-1F3FD-200D-2640-FE0F", - "non_qualified": "1F646-1F3FD-200D-2640", - "image": "1f646-1f3fd-200d-2640-fe0f.png", - "sheet_x": 32, - "sheet_y": 27, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F646-1F3FE-200D-2640-FE0F", - "non_qualified": "1F646-1F3FE-200D-2640", - "image": "1f646-1f3fe-200d-2640-fe0f.png", - "sheet_x": 32, - "sheet_y": 28, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F646-1F3FF-200D-2640-FE0F", - "non_qualified": "1F646-1F3FF-200D-2640", - "image": "1f646-1f3ff-200d-2640-fe0f.png", - "sheet_x": 32, - "sheet_y": 29, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - } - }, - "obsoletes": "1F646" + "has_img_facebook": true }, { - "name": null, - "unified": "1F646-200D-2642-FE0F", - "non_qualified": "1F646-200D-2642", + "name": "CHOPSTICKS", + "unified": "1F962", + "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f646-200d-2642-fe0f.png", - "sheet_x": 32, - "sheet_y": 30, - "short_name": "man-gesturing-ok", - "short_names": ["man-gesturing-ok"], + "image": "1f962.png", + "sheet_x": 43, + "sheet_y": 46, + "short_name": "chopsticks", + "short_names": ["chopsticks"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 225, - "added_in": "6.0", + "category": "Food & Drink", + "subcategory": "dishware", + "sort_order": 813, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F646-1F3FB-200D-2642-FE0F", - "non_qualified": "1F646-1F3FB-200D-2642", - "image": "1f646-1f3fb-200d-2642-fe0f.png", - "sheet_x": 32, - "sheet_y": 31, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F646-1F3FC-200D-2642-FE0F", - "non_qualified": "1F646-1F3FC-200D-2642", - "image": "1f646-1f3fc-200d-2642-fe0f.png", - "sheet_x": 32, - "sheet_y": 32, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F646-1F3FD-200D-2642-FE0F", - "non_qualified": "1F646-1F3FD-200D-2642", - "image": "1f646-1f3fd-200d-2642-fe0f.png", - "sheet_x": 32, - "sheet_y": 33, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F646-1F3FE-200D-2642-FE0F", - "non_qualified": "1F646-1F3FE-200D-2642", - "image": "1f646-1f3fe-200d-2642-fe0f.png", - "sheet_x": 32, - "sheet_y": 34, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F646-1F3FF-200D-2642-FE0F", - "non_qualified": "1F646-1F3FF-200D-2642", - "image": "1f646-1f3ff-200d-2642-fe0f.png", - "sheet_x": 32, - "sheet_y": 35, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - } - } + "has_img_facebook": true }, { - "name": "FACE WITH OK GESTURE", - "unified": "1F646", + "name": "BOWL WITH SPOON", + "unified": "1F963", "non_qualified": null, - "docomo": "E70B", - "au": "EAD8", - "softbank": "E424", - "google": "FE352", - "image": "1f646.png", - "sheet_x": 32, - "sheet_y": 36, - "short_name": "ok_woman", - "short_names": ["ok_woman"], + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1f963.png", + "sheet_x": 43, + "sheet_y": 47, + "short_name": "bowl_with_spoon", + "short_names": ["bowl_with_spoon"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 224, - "added_in": "6.0", + "category": "Food & Drink", + "subcategory": "food-prepared", + "sort_order": 751, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": true, - "skin_variations": { - "1F3FB": { - "unified": "1F646-1F3FB", - "non_qualified": null, - "image": "1f646-1f3fb.png", - "sheet_x": 32, - "sheet_y": 37, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": true - }, - "1F3FC": { - "unified": "1F646-1F3FC", - "non_qualified": null, - "image": "1f646-1f3fc.png", - "sheet_x": 32, - "sheet_y": 38, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": true - }, - "1F3FD": { - "unified": "1F646-1F3FD", - "non_qualified": null, - "image": "1f646-1f3fd.png", - "sheet_x": 32, - "sheet_y": 39, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": true - }, - "1F3FE": { - "unified": "1F646-1F3FE", - "non_qualified": null, - "image": "1f646-1f3fe.png", - "sheet_x": 32, - "sheet_y": 40, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": true - }, - "1F3FF": { - "unified": "1F646-1F3FF", - "non_qualified": null, - "image": "1f646-1f3ff.png", - "sheet_x": 32, - "sheet_y": 41, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": true - } - }, - "obsoleted_by": "1F646-200D-2640-FE0F" + "has_img_facebook": true }, { - "name": null, - "unified": "1F647-200D-2640-FE0F", - "non_qualified": "1F647-200D-2640", + "name": "CUP WITH STRAW", + "unified": "1F964", + "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f647-200d-2640-fe0f.png", - "sheet_x": 32, - "sheet_y": 42, - "short_name": "woman-bowing", - "short_names": ["woman-bowing"], + "image": "1f964.png", + "sheet_x": 43, + "sheet_y": 48, + "short_name": "cup_with_straw", + "short_names": ["cup_with_straw"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 235, - "added_in": "6.0", + "category": "Food & Drink", + "subcategory": "drink", + "sort_order": 808, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F647-1F3FB-200D-2640-FE0F", - "non_qualified": "1F647-1F3FB-200D-2640", - "image": "1f647-1f3fb-200d-2640-fe0f.png", - "sheet_x": 32, - "sheet_y": 43, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F647-1F3FC-200D-2640-FE0F", - "non_qualified": "1F647-1F3FC-200D-2640", - "image": "1f647-1f3fc-200d-2640-fe0f.png", - "sheet_x": 32, - "sheet_y": 44, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F647-1F3FD-200D-2640-FE0F", - "non_qualified": "1F647-1F3FD-200D-2640", - "image": "1f647-1f3fd-200d-2640-fe0f.png", - "sheet_x": 32, - "sheet_y": 45, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F647-1F3FE-200D-2640-FE0F", - "non_qualified": "1F647-1F3FE-200D-2640", - "image": "1f647-1f3fe-200d-2640-fe0f.png", - "sheet_x": 32, - "sheet_y": 46, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F647-1F3FF-200D-2640-FE0F", - "non_qualified": "1F647-1F3FF-200D-2640", - "image": "1f647-1f3ff-200d-2640-fe0f.png", - "sheet_x": 32, - "sheet_y": 47, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - } - } + "has_img_facebook": true }, { - "name": null, - "unified": "1F647-200D-2642-FE0F", - "non_qualified": "1F647-200D-2642", + "name": "COCONUT", + "unified": "1F965", + "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f647-200d-2642-fe0f.png", - "sheet_x": 32, - "sheet_y": 48, - "short_name": "man-bowing", - "short_names": ["man-bowing"], + "image": "1f965.png", + "sheet_x": 43, + "sheet_y": 49, + "short_name": "coconut", + "short_names": ["coconut"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 234, - "added_in": "6.0", + "category": "Food & Drink", + "subcategory": "food-fruit", + "sort_order": 705, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F647-1F3FB-200D-2642-FE0F", - "non_qualified": "1F647-1F3FB-200D-2642", - "image": "1f647-1f3fb-200d-2642-fe0f.png", - "sheet_x": 32, - "sheet_y": 49, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F647-1F3FC-200D-2642-FE0F", - "non_qualified": "1F647-1F3FC-200D-2642", - "image": "1f647-1f3fc-200d-2642-fe0f.png", - "sheet_x": 32, - "sheet_y": 50, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F647-1F3FD-200D-2642-FE0F", - "non_qualified": "1F647-1F3FD-200D-2642", - "image": "1f647-1f3fd-200d-2642-fe0f.png", - "sheet_x": 32, - "sheet_y": 51, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F647-1F3FE-200D-2642-FE0F", - "non_qualified": "1F647-1F3FE-200D-2642", - "image": "1f647-1f3fe-200d-2642-fe0f.png", - "sheet_x": 32, - "sheet_y": 52, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F647-1F3FF-200D-2642-FE0F", - "non_qualified": "1F647-1F3FF-200D-2642", - "image": "1f647-1f3ff-200d-2642-fe0f.png", - "sheet_x": 33, - "sheet_y": 0, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - } - }, - "obsoletes": "1F647" + "has_img_facebook": true }, { - "name": "PERSON BOWING DEEPLY", - "unified": "1F647", + "name": "BROCCOLI", + "unified": "1F966", + "non_qualified": null, + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1f966.png", + "sheet_x": 43, + "sheet_y": 50, + "short_name": "broccoli", + "short_names": ["broccoli"], + "text": null, + "texts": null, + "category": "Food & Drink", + "subcategory": "food-vegetable", + "sort_order": 715, + "added_in": "5.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + { + "name": "PIE", + "unified": "1F967", "non_qualified": null, "docomo": null, - "au": "EAD9", - "softbank": "E426", - "google": "FE353", - "image": "1f647.png", - "sheet_x": 33, - "sheet_y": 1, - "short_name": "bow", - "short_names": ["bow"], + "au": null, + "softbank": null, + "google": null, + "image": "1f967.png", + "sheet_x": 43, + "sheet_y": 51, + "short_name": "pie", + "short_names": ["pie"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 233, - "added_in": "6.0", + "category": "Food & Drink", + "subcategory": "food-sweet", + "sort_order": 787, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": true, - "skin_variations": { - "1F3FB": { - "unified": "1F647-1F3FB", - "non_qualified": null, - "image": "1f647-1f3fb.png", - "sheet_x": 33, - "sheet_y": 2, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": true - }, - "1F3FC": { - "unified": "1F647-1F3FC", - "non_qualified": null, - "image": "1f647-1f3fc.png", - "sheet_x": 33, - "sheet_y": 3, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": true - }, - "1F3FD": { - "unified": "1F647-1F3FD", - "non_qualified": null, - "image": "1f647-1f3fd.png", - "sheet_x": 33, - "sheet_y": 4, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": true - }, - "1F3FE": { - "unified": "1F647-1F3FE", - "non_qualified": null, - "image": "1f647-1f3fe.png", - "sheet_x": 33, - "sheet_y": 5, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": true - }, - "1F3FF": { - "unified": "1F647-1F3FF", - "non_qualified": null, - "image": "1f647-1f3ff.png", - "sheet_x": 33, - "sheet_y": 6, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": true - } - }, - "obsoleted_by": "1F647-200D-2642-FE0F" + "has_img_facebook": true }, { - "name": "SEE-NO-EVIL MONKEY", - "unified": "1F648", + "name": "PRETZEL", + "unified": "1F968", "non_qualified": null, "docomo": null, - "au": "EB50", + "au": null, "softbank": null, - "google": "FE354", - "image": "1f648.png", - "sheet_x": 33, - "sheet_y": 7, - "short_name": "see_no_evil", - "short_names": ["see_no_evil"], + "google": null, + "image": "1f968.png", + "sheet_x": 43, + "sheet_y": 52, + "short_name": "pretzel", + "short_names": ["pretzel"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 111, - "added_in": "6.0", + "category": "Food & Drink", + "subcategory": "food-prepared", + "sort_order": 727, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { - "name": "HEAR-NO-EVIL MONKEY", - "unified": "1F649", + "name": "CUT OF MEAT", + "unified": "1F969", "non_qualified": null, "docomo": null, - "au": "EB52", + "au": null, "softbank": null, - "google": "FE356", - "image": "1f649.png", - "sheet_x": 33, - "sheet_y": 8, - "short_name": "hear_no_evil", - "short_names": ["hear_no_evil"], + "google": null, + "image": "1f969.png", + "sheet_x": 43, + "sheet_y": 53, + "short_name": "cut_of_meat", + "short_names": ["cut_of_meat"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 112, - "added_in": "6.0", + "category": "Food & Drink", + "subcategory": "food-prepared", + "sort_order": 734, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { - "name": "SPEAK-NO-EVIL MONKEY", - "unified": "1F64A", + "name": "SANDWICH", + "unified": "1F96A", "non_qualified": null, "docomo": null, - "au": "EB51", + "au": null, "softbank": null, - "google": "FE355", - "image": "1f64a.png", - "sheet_x": 33, - "sheet_y": 9, - "short_name": "speak_no_evil", - "short_names": ["speak_no_evil"], + "google": null, + "image": "1f96a.png", + "sheet_x": 43, + "sheet_y": 54, + "short_name": "sandwich", + "short_names": ["sandwich"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 113, - "added_in": "6.0", + "category": "Food & Drink", + "subcategory": "food-prepared", + "sort_order": 740, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { - "name": null, - "unified": "1F64B-200D-2640-FE0F", - "non_qualified": "1F64B-200D-2640", + "name": "CANNED FOOD", + "unified": "1F96B", + "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f64b-200d-2640-fe0f.png", - "sheet_x": 33, - "sheet_y": 10, - "short_name": "woman-raising-hand", - "short_names": ["woman-raising-hand"], + "image": "1f96b.png", + "sheet_x": 43, + "sheet_y": 55, + "short_name": "canned_food", + "short_names": ["canned_food"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 232, - "added_in": "6.0", + "category": "Food & Drink", + "subcategory": "food-prepared", + "sort_order": 756, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F64B-1F3FB-200D-2640-FE0F", - "non_qualified": "1F64B-1F3FB-200D-2640", - "image": "1f64b-1f3fb-200d-2640-fe0f.png", - "sheet_x": 33, - "sheet_y": 11, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F64B-1F3FC-200D-2640-FE0F", - "non_qualified": "1F64B-1F3FC-200D-2640", - "image": "1f64b-1f3fc-200d-2640-fe0f.png", - "sheet_x": 33, - "sheet_y": 12, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F64B-1F3FD-200D-2640-FE0F", - "non_qualified": "1F64B-1F3FD-200D-2640", - "image": "1f64b-1f3fd-200d-2640-fe0f.png", - "sheet_x": 33, - "sheet_y": 13, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F64B-1F3FE-200D-2640-FE0F", - "non_qualified": "1F64B-1F3FE-200D-2640", - "image": "1f64b-1f3fe-200d-2640-fe0f.png", - "sheet_x": 33, - "sheet_y": 14, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F64B-1F3FF-200D-2640-FE0F", - "non_qualified": "1F64B-1F3FF-200D-2640", - "image": "1f64b-1f3ff-200d-2640-fe0f.png", - "sheet_x": 33, - "sheet_y": 15, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - } - }, - "obsoletes": "1F64B" + "has_img_facebook": true }, { - "name": null, - "unified": "1F64B-200D-2642-FE0F", - "non_qualified": "1F64B-200D-2642", + "name": "LEAFY GREEN", + "unified": "1F96C", + "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f64b-200d-2642-fe0f.png", - "sheet_x": 33, - "sheet_y": 16, - "short_name": "man-raising-hand", - "short_names": ["man-raising-hand"], + "image": "1f96c.png", + "sheet_x": 43, + "sheet_y": 56, + "short_name": "leafy_green", + "short_names": ["leafy_green"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 231, - "added_in": "6.0", + "category": "Food & Drink", + "subcategory": "food-vegetable", + "sort_order": 714, + "added_in": "11.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F64B-1F3FB-200D-2642-FE0F", - "non_qualified": "1F64B-1F3FB-200D-2642", - "image": "1f64b-1f3fb-200d-2642-fe0f.png", - "sheet_x": 33, - "sheet_y": 17, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F64B-1F3FC-200D-2642-FE0F", - "non_qualified": "1F64B-1F3FC-200D-2642", - "image": "1f64b-1f3fc-200d-2642-fe0f.png", - "sheet_x": 33, - "sheet_y": 18, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F64B-1F3FD-200D-2642-FE0F", - "non_qualified": "1F64B-1F3FD-200D-2642", - "image": "1f64b-1f3fd-200d-2642-fe0f.png", - "sheet_x": 33, - "sheet_y": 19, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F64B-1F3FE-200D-2642-FE0F", - "non_qualified": "1F64B-1F3FE-200D-2642", - "image": "1f64b-1f3fe-200d-2642-fe0f.png", - "sheet_x": 33, - "sheet_y": 20, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F64B-1F3FF-200D-2642-FE0F", - "non_qualified": "1F64B-1F3FF-200D-2642", - "image": "1f64b-1f3ff-200d-2642-fe0f.png", - "sheet_x": 33, - "sheet_y": 21, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - } - } + "has_img_facebook": true }, { - "name": "HAPPY PERSON RAISING ONE HAND", - "unified": "1F64B", + "name": "MANGO", + "unified": "1F96D", "non_qualified": null, "docomo": null, - "au": "EB85", + "au": null, "softbank": null, - "google": "FE357", - "image": "1f64b.png", - "sheet_x": 33, - "sheet_y": 22, - "short_name": "raising_hand", - "short_names": ["raising_hand"], + "google": null, + "image": "1f96d.png", + "sheet_x": 43, + "sheet_y": 57, + "short_name": "mango", + "short_names": ["mango"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 230, - "added_in": "6.0", + "category": "Food & Drink", + "subcategory": "food-fruit", + "sort_order": 694, + "added_in": "11.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": true, - "skin_variations": { - "1F3FB": { - "unified": "1F64B-1F3FB", - "non_qualified": null, - "image": "1f64b-1f3fb.png", - "sheet_x": 33, - "sheet_y": 23, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": true - }, - "1F3FC": { - "unified": "1F64B-1F3FC", - "non_qualified": null, - "image": "1f64b-1f3fc.png", - "sheet_x": 33, - "sheet_y": 24, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": true - }, - "1F3FD": { - "unified": "1F64B-1F3FD", - "non_qualified": null, - "image": "1f64b-1f3fd.png", - "sheet_x": 33, - "sheet_y": 25, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": true - }, - "1F3FE": { - "unified": "1F64B-1F3FE", - "non_qualified": null, - "image": "1f64b-1f3fe.png", - "sheet_x": 33, - "sheet_y": 26, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": true - }, - "1F3FF": { - "unified": "1F64B-1F3FF", - "non_qualified": null, - "image": "1f64b-1f3ff.png", - "sheet_x": 33, - "sheet_y": 27, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": true - } - }, - "obsoleted_by": "1F64B-200D-2640-FE0F" + "has_img_facebook": true }, { - "name": "PERSON RAISING BOTH HANDS IN CELEBRATION", - "unified": "1F64C", + "name": "MOON CAKE", + "unified": "1F96E", "non_qualified": null, "docomo": null, - "au": "EB86", - "softbank": "E427", - "google": "FE358", - "image": "1f64c.png", - "sheet_x": 33, - "sheet_y": 28, - "short_name": "raised_hands", - "short_names": ["raised_hands"], + "au": null, + "softbank": null, + "google": null, + "image": "1f96e.png", + "sheet_x": 43, + "sheet_y": 58, + "short_name": "moon_cake", + "short_names": ["moon_cake"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 386, - "added_in": "6.0", + "category": "Food & Drink", + "subcategory": "food-asian", + "sort_order": 769, + "added_in": "11.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true, - "skin_variations": { - "1F3FB": { - "unified": "1F64C-1F3FB", - "non_qualified": null, - "image": "1f64c-1f3fb.png", - "sheet_x": 33, - "sheet_y": 29, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FC": { - "unified": "1F64C-1F3FC", - "non_qualified": null, - "image": "1f64c-1f3fc.png", - "sheet_x": 33, - "sheet_y": 30, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FD": { - "unified": "1F64C-1F3FD", - "non_qualified": null, - "image": "1f64c-1f3fd.png", - "sheet_x": 33, - "sheet_y": 31, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FE": { - "unified": "1F64C-1F3FE", - "non_qualified": null, - "image": "1f64c-1f3fe.png", - "sheet_x": 33, - "sheet_y": 32, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - "1F3FF": { - "unified": "1F64C-1F3FF", - "non_qualified": null, - "image": "1f64c-1f3ff.png", - "sheet_x": 33, - "sheet_y": 33, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - } - } + "has_img_facebook": true }, { - "name": null, - "unified": "1F64D-200D-2640-FE0F", - "non_qualified": "1F64D-200D-2640", + "name": "BAGEL", + "unified": "1F96F", + "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f64d-200d-2640-fe0f.png", - "sheet_x": 33, - "sheet_y": 34, - "short_name": "woman-frowning", - "short_names": ["woman-frowning"], + "image": "1f96f.png", + "sheet_x": 43, + "sheet_y": 59, + "short_name": "bagel", + "short_names": ["bagel"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 217, - "added_in": "6.0", + "category": "Food & Drink", + "subcategory": "food-prepared", + "sort_order": 728, + "added_in": "11.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F64D-1F3FB-200D-2640-FE0F", - "non_qualified": "1F64D-1F3FB-200D-2640", - "image": "1f64d-1f3fb-200d-2640-fe0f.png", - "sheet_x": 33, - "sheet_y": 35, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F64D-1F3FC-200D-2640-FE0F", - "non_qualified": "1F64D-1F3FC-200D-2640", - "image": "1f64d-1f3fc-200d-2640-fe0f.png", - "sheet_x": 33, - "sheet_y": 36, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F64D-1F3FD-200D-2640-FE0F", - "non_qualified": "1F64D-1F3FD-200D-2640", - "image": "1f64d-1f3fd-200d-2640-fe0f.png", - "sheet_x": 33, - "sheet_y": 37, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F64D-1F3FE-200D-2640-FE0F", - "non_qualified": "1F64D-1F3FE-200D-2640", - "image": "1f64d-1f3fe-200d-2640-fe0f.png", - "sheet_x": 33, - "sheet_y": 38, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F64D-1F3FF-200D-2640-FE0F", - "non_qualified": "1F64D-1F3FF-200D-2640", - "image": "1f64d-1f3ff-200d-2640-fe0f.png", - "sheet_x": 33, - "sheet_y": 39, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - } - }, - "obsoletes": "1F64D" + "has_img_facebook": true + }, + { + "name": "SMILING FACE WITH SMILING EYES AND THREE HEARTS", + "unified": "1F970", + "non_qualified": null, + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1f970.png", + "sheet_x": 43, + "sheet_y": 60, + "short_name": "smiling_face_with_3_hearts", + "short_names": ["smiling_face_with_3_hearts"], + "text": null, + "texts": null, + "category": "Smileys & Emotion", + "subcategory": "face-affection", + "sort_order": 15, + "added_in": "11.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, { - "name": null, - "unified": "1F64D-200D-2642-FE0F", - "non_qualified": "1F64D-200D-2642", + "name": "YAWNING FACE", + "unified": "1F971", + "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f64d-200d-2642-fe0f.png", - "sheet_x": 33, - "sheet_y": 40, - "short_name": "man-frowning", - "short_names": ["man-frowning"], + "image": "1f971.png", + "sheet_x": 44, + "sheet_y": 0, + "short_name": "yawning_face", + "short_names": ["yawning_face"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 216, - "added_in": "6.0", + "category": "Smileys & Emotion", + "subcategory": "face-concerned", + "sort_order": 99, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F64D-1F3FB-200D-2642-FE0F", - "non_qualified": "1F64D-1F3FB-200D-2642", - "image": "1f64d-1f3fb-200d-2642-fe0f.png", - "sheet_x": 33, - "sheet_y": 41, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F64D-1F3FC-200D-2642-FE0F", - "non_qualified": "1F64D-1F3FC-200D-2642", - "image": "1f64d-1f3fc-200d-2642-fe0f.png", - "sheet_x": 33, - "sheet_y": 42, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F64D-1F3FD-200D-2642-FE0F", - "non_qualified": "1F64D-1F3FD-200D-2642", - "image": "1f64d-1f3fd-200d-2642-fe0f.png", - "sheet_x": 33, - "sheet_y": 43, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F64D-1F3FE-200D-2642-FE0F", - "non_qualified": "1F64D-1F3FE-200D-2642", - "image": "1f64d-1f3fe-200d-2642-fe0f.png", - "sheet_x": 33, - "sheet_y": 44, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F64D-1F3FF-200D-2642-FE0F", - "non_qualified": "1F64D-1F3FF-200D-2642", - "image": "1f64d-1f3ff-200d-2642-fe0f.png", - "sheet_x": 33, - "sheet_y": 45, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - } - } + "has_img_facebook": true }, { - "name": "PERSON FROWNING", - "unified": "1F64D", + "name": "SMILING FACE WITH TEAR", + "unified": "1F972", "non_qualified": null, - "docomo": "E6F3", - "au": "EB87", + "docomo": null, + "au": null, "softbank": null, - "google": "FE359", - "image": "1f64d.png", - "sheet_x": 33, - "sheet_y": 46, - "short_name": "person_frowning", - "short_names": ["person_frowning"], + "google": null, + "image": "1f972.png", + "sheet_x": 44, + "sheet_y": 1, + "short_name": "smiling_face_with_tear", + "short_names": ["smiling_face_with_tear"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 215, - "added_in": "6.0", + "category": "Smileys & Emotion", + "subcategory": "face-affection", + "sort_order": 23, + "added_in": "13.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": true, - "skin_variations": { - "1F3FB": { - "unified": "1F64D-1F3FB", - "non_qualified": null, - "image": "1f64d-1f3fb.png", - "sheet_x": 33, - "sheet_y": 47, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": true - }, - "1F3FC": { - "unified": "1F64D-1F3FC", - "non_qualified": null, - "image": "1f64d-1f3fc.png", - "sheet_x": 33, - "sheet_y": 48, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": true - }, - "1F3FD": { - "unified": "1F64D-1F3FD", - "non_qualified": null, - "image": "1f64d-1f3fd.png", - "sheet_x": 33, - "sheet_y": 49, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": true - }, - "1F3FE": { - "unified": "1F64D-1F3FE", - "non_qualified": null, - "image": "1f64d-1f3fe.png", - "sheet_x": 33, - "sheet_y": 50, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": true - }, - "1F3FF": { - "unified": "1F64D-1F3FF", - "non_qualified": null, - "image": "1f64d-1f3ff.png", - "sheet_x": 33, - "sheet_y": 51, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": true - } - }, - "obsoleted_by": "1F64D-200D-2640-FE0F" + "has_img_facebook": true }, { - "name": null, - "unified": "1F64E-200D-2640-FE0F", - "non_qualified": "1F64E-200D-2640", + "name": "FACE WITH PARTY HORN AND PARTY HAT", + "unified": "1F973", + "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f64e-200d-2640-fe0f.png", - "sheet_x": 33, - "sheet_y": 52, - "short_name": "woman-pouting", - "short_names": ["woman-pouting"], + "image": "1f973.png", + "sheet_x": 44, + "sheet_y": 2, + "short_name": "partying_face", + "short_names": ["partying_face"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 220, - "added_in": "6.0", + "category": "Smileys & Emotion", + "subcategory": "face-hat", + "sort_order": 69, + "added_in": "11.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F64E-1F3FB-200D-2640-FE0F", - "non_qualified": "1F64E-1F3FB-200D-2640", - "image": "1f64e-1f3fb-200d-2640-fe0f.png", - "sheet_x": 34, - "sheet_y": 0, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F64E-1F3FC-200D-2640-FE0F", - "non_qualified": "1F64E-1F3FC-200D-2640", - "image": "1f64e-1f3fc-200d-2640-fe0f.png", - "sheet_x": 34, - "sheet_y": 1, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F64E-1F3FD-200D-2640-FE0F", - "non_qualified": "1F64E-1F3FD-200D-2640", - "image": "1f64e-1f3fd-200d-2640-fe0f.png", - "sheet_x": 34, - "sheet_y": 2, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F64E-1F3FE-200D-2640-FE0F", - "non_qualified": "1F64E-1F3FE-200D-2640", - "image": "1f64e-1f3fe-200d-2640-fe0f.png", - "sheet_x": 34, - "sheet_y": 3, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F64E-1F3FF-200D-2640-FE0F", - "non_qualified": "1F64E-1F3FF-200D-2640", - "image": "1f64e-1f3ff-200d-2640-fe0f.png", - "sheet_x": 34, - "sheet_y": 4, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - } - }, - "obsoletes": "1F64E" + "has_img_facebook": true }, { - "name": null, - "unified": "1F64E-200D-2642-FE0F", - "non_qualified": "1F64E-200D-2642", + "name": "FACE WITH UNEVEN EYES AND WAVY MOUTH", + "unified": "1F974", + "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f64e-200d-2642-fe0f.png", - "sheet_x": 34, - "sheet_y": 5, - "short_name": "man-pouting", - "short_names": ["man-pouting"], + "image": "1f974.png", + "sheet_x": 44, + "sheet_y": 3, + "short_name": "woozy_face", + "short_names": ["woozy_face"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 219, - "added_in": "6.0", + "category": "Smileys & Emotion", + "subcategory": "face-unwell", + "sort_order": 64, + "added_in": "11.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F64E-1F3FB-200D-2642-FE0F", - "non_qualified": "1F64E-1F3FB-200D-2642", - "image": "1f64e-1f3fb-200d-2642-fe0f.png", - "sheet_x": 34, - "sheet_y": 6, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F64E-1F3FC-200D-2642-FE0F", - "non_qualified": "1F64E-1F3FC-200D-2642", - "image": "1f64e-1f3fc-200d-2642-fe0f.png", - "sheet_x": 34, - "sheet_y": 7, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F64E-1F3FD-200D-2642-FE0F", - "non_qualified": "1F64E-1F3FD-200D-2642", - "image": "1f64e-1f3fd-200d-2642-fe0f.png", - "sheet_x": 34, - "sheet_y": 8, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F64E-1F3FE-200D-2642-FE0F", - "non_qualified": "1F64E-1F3FE-200D-2642", - "image": "1f64e-1f3fe-200d-2642-fe0f.png", - "sheet_x": 34, - "sheet_y": 9, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F64E-1F3FF-200D-2642-FE0F", - "non_qualified": "1F64E-1F3FF-200D-2642", - "image": "1f64e-1f3ff-200d-2642-fe0f.png", - "sheet_x": 34, - "sheet_y": 10, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - } - } + "has_img_facebook": true }, { - "name": "PERSON WITH POUTING FACE", - "unified": "1F64E", + "name": "OVERHEATED FACE", + "unified": "1F975", "non_qualified": null, - "docomo": "E6F1", - "au": "EB88", + "docomo": null, + "au": null, "softbank": null, - "google": "FE35A", - "image": "1f64e.png", - "sheet_x": 34, - "sheet_y": 11, - "short_name": "person_with_pouting_face", - "short_names": ["person_with_pouting_face"], + "google": null, + "image": "1f975.png", + "sheet_x": 44, + "sheet_y": 4, + "short_name": "hot_face", + "short_names": ["hot_face"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 218, - "added_in": "6.0", + "category": "Smileys & Emotion", + "subcategory": "face-unwell", + "sort_order": 62, + "added_in": "11.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": true, - "skin_variations": { - "1F3FB": { - "unified": "1F64E-1F3FB", - "non_qualified": null, - "image": "1f64e-1f3fb.png", - "sheet_x": 34, - "sheet_y": 12, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": true - }, - "1F3FC": { - "unified": "1F64E-1F3FC", - "non_qualified": null, - "image": "1f64e-1f3fc.png", - "sheet_x": 34, - "sheet_y": 13, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": true - }, - "1F3FD": { - "unified": "1F64E-1F3FD", - "non_qualified": null, - "image": "1f64e-1f3fd.png", - "sheet_x": 34, - "sheet_y": 14, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": true - }, - "1F3FE": { - "unified": "1F64E-1F3FE", - "non_qualified": null, - "image": "1f64e-1f3fe.png", - "sheet_x": 34, - "sheet_y": 15, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": true - }, - "1F3FF": { - "unified": "1F64E-1F3FF", - "non_qualified": null, - "image": "1f64e-1f3ff.png", - "sheet_x": 34, - "sheet_y": 16, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": true - } - }, - "obsoleted_by": "1F64E-200D-2640-FE0F" + "has_img_facebook": true }, { - "name": "PERSON WITH FOLDED HANDS", - "unified": "1F64F", + "name": "FREEZING FACE", + "unified": "1F976", "non_qualified": null, "docomo": null, - "au": "EAD2", - "softbank": "E41D", - "google": "FE35B", - "image": "1f64f.png", - "sheet_x": 34, - "sheet_y": 17, - "short_name": "pray", - "short_names": ["pray"], + "au": null, + "softbank": null, + "google": null, + "image": "1f976.png", + "sheet_x": 44, + "sheet_y": 5, + "short_name": "cold_face", + "short_names": ["cold_face"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 388, - "added_in": "6.0", + "category": "Smileys & Emotion", + "subcategory": "face-unwell", + "sort_order": 63, + "added_in": "11.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + { + "name": "NINJA", + "unified": "1F977", + "non_qualified": null, + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1f977.png", + "sheet_x": 44, + "sheet_y": 6, + "short_name": "ninja", + "short_names": ["ninja"], + "text": null, + "texts": null, + "category": "People & Body", + "subcategory": "person-role", + "sort_order": 343, + "added_in": "13.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true, - "has_img_messenger": true, "skin_variations": { "1F3FB": { - "unified": "1F64F-1F3FB", + "unified": "1F977-1F3FB", "non_qualified": null, - "image": "1f64f-1f3fb.png", - "sheet_x": 34, - "sheet_y": 18, - "added_in": "8.0", + "image": "1f977-1f3fb.png", + "sheet_x": 44, + "sheet_y": 7, + "added_in": "13.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, "1F3FC": { - "unified": "1F64F-1F3FC", + "unified": "1F977-1F3FC", "non_qualified": null, - "image": "1f64f-1f3fc.png", - "sheet_x": 34, - "sheet_y": 19, - "added_in": "8.0", + "image": "1f977-1f3fc.png", + "sheet_x": 44, + "sheet_y": 8, + "added_in": "13.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, "1F3FD": { - "unified": "1F64F-1F3FD", + "unified": "1F977-1F3FD", "non_qualified": null, - "image": "1f64f-1f3fd.png", - "sheet_x": 34, - "sheet_y": 20, - "added_in": "8.0", + "image": "1f977-1f3fd.png", + "sheet_x": 44, + "sheet_y": 9, + "added_in": "13.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, "1F3FE": { - "unified": "1F64F-1F3FE", + "unified": "1F977-1F3FE", "non_qualified": null, - "image": "1f64f-1f3fe.png", - "sheet_x": 34, - "sheet_y": 21, - "added_in": "8.0", + "image": "1f977-1f3fe.png", + "sheet_x": 44, + "sheet_y": 10, + "added_in": "13.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, "1F3FF": { - "unified": "1F64F-1F3FF", + "unified": "1F977-1F3FF", "non_qualified": null, - "image": "1f64f-1f3ff.png", - "sheet_x": 34, - "sheet_y": 22, - "added_in": "8.0", + "image": "1f977-1f3ff.png", + "sheet_x": 44, + "sheet_y": 11, + "added_in": "13.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true } } }, { - "name": "ROCKET", - "unified": "1F680", - "non_qualified": null, - "docomo": null, - "au": "E5C8", - "softbank": "E10D", - "google": "FE7ED", - "image": "1f680.png", - "sheet_x": 34, - "sheet_y": 23, - "short_name": "rocket", - "short_names": ["rocket"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 123, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - { - "name": "HELICOPTER", - "unified": "1F681", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f681.png", - "sheet_x": 34, - "sheet_y": 24, - "short_name": "helicopter", - "short_names": ["helicopter"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 118, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - { - "name": "STEAM LOCOMOTIVE", - "unified": "1F682", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f682.png", - "sheet_x": 34, - "sheet_y": 25, - "short_name": "steam_locomotive", - "short_names": ["steam_locomotive"], - "text": null, - "texts": null, - "category": "Travel & Places", - "sort_order": 63, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - { - "name": "RAILWAY CAR", - "unified": "1F683", - "non_qualified": null, - "docomo": "E65B", - "au": "E4B5", - "softbank": "E01E", - "google": "FE7DF", - "image": "1f683.png", - "sheet_x": 34, - "sheet_y": 26, - "short_name": "railway_car", - "short_names": ["railway_car"], + "name": "DISGUISED FACE", + "unified": "1F978", + "non_qualified": null, + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1f978.png", + "sheet_x": 44, + "sheet_y": 12, + "short_name": "disguised_face", + "short_names": ["disguised_face"], "text": null, "texts": null, - "category": "Travel & Places", - "sort_order": 64, - "added_in": "6.0", + "category": "Smileys & Emotion", + "subcategory": "face-hat", + "sort_order": 70, + "added_in": "13.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { - "name": "HIGH-SPEED TRAIN", - "unified": "1F684", + "name": "FACE HOLDING BACK TEARS", + "unified": "1F979", "non_qualified": null, - "docomo": "E65D", - "au": "E4B0", - "softbank": "E435", - "google": "FE7E2", - "image": "1f684.png", - "sheet_x": 34, - "sheet_y": 27, - "short_name": "bullettrain_side", - "short_names": ["bullettrain_side"], + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1f979.png", + "sheet_x": 44, + "sheet_y": 13, + "short_name": "face_holding_back_tears", + "short_names": ["face_holding_back_tears"], "text": null, "texts": null, - "category": "Travel & Places", - "sort_order": 65, - "added_in": "6.0", + "category": "Smileys & Emotion", + "subcategory": "face-concerned", + "sort_order": 84, + "added_in": "14.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { - "name": "HIGH-SPEED TRAIN WITH BULLET NOSE", - "unified": "1F685", + "name": "FACE WITH PLEADING EYES", + "unified": "1F97A", "non_qualified": null, - "docomo": "E65D", - "au": "E4B0", - "softbank": "E01F", - "google": "FE7E3", - "image": "1f685.png", - "sheet_x": 34, - "sheet_y": 28, - "short_name": "bullettrain_front", - "short_names": ["bullettrain_front"], + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1f97a.png", + "sheet_x": 44, + "sheet_y": 14, + "short_name": "pleading_face", + "short_names": ["pleading_face"], "text": null, "texts": null, - "category": "Travel & Places", - "sort_order": 66, - "added_in": "6.0", + "category": "Smileys & Emotion", + "subcategory": "face-concerned", + "sort_order": 83, + "added_in": "11.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { - "name": "TRAIN", - "unified": "1F686", + "name": "SARI", + "unified": "1F97B", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f686.png", - "sheet_x": 34, - "sheet_y": 29, - "short_name": "train2", - "short_names": ["train2"], + "image": "1f97b.png", + "sheet_x": 44, + "sheet_y": 15, + "short_name": "sari", + "short_names": ["sari"], "text": null, "texts": null, - "category": "Travel & Places", - "sort_order": 67, - "added_in": "6.0", + "category": "Objects", + "subcategory": "clothing", + "sort_order": 1137, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { - "name": "METRO", - "unified": "1F687", + "name": "LAB COAT", + "unified": "1F97C", "non_qualified": null, - "docomo": "E65C", - "au": "E5BC", - "softbank": "E434", - "google": "FE7E0", - "image": "1f687.png", - "sheet_x": 34, - "sheet_y": 30, - "short_name": "metro", - "short_names": ["metro"], + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1f97c.png", + "sheet_x": 44, + "sheet_y": 16, + "short_name": "lab_coat", + "short_names": ["lab_coat"], "text": null, "texts": null, - "category": "Travel & Places", - "sort_order": 68, - "added_in": "6.0", + "category": "Objects", + "subcategory": "clothing", + "sort_order": 1126, + "added_in": "11.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { - "name": "LIGHT RAIL", - "unified": "1F688", + "name": "GOGGLES", + "unified": "1F97D", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f688.png", - "sheet_x": 34, - "sheet_y": 31, - "short_name": "light_rail", - "short_names": ["light_rail"], + "image": "1f97d.png", + "sheet_x": 44, + "sheet_y": 17, + "short_name": "goggles", + "short_names": ["goggles"], "text": null, "texts": null, - "category": "Travel & Places", - "sort_order": 69, - "added_in": "6.0", + "category": "Objects", + "subcategory": "clothing", + "sort_order": 1125, + "added_in": "11.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { - "name": "STATION", - "unified": "1F689", + "name": "HIKING BOOT", + "unified": "1F97E", "non_qualified": null, "docomo": null, - "au": "EB6D", - "softbank": "E039", - "google": "FE7EC", - "image": "1f689.png", - "sheet_x": 34, - "sheet_y": 32, - "short_name": "station", - "short_names": ["station"], + "au": null, + "softbank": null, + "google": null, + "image": "1f97e.png", + "sheet_x": 44, + "sheet_y": 18, + "short_name": "hiking_boot", + "short_names": ["hiking_boot"], "text": null, "texts": null, - "category": "Travel & Places", - "sort_order": 70, - "added_in": "6.0", + "category": "Objects", + "subcategory": "clothing", + "sort_order": 1152, + "added_in": "11.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { - "name": "TRAM", - "unified": "1F68A", + "name": "FLAT SHOE", + "unified": "1F97F", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f68a.png", - "sheet_x": 34, - "sheet_y": 33, - "short_name": "tram", - "short_names": ["tram"], + "image": "1f97f.png", + "sheet_x": 44, + "sheet_y": 19, + "short_name": "womans_flat_shoe", + "short_names": ["womans_flat_shoe"], "text": null, "texts": null, - "category": "Travel & Places", - "sort_order": 71, - "added_in": "6.0", + "category": "Objects", + "subcategory": "clothing", + "sort_order": 1153, + "added_in": "11.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { - "name": "TRAM CAR", - "unified": "1F68B", + "name": "CRAB", + "unified": "1F980", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f68b.png", - "sheet_x": 34, - "sheet_y": 34, - "short_name": "train", - "short_names": ["train"], + "image": "1f980.png", + "sheet_x": 44, + "sheet_y": 20, + "short_name": "crab", + "short_names": ["crab"], "text": null, "texts": null, - "category": "Travel & Places", - "sort_order": 74, - "added_in": "6.0", + "category": "Food & Drink", + "subcategory": "food-marine", + "sort_order": 774, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { - "name": "BUS", - "unified": "1F68C", + "name": "LION FACE", + "unified": "1F981", "non_qualified": null, - "docomo": "E660", - "au": "E4AF", - "softbank": "E159", - "google": "FE7E6", - "image": "1f68c.png", - "sheet_x": 34, - "sheet_y": 35, - "short_name": "bus", - "short_names": ["bus"], + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1f981.png", + "sheet_x": 44, + "sheet_y": 21, + "short_name": "lion_face", + "short_names": ["lion_face"], "text": null, "texts": null, - "category": "Travel & Places", - "sort_order": 75, - "added_in": "6.0", + "category": "Animals & Nature", + "subcategory": "animal-mammal", + "sort_order": 550, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { - "name": "ONCOMING BUS", - "unified": "1F68D", + "name": "SCORPION", + "unified": "1F982", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f68d.png", - "sheet_x": 34, - "sheet_y": 36, - "short_name": "oncoming_bus", - "short_names": ["oncoming_bus"], + "image": "1f982.png", + "sheet_x": 44, + "sheet_y": 22, + "short_name": "scorpion", + "short_names": ["scorpion"], "text": null, "texts": null, - "category": "Travel & Places", - "sort_order": 76, - "added_in": "6.0", + "category": "Animals & Nature", + "subcategory": "animal-bug", + "sort_order": 654, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { - "name": "TROLLEYBUS", - "unified": "1F68E", + "name": "TURKEY", + "unified": "1F983", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f68e.png", - "sheet_x": 34, - "sheet_y": 37, - "short_name": "trolleybus", - "short_names": ["trolleybus"], + "image": "1f983.png", + "sheet_x": 44, + "sheet_y": 23, + "short_name": "turkey", + "short_names": ["turkey"], "text": null, "texts": null, - "category": "Travel & Places", - "sort_order": 77, - "added_in": "6.0", + "category": "Animals & Nature", + "subcategory": "animal-bird", + "sort_order": 601, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { - "name": "BUS STOP", - "unified": "1F68F", + "name": "UNICORN FACE", + "unified": "1F984", "non_qualified": null, "docomo": null, - "au": "E4A7", - "softbank": "E150", - "google": "FE7E7", - "image": "1f68f.png", - "sheet_x": 34, - "sheet_y": 38, - "short_name": "busstop", - "short_names": ["busstop"], + "au": null, + "softbank": null, + "google": null, + "image": "1f984.png", + "sheet_x": 44, + "sheet_y": 24, + "short_name": "unicorn_face", + "short_names": ["unicorn_face"], "text": null, "texts": null, - "category": "Travel & Places", - "sort_order": 95, - "added_in": "6.0", + "category": "Animals & Nature", + "subcategory": "animal-mammal", + "sort_order": 558, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { - "name": "MINIBUS", - "unified": "1F690", + "name": "EAGLE", + "unified": "1F985", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f690.png", - "sheet_x": 34, - "sheet_y": 39, - "short_name": "minibus", - "short_names": ["minibus"], + "image": "1f985.png", + "sheet_x": 44, + "sheet_y": 25, + "short_name": "eagle", + "short_names": ["eagle"], "text": null, "texts": null, - "category": "Travel & Places", - "sort_order": 78, - "added_in": "6.0", + "category": "Animals & Nature", + "subcategory": "animal-bird", + "sort_order": 610, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { - "name": "AMBULANCE", - "unified": "1F691", + "name": "DUCK", + "unified": "1F986", "non_qualified": null, "docomo": null, - "au": "EAE0", - "softbank": "E431", - "google": "FE7F3", - "image": "1f691.png", - "sheet_x": 34, - "sheet_y": 40, - "short_name": "ambulance", - "short_names": ["ambulance"], + "au": null, + "softbank": null, + "google": null, + "image": "1f986.png", + "sheet_x": 44, + "sheet_y": 26, + "short_name": "duck", + "short_names": ["duck"], "text": null, "texts": null, - "category": "Travel & Places", - "sort_order": 79, - "added_in": "6.0", + "category": "Animals & Nature", + "subcategory": "animal-bird", + "sort_order": 611, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { - "name": "FIRE ENGINE", - "unified": "1F692", + "name": "BAT", + "unified": "1F987", "non_qualified": null, "docomo": null, - "au": "EADF", - "softbank": "E430", - "google": "FE7F2", - "image": "1f692.png", - "sheet_x": 34, - "sheet_y": 41, - "short_name": "fire_engine", - "short_names": ["fire_engine"], + "au": null, + "softbank": null, + "google": null, + "image": "1f987.png", + "sheet_x": 44, + "sheet_y": 27, + "short_name": "bat", + "short_names": ["bat"], "text": null, "texts": null, - "category": "Travel & Places", - "sort_order": 80, - "added_in": "6.0", + "category": "Animals & Nature", + "subcategory": "animal-mammal", + "sort_order": 590, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { - "name": "POLICE CAR", - "unified": "1F693", + "name": "SHARK", + "unified": "1F988", "non_qualified": null, "docomo": null, - "au": "EAE1", - "softbank": "E432", - "google": "FE7F4", - "image": "1f693.png", - "sheet_x": 34, - "sheet_y": 42, - "short_name": "police_car", - "short_names": ["police_car"], + "au": null, + "softbank": null, + "google": null, + "image": "1f988.png", + "sheet_x": 44, + "sheet_y": 28, + "short_name": "shark", + "short_names": ["shark"], "text": null, "texts": null, - "category": "Travel & Places", - "sort_order": 81, - "added_in": "6.0", + "category": "Animals & Nature", + "subcategory": "animal-marine", + "sort_order": 638, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { - "name": "ONCOMING POLICE CAR", - "unified": "1F694", + "name": "OWL", + "unified": "1F989", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f694.png", - "sheet_x": 34, - "sheet_y": 43, - "short_name": "oncoming_police_car", - "short_names": ["oncoming_police_car"], + "image": "1f989.png", + "sheet_x": 44, + "sheet_y": 29, + "short_name": "owl", + "short_names": ["owl"], "text": null, "texts": null, - "category": "Travel & Places", - "sort_order": 82, - "added_in": "6.0", + "category": "Animals & Nature", + "subcategory": "animal-bird", + "sort_order": 613, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { - "name": "TAXI", - "unified": "1F695", + "name": "FOX FACE", + "unified": "1F98A", "non_qualified": null, - "docomo": "E65E", - "au": "E4B1", - "softbank": "E15A", - "google": "FE7EF", - "image": "1f695.png", - "sheet_x": 34, - "sheet_y": 44, - "short_name": "taxi", - "short_names": ["taxi"], + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1f98a.png", + "sheet_x": 44, + "sheet_y": 30, + "short_name": "fox_face", + "short_names": ["fox_face"], "text": null, "texts": null, - "category": "Travel & Places", - "sort_order": 83, - "added_in": "6.0", + "category": "Animals & Nature", + "subcategory": "animal-mammal", + "sort_order": 545, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { - "name": "ONCOMING TAXI", - "unified": "1F696", + "name": "BUTTERFLY", + "unified": "1F98B", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f696.png", - "sheet_x": 34, - "sheet_y": 45, - "short_name": "oncoming_taxi", - "short_names": ["oncoming_taxi"], + "image": "1f98b.png", + "sheet_x": 44, + "sheet_y": 31, + "short_name": "butterfly", + "short_names": ["butterfly"], "text": null, "texts": null, - "category": "Travel & Places", - "sort_order": 84, - "added_in": "6.0", + "category": "Animals & Nature", + "subcategory": "animal-bug", + "sort_order": 644, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { - "name": "AUTOMOBILE", - "unified": "1F697", + "name": "DEER", + "unified": "1F98C", "non_qualified": null, - "docomo": "E65E", - "au": "E4B1", - "softbank": "E01B", - "google": "FE7E4", - "image": "1f697.png", - "sheet_x": 34, - "sheet_y": 46, - "short_name": "car", - "short_names": ["car", "red_car"], + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1f98c.png", + "sheet_x": 44, + "sheet_y": 32, + "short_name": "deer", + "short_names": ["deer"], "text": null, "texts": null, - "category": "Travel & Places", - "sort_order": 85, - "added_in": "6.0", + "category": "Animals & Nature", + "subcategory": "animal-mammal", + "sort_order": 560, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { - "name": "ONCOMING AUTOMOBILE", - "unified": "1F698", + "name": "GORILLA", + "unified": "1F98D", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f698.png", - "sheet_x": 34, - "sheet_y": 47, - "short_name": "oncoming_automobile", - "short_names": ["oncoming_automobile"], + "image": "1f98d.png", + "sheet_x": 44, + "sheet_y": 33, + "short_name": "gorilla", + "short_names": ["gorilla"], "text": null, "texts": null, - "category": "Travel & Places", - "sort_order": 86, - "added_in": "6.0", + "category": "Animals & Nature", + "subcategory": "animal-mammal", + "sort_order": 537, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { - "name": "RECREATIONAL VEHICLE", - "unified": "1F699", + "name": "LIZARD", + "unified": "1F98E", "non_qualified": null, - "docomo": "E65F", - "au": "E4B1", - "softbank": "E42E", - "google": "FE7E5", - "image": "1f699.png", - "sheet_x": 34, - "sheet_y": 48, - "short_name": "blue_car", - "short_names": ["blue_car"], + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1f98e.png", + "sheet_x": 44, + "sheet_y": 34, + "short_name": "lizard", + "short_names": ["lizard"], "text": null, "texts": null, - "category": "Travel & Places", - "sort_order": 87, - "added_in": "6.0", + "category": "Animals & Nature", + "subcategory": "animal-reptile", + "sort_order": 625, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { - "name": "DELIVERY TRUCK", - "unified": "1F69A", + "name": "RHINOCEROS", + "unified": "1F98F", "non_qualified": null, "docomo": null, - "au": "E4B2", - "softbank": "E42F", - "google": "FE7F1", - "image": "1f69a.png", - "sheet_x": 34, - "sheet_y": 49, - "short_name": "truck", - "short_names": ["truck"], + "au": null, + "softbank": null, + "google": null, + "image": "1f98f.png", + "sheet_x": 44, + "sheet_y": 35, + "short_name": "rhinoceros", + "short_names": ["rhinoceros"], "text": null, "texts": null, - "category": "Travel & Places", - "sort_order": 88, - "added_in": "6.0", + "category": "Animals & Nature", + "subcategory": "animal-mammal", + "sort_order": 579, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { - "name": "ARTICULATED LORRY", - "unified": "1F69B", + "name": "SHRIMP", + "unified": "1F990", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f69b.png", - "sheet_x": 34, - "sheet_y": 50, - "short_name": "articulated_lorry", - "short_names": ["articulated_lorry"], + "image": "1f990.png", + "sheet_x": 44, + "sheet_y": 36, + "short_name": "shrimp", + "short_names": ["shrimp"], "text": null, "texts": null, - "category": "Travel & Places", - "sort_order": 89, - "added_in": "6.0", + "category": "Food & Drink", + "subcategory": "food-marine", + "sort_order": 776, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { - "name": "TRACTOR", - "unified": "1F69C", + "name": "SQUID", + "unified": "1F991", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f69c.png", - "sheet_x": 34, - "sheet_y": 51, - "short_name": "tractor", - "short_names": ["tractor"], + "image": "1f991.png", + "sheet_x": 44, + "sheet_y": 37, + "short_name": "squid", + "short_names": ["squid"], "text": null, "texts": null, - "category": "Travel & Places", - "sort_order": 90, - "added_in": "6.0", + "category": "Food & Drink", + "subcategory": "food-marine", + "sort_order": 777, + "added_in": "3.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { - "name": "MONORAIL", - "unified": "1F69D", + "name": "GIRAFFE FACE", + "unified": "1F992", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f69d.png", - "sheet_x": 34, - "sheet_y": 52, - "short_name": "monorail", - "short_names": ["monorail"], + "image": "1f992.png", + "sheet_x": 44, + "sheet_y": 38, + "short_name": "giraffe_face", + "short_names": ["giraffe_face"], "text": null, "texts": null, - "category": "Travel & Places", - "sort_order": 72, - "added_in": "6.0", + "category": "Animals & Nature", + "subcategory": "animal-mammal", + "sort_order": 576, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { - "name": "MOUNTAIN RAILWAY", - "unified": "1F69E", + "name": "ZEBRA FACE", + "unified": "1F993", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f69e.png", - "sheet_x": 35, - "sheet_y": 0, - "short_name": "mountain_railway", - "short_names": ["mountain_railway"], + "image": "1f993.png", + "sheet_x": 44, + "sheet_y": 39, + "short_name": "zebra_face", + "short_names": ["zebra_face"], "text": null, "texts": null, - "category": "Travel & Places", - "sort_order": 73, - "added_in": "6.0", + "category": "Animals & Nature", + "subcategory": "animal-mammal", + "sort_order": 559, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { - "name": "SUSPENSION RAILWAY", - "unified": "1F69F", + "name": "HEDGEHOG", + "unified": "1F994", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f69f.png", - "sheet_x": 35, - "sheet_y": 1, - "short_name": "suspension_railway", - "short_names": ["suspension_railway"], + "image": "1f994.png", + "sheet_x": 44, + "sheet_y": 40, + "short_name": "hedgehog", + "short_names": ["hedgehog"], "text": null, "texts": null, - "category": "Travel & Places", - "sort_order": 119, - "added_in": "6.0", + "category": "Animals & Nature", + "subcategory": "animal-mammal", + "sort_order": 589, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { - "name": "MOUNTAIN CABLEWAY", - "unified": "1F6A0", + "name": "SAUROPOD", + "unified": "1F995", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f6a0.png", - "sheet_x": 35, - "sheet_y": 2, - "short_name": "mountain_cableway", - "short_names": ["mountain_cableway"], + "image": "1f995.png", + "sheet_x": 44, + "sheet_y": 41, + "short_name": "sauropod", + "short_names": ["sauropod"], "text": null, "texts": null, - "category": "Travel & Places", - "sort_order": 120, - "added_in": "6.0", + "category": "Animals & Nature", + "subcategory": "animal-reptile", + "sort_order": 629, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { - "name": "AERIAL TRAMWAY", - "unified": "1F6A1", + "name": "T-REX", + "unified": "1F996", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f6a1.png", - "sheet_x": 35, - "sheet_y": 3, - "short_name": "aerial_tramway", - "short_names": ["aerial_tramway"], + "image": "1f996.png", + "sheet_x": 44, + "sheet_y": 42, + "short_name": "t-rex", + "short_names": ["t-rex"], "text": null, "texts": null, - "category": "Travel & Places", - "sort_order": 121, - "added_in": "6.0", + "category": "Animals & Nature", + "subcategory": "animal-reptile", + "sort_order": 630, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { - "name": "SHIP", - "unified": "1F6A2", + "name": "CRICKET", + "unified": "1F997", "non_qualified": null, - "docomo": "E661", - "au": "EA82", - "softbank": "E202", - "google": "FE7E8", - "image": "1f6a2.png", - "sheet_x": 35, - "sheet_y": 4, - "short_name": "ship", - "short_names": ["ship"], + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1f997.png", + "sheet_x": 44, + "sheet_y": 43, + "short_name": "cricket", + "short_names": ["cricket"], "text": null, "texts": null, - "category": "Travel & Places", - "sort_order": 112, - "added_in": "6.0", + "category": "Animals & Nature", + "subcategory": "animal-bug", + "sort_order": 650, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { - "name": null, - "unified": "1F6A3-200D-2640-FE0F", - "non_qualified": "1F6A3-200D-2640", + "name": "KANGAROO", + "unified": "1F998", + "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f6a3-200d-2640-fe0f.png", - "sheet_x": 35, - "sheet_y": 5, - "short_name": "woman-rowing-boat", - "short_names": ["woman-rowing-boat"], + "image": "1f998.png", + "sheet_x": 44, + "sheet_y": 44, + "short_name": "kangaroo", + "short_names": ["kangaroo"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 286, - "added_in": "6.0", + "category": "Animals & Nature", + "subcategory": "animal-mammal", + "sort_order": 598, + "added_in": "11.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F6A3-1F3FB-200D-2640-FE0F", - "non_qualified": "1F6A3-1F3FB-200D-2640", - "image": "1f6a3-1f3fb-200d-2640-fe0f.png", - "sheet_x": 35, - "sheet_y": 6, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F6A3-1F3FC-200D-2640-FE0F", - "non_qualified": "1F6A3-1F3FC-200D-2640", - "image": "1f6a3-1f3fc-200d-2640-fe0f.png", - "sheet_x": 35, - "sheet_y": 7, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F6A3-1F3FD-200D-2640-FE0F", - "non_qualified": "1F6A3-1F3FD-200D-2640", - "image": "1f6a3-1f3fd-200d-2640-fe0f.png", - "sheet_x": 35, - "sheet_y": 8, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F6A3-1F3FE-200D-2640-FE0F", - "non_qualified": "1F6A3-1F3FE-200D-2640", - "image": "1f6a3-1f3fe-200d-2640-fe0f.png", - "sheet_x": 35, - "sheet_y": 9, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F6A3-1F3FF-200D-2640-FE0F", - "non_qualified": "1F6A3-1F3FF-200D-2640", - "image": "1f6a3-1f3ff-200d-2640-fe0f.png", - "sheet_x": 35, - "sheet_y": 10, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - } - } + "has_img_facebook": true }, { - "name": null, - "unified": "1F6A3-200D-2642-FE0F", - "non_qualified": "1F6A3-200D-2642", + "name": "LLAMA", + "unified": "1F999", + "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f6a3-200d-2642-fe0f.png", - "sheet_x": 35, - "sheet_y": 11, - "short_name": "man-rowing-boat", - "short_names": ["man-rowing-boat"], + "image": "1f999.png", + "sheet_x": 44, + "sheet_y": 45, + "short_name": "llama", + "short_names": ["llama"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 285, - "added_in": "6.0", + "category": "Animals & Nature", + "subcategory": "animal-mammal", + "sort_order": 575, + "added_in": "11.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F6A3-1F3FB-200D-2642-FE0F", - "non_qualified": "1F6A3-1F3FB-200D-2642", - "image": "1f6a3-1f3fb-200d-2642-fe0f.png", - "sheet_x": 35, - "sheet_y": 12, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F6A3-1F3FC-200D-2642-FE0F", - "non_qualified": "1F6A3-1F3FC-200D-2642", - "image": "1f6a3-1f3fc-200d-2642-fe0f.png", - "sheet_x": 35, - "sheet_y": 13, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F6A3-1F3FD-200D-2642-FE0F", - "non_qualified": "1F6A3-1F3FD-200D-2642", - "image": "1f6a3-1f3fd-200d-2642-fe0f.png", - "sheet_x": 35, - "sheet_y": 14, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F6A3-1F3FE-200D-2642-FE0F", - "non_qualified": "1F6A3-1F3FE-200D-2642", - "image": "1f6a3-1f3fe-200d-2642-fe0f.png", - "sheet_x": 35, - "sheet_y": 15, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F6A3-1F3FF-200D-2642-FE0F", - "non_qualified": "1F6A3-1F3FF-200D-2642", - "image": "1f6a3-1f3ff-200d-2642-fe0f.png", - "sheet_x": 35, - "sheet_y": 16, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - } - }, - "obsoletes": "1F6A3" + "has_img_facebook": true }, { - "name": "ROWBOAT", - "unified": "1F6A3", + "name": "PEACOCK", + "unified": "1F99A", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f6a3.png", - "sheet_x": 35, - "sheet_y": 17, - "short_name": "rowboat", - "short_names": ["rowboat"], + "image": "1f99a.png", + "sheet_x": 44, + "sheet_y": 46, + "short_name": "peacock", + "short_names": ["peacock"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 284, - "added_in": "6.0", + "category": "Animals & Nature", + "subcategory": "animal-bird", + "sort_order": 617, + "added_in": "11.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": true, - "skin_variations": { - "1F3FB": { - "unified": "1F6A3-1F3FB", - "non_qualified": null, - "image": "1f6a3-1f3fb.png", - "sheet_x": 35, - "sheet_y": 18, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F6A3-1F3FC", - "non_qualified": null, - "image": "1f6a3-1f3fc.png", - "sheet_x": 35, - "sheet_y": 19, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F6A3-1F3FD", - "non_qualified": null, - "image": "1f6a3-1f3fd.png", - "sheet_x": 35, - "sheet_y": 20, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F6A3-1F3FE", - "non_qualified": null, - "image": "1f6a3-1f3fe.png", - "sheet_x": 35, - "sheet_y": 21, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F6A3-1F3FF", - "non_qualified": null, - "image": "1f6a3-1f3ff.png", - "sheet_x": 35, - "sheet_y": 22, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - } - }, - "obsoleted_by": "1F6A3-200D-2642-FE0F" + "has_img_facebook": true }, { - "name": "SPEEDBOAT", - "unified": "1F6A4", + "name": "HIPPOPOTAMUS", + "unified": "1F99B", "non_qualified": null, - "docomo": "E6A3", - "au": "E4B4", - "softbank": "E135", - "google": "FE7EE", - "image": "1f6a4.png", - "sheet_x": 35, - "sheet_y": 23, - "short_name": "speedboat", - "short_names": ["speedboat"], + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1f99b.png", + "sheet_x": 44, + "sheet_y": 47, + "short_name": "hippopotamus", + "short_names": ["hippopotamus"], "text": null, "texts": null, - "category": "Travel & Places", - "sort_order": 108, - "added_in": "6.0", + "category": "Animals & Nature", + "subcategory": "animal-mammal", + "sort_order": 580, + "added_in": "11.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { - "name": "HORIZONTAL TRAFFIC LIGHT", - "unified": "1F6A5", + "name": "PARROT", + "unified": "1F99C", "non_qualified": null, - "docomo": "E66D", - "au": "E46A", - "softbank": "E14E", - "google": "FE7F7", - "image": "1f6a5.png", - "sheet_x": 35, - "sheet_y": 24, - "short_name": "traffic_light", - "short_names": ["traffic_light"], + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1f99c.png", + "sheet_x": 44, + "sheet_y": 48, + "short_name": "parrot", + "short_names": ["parrot"], "text": null, "texts": null, - "category": "Travel & Places", - "sort_order": 101, - "added_in": "6.0", + "category": "Animals & Nature", + "subcategory": "animal-bird", + "sort_order": 618, + "added_in": "11.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { - "name": "VERTICAL TRAFFIC LIGHT", - "unified": "1F6A6", + "name": "RACCOON", + "unified": "1F99D", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f6a6.png", - "sheet_x": 35, - "sheet_y": 25, - "short_name": "vertical_traffic_light", - "short_names": ["vertical_traffic_light"], + "image": "1f99d.png", + "sheet_x": 44, + "sheet_y": 49, + "short_name": "raccoon", + "short_names": ["raccoon"], "text": null, "texts": null, - "category": "Travel & Places", - "sort_order": 102, - "added_in": "6.0", + "category": "Animals & Nature", + "subcategory": "animal-mammal", + "sort_order": 546, + "added_in": "11.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { - "name": "CONSTRUCTION SIGN", - "unified": "1F6A7", + "name": "LOBSTER", + "unified": "1F99E", "non_qualified": null, "docomo": null, - "au": "E5D7", - "softbank": "E137", - "google": "FE7F8", - "image": "1f6a7.png", - "sheet_x": 35, - "sheet_y": 26, - "short_name": "construction", - "short_names": ["construction"], + "au": null, + "softbank": null, + "google": null, + "image": "1f99e.png", + "sheet_x": 44, + "sheet_y": 50, + "short_name": "lobster", + "short_names": ["lobster"], "text": null, "texts": null, - "category": "Travel & Places", - "sort_order": 104, - "added_in": "6.0", + "category": "Food & Drink", + "subcategory": "food-marine", + "sort_order": 775, + "added_in": "11.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { - "name": "POLICE CARS REVOLVING LIGHT", - "unified": "1F6A8", + "name": "MOSQUITO", + "unified": "1F99F", "non_qualified": null, "docomo": null, - "au": "EB73", + "au": null, "softbank": null, - "google": "FE7F9", - "image": "1f6a8.png", - "sheet_x": 35, - "sheet_y": 27, - "short_name": "rotating_light", - "short_names": ["rotating_light"], + "google": null, + "image": "1f99f.png", + "sheet_x": 44, + "sheet_y": 51, + "short_name": "mosquito", + "short_names": ["mosquito"], "text": null, "texts": null, - "category": "Travel & Places", - "sort_order": 100, - "added_in": "6.0", + "category": "Animals & Nature", + "subcategory": "animal-bug", + "sort_order": 655, + "added_in": "11.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { - "name": "TRIANGULAR FLAG ON POST", - "unified": "1F6A9", - "non_qualified": null, - "docomo": "E6DE", - "au": "EB2C", - "softbank": null, - "google": "FEB22", - "image": "1f6a9.png", - "sheet_x": 35, - "sheet_y": 28, - "short_name": "triangular_flag_on_post", - "short_names": ["triangular_flag_on_post"], + "name": "MICROBE", + "unified": "1F9A0", + "non_qualified": null, + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1f9a0.png", + "sheet_x": 44, + "sheet_y": 52, + "short_name": "microbe", + "short_names": ["microbe"], "text": null, "texts": null, - "category": "Flags", - "sort_order": 2, - "added_in": "6.0", + "category": "Animals & Nature", + "subcategory": "animal-bug", + "sort_order": 658, + "added_in": "11.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { - "name": "DOOR", - "unified": "1F6AA", + "name": "BADGER", + "unified": "1F9A1", "non_qualified": null, - "docomo": "E714", + "docomo": null, "au": null, "softbank": null, - "google": "FE4F3", - "image": "1f6aa.png", - "sheet_x": 35, - "sheet_y": 29, - "short_name": "door", - "short_names": ["door"], + "google": null, + "image": "1f9a1.png", + "sheet_x": 44, + "sheet_y": 53, + "short_name": "badger", + "short_names": ["badger"], "text": null, "texts": null, - "category": "Objects", - "sort_order": 163, - "added_in": "6.0", + "category": "Animals & Nature", + "subcategory": "animal-mammal", + "sort_order": 599, + "added_in": "11.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { - "name": "NO ENTRY SIGN", - "unified": "1F6AB", + "name": "SWAN", + "unified": "1F9A2", "non_qualified": null, - "docomo": "E738", - "au": "E541", + "docomo": null, + "au": null, "softbank": null, - "google": "FEB48", - "image": "1f6ab.png", - "sheet_x": 35, - "sheet_y": 30, - "short_name": "no_entry_sign", - "short_names": ["no_entry_sign"], + "google": null, + "image": "1f9a2.png", + "sheet_x": 44, + "sheet_y": 54, + "short_name": "swan", + "short_names": ["swan"], "text": null, "texts": null, - "category": "Symbols", - "sort_order": 17, - "added_in": "6.0", + "category": "Animals & Nature", + "subcategory": "animal-bird", + "sort_order": 612, + "added_in": "11.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { - "name": "SMOKING SYMBOL", - "unified": "1F6AC", + "name": "MAMMOTH", + "unified": "1F9A3", "non_qualified": null, - "docomo": "E67F", - "au": "E47D", - "softbank": "E30E", - "google": "FEB1E", - "image": "1f6ac.png", - "sheet_x": 35, - "sheet_y": 31, - "short_name": "smoking", - "short_names": ["smoking"], + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1f9a3.png", + "sheet_x": 44, + "sheet_y": 55, + "short_name": "mammoth", + "short_names": ["mammoth"], "text": null, "texts": null, - "category": "Objects", - "sort_order": 178, - "added_in": "6.0", + "category": "Animals & Nature", + "subcategory": "animal-mammal", + "sort_order": 578, + "added_in": "13.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { - "name": "NO SMOKING SYMBOL", - "unified": "1F6AD", + "name": "DODO", + "unified": "1F9A4", "non_qualified": null, - "docomo": "E680", - "au": "E47E", - "softbank": "E208", - "google": "FEB1F", - "image": "1f6ad.png", - "sheet_x": 35, - "sheet_y": 32, - "short_name": "no_smoking", - "short_names": ["no_smoking"], + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1f9a4.png", + "sheet_x": 44, + "sheet_y": 56, + "short_name": "dodo", + "short_names": ["dodo"], "text": null, "texts": null, - "category": "Symbols", - "sort_order": 19, - "added_in": "6.0", + "category": "Animals & Nature", + "subcategory": "animal-bird", + "sort_order": 614, + "added_in": "13.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { - "name": "PUT LITTER IN ITS PLACE SYMBOL", - "unified": "1F6AE", + "name": "SLOTH", + "unified": "1F9A5", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f6ae.png", - "sheet_x": 35, - "sheet_y": 33, - "short_name": "put_litter_in_its_place", - "short_names": ["put_litter_in_its_place"], + "image": "1f9a5.png", + "sheet_x": 44, + "sheet_y": 57, + "short_name": "sloth", + "short_names": ["sloth"], "text": null, "texts": null, - "category": "Symbols", - "sort_order": 2, - "added_in": "6.0", + "category": "Animals & Nature", + "subcategory": "animal-mammal", + "sort_order": 595, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { - "name": "DO NOT LITTER SYMBOL", - "unified": "1F6AF", + "name": "OTTER", + "unified": "1F9A6", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f6af.png", - "sheet_x": 35, - "sheet_y": 34, - "short_name": "do_not_litter", - "short_names": ["do_not_litter"], + "image": "1f9a6.png", + "sheet_x": 44, + "sheet_y": 58, + "short_name": "otter", + "short_names": ["otter"], "text": null, "texts": null, - "category": "Symbols", - "sort_order": 20, - "added_in": "6.0", + "category": "Animals & Nature", + "subcategory": "animal-mammal", + "sort_order": 596, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { - "name": "POTABLE WATER SYMBOL", - "unified": "1F6B0", + "name": "ORANGUTAN", + "unified": "1F9A7", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f6b0.png", - "sheet_x": 35, - "sheet_y": 35, - "short_name": "potable_water", - "short_names": ["potable_water"], + "image": "1f9a7.png", + "sheet_x": 44, + "sheet_y": 59, + "short_name": "orangutan", + "short_names": ["orangutan"], "text": null, "texts": null, - "category": "Symbols", - "sort_order": 3, - "added_in": "6.0", + "category": "Animals & Nature", + "subcategory": "animal-mammal", + "sort_order": 538, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { - "name": "NON-POTABLE WATER SYMBOL", - "unified": "1F6B1", + "name": "SKUNK", + "unified": "1F9A8", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f6b1.png", - "sheet_x": 35, - "sheet_y": 36, - "short_name": "non-potable_water", - "short_names": ["non-potable_water"], + "image": "1f9a8.png", + "sheet_x": 44, + "sheet_y": 60, + "short_name": "skunk", + "short_names": ["skunk"], "text": null, "texts": null, - "category": "Symbols", - "sort_order": 21, - "added_in": "6.0", + "category": "Animals & Nature", + "subcategory": "animal-mammal", + "sort_order": 597, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { - "name": "BICYCLE", - "unified": "1F6B2", + "name": "FLAMINGO", + "unified": "1F9A9", "non_qualified": null, - "docomo": "E71D", - "au": "E4AE", - "softbank": "E136", - "google": "FE7EB", - "image": "1f6b2.png", - "sheet_x": 35, - "sheet_y": 37, - "short_name": "bike", - "short_names": ["bike"], + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1f9a9.png", + "sheet_x": 45, + "sheet_y": 0, + "short_name": "flamingo", + "short_names": ["flamingo"], "text": null, "texts": null, - "category": "Travel & Places", - "sort_order": 91, - "added_in": "6.0", + "category": "Animals & Nature", + "subcategory": "animal-bird", + "sort_order": 616, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { - "name": "NO BICYCLES", - "unified": "1F6B3", + "name": "OYSTER", + "unified": "1F9AA", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f6b3.png", - "sheet_x": 35, - "sheet_y": 38, - "short_name": "no_bicycles", - "short_names": ["no_bicycles"], + "image": "1f9aa.png", + "sheet_x": 45, + "sheet_y": 1, + "short_name": "oyster", + "short_names": ["oyster"], "text": null, "texts": null, - "category": "Symbols", - "sort_order": 18, - "added_in": "6.0", + "category": "Food & Drink", + "subcategory": "food-marine", + "sort_order": 778, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { - "name": null, - "unified": "1F6B4-200D-2640-FE0F", - "non_qualified": "1F6B4-200D-2640", + "name": "BEAVER", + "unified": "1F9AB", + "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f6b4-200d-2640-fe0f.png", - "sheet_x": 35, - "sheet_y": 39, - "short_name": "woman-biking", - "short_names": ["woman-biking"], + "image": "1f9ab.png", + "sheet_x": 45, + "sheet_y": 2, + "short_name": "beaver", + "short_names": ["beaver"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 298, - "added_in": "6.0", + "category": "Animals & Nature", + "subcategory": "animal-mammal", + "sort_order": 588, + "added_in": "13.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F6B4-1F3FB-200D-2640-FE0F", - "non_qualified": "1F6B4-1F3FB-200D-2640", - "image": "1f6b4-1f3fb-200d-2640-fe0f.png", - "sheet_x": 35, - "sheet_y": 40, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F6B4-1F3FC-200D-2640-FE0F", - "non_qualified": "1F6B4-1F3FC-200D-2640", - "image": "1f6b4-1f3fc-200d-2640-fe0f.png", - "sheet_x": 35, - "sheet_y": 41, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F6B4-1F3FD-200D-2640-FE0F", - "non_qualified": "1F6B4-1F3FD-200D-2640", - "image": "1f6b4-1f3fd-200d-2640-fe0f.png", - "sheet_x": 35, - "sheet_y": 42, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F6B4-1F3FE-200D-2640-FE0F", - "non_qualified": "1F6B4-1F3FE-200D-2640", - "image": "1f6b4-1f3fe-200d-2640-fe0f.png", - "sheet_x": 35, - "sheet_y": 43, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F6B4-1F3FF-200D-2640-FE0F", - "non_qualified": "1F6B4-1F3FF-200D-2640", - "image": "1f6b4-1f3ff-200d-2640-fe0f.png", - "sheet_x": 35, - "sheet_y": 44, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - } - } + "has_img_facebook": true }, { - "name": null, - "unified": "1F6B4-200D-2642-FE0F", - "non_qualified": "1F6B4-200D-2642", + "name": "BISON", + "unified": "1F9AC", + "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f6b4-200d-2642-fe0f.png", - "sheet_x": 35, - "sheet_y": 45, - "short_name": "man-biking", - "short_names": ["man-biking"], + "image": "1f9ac.png", + "sheet_x": 45, + "sheet_y": 3, + "short_name": "bison", + "short_names": ["bison"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 297, - "added_in": "6.0", + "category": "Animals & Nature", + "subcategory": "animal-mammal", + "sort_order": 561, + "added_in": "13.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F6B4-1F3FB-200D-2642-FE0F", - "non_qualified": "1F6B4-1F3FB-200D-2642", - "image": "1f6b4-1f3fb-200d-2642-fe0f.png", - "sheet_x": 35, - "sheet_y": 46, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F6B4-1F3FC-200D-2642-FE0F", - "non_qualified": "1F6B4-1F3FC-200D-2642", - "image": "1f6b4-1f3fc-200d-2642-fe0f.png", - "sheet_x": 35, - "sheet_y": 47, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F6B4-1F3FD-200D-2642-FE0F", - "non_qualified": "1F6B4-1F3FD-200D-2642", - "image": "1f6b4-1f3fd-200d-2642-fe0f.png", - "sheet_x": 35, - "sheet_y": 48, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F6B4-1F3FE-200D-2642-FE0F", - "non_qualified": "1F6B4-1F3FE-200D-2642", - "image": "1f6b4-1f3fe-200d-2642-fe0f.png", - "sheet_x": 35, - "sheet_y": 49, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F6B4-1F3FF-200D-2642-FE0F", - "non_qualified": "1F6B4-1F3FF-200D-2642", - "image": "1f6b4-1f3ff-200d-2642-fe0f.png", - "sheet_x": 35, - "sheet_y": 50, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - } - }, - "obsoletes": "1F6B4" + "has_img_facebook": true }, { - "name": "BICYCLIST", - "unified": "1F6B4", + "name": "SEAL", + "unified": "1F9AD", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f6b4.png", - "sheet_x": 35, - "sheet_y": 51, - "short_name": "bicyclist", - "short_names": ["bicyclist"], + "image": "1f9ad.png", + "sheet_x": 45, + "sheet_y": 4, + "short_name": "seal", + "short_names": ["seal"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 296, - "added_in": "6.0", + "category": "Animals & Nature", + "subcategory": "animal-marine", + "sort_order": 634, + "added_in": "13.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": true, - "skin_variations": { - "1F3FB": { - "unified": "1F6B4-1F3FB", - "non_qualified": null, - "image": "1f6b4-1f3fb.png", - "sheet_x": 35, - "sheet_y": 52, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": true - }, - "1F3FC": { - "unified": "1F6B4-1F3FC", - "non_qualified": null, - "image": "1f6b4-1f3fc.png", - "sheet_x": 36, - "sheet_y": 0, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": true - }, - "1F3FD": { - "unified": "1F6B4-1F3FD", - "non_qualified": null, - "image": "1f6b4-1f3fd.png", - "sheet_x": 36, - "sheet_y": 1, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": true - }, - "1F3FE": { - "unified": "1F6B4-1F3FE", - "non_qualified": null, - "image": "1f6b4-1f3fe.png", - "sheet_x": 36, - "sheet_y": 2, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": true - }, - "1F3FF": { - "unified": "1F6B4-1F3FF", - "non_qualified": null, - "image": "1f6b4-1f3ff.png", - "sheet_x": 36, - "sheet_y": 3, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": true - } - }, - "obsoleted_by": "1F6B4-200D-2642-FE0F" + "has_img_facebook": true }, { - "name": null, - "unified": "1F6B5-200D-2640-FE0F", - "non_qualified": "1F6B5-200D-2640", + "name": "GUIDE DOG", + "unified": "1F9AE", + "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f6b5-200d-2640-fe0f.png", - "sheet_x": 36, - "sheet_y": 4, - "short_name": "woman-mountain-biking", - "short_names": ["woman-mountain-biking"], + "image": "1f9ae.png", + "sheet_x": 45, + "sheet_y": 5, + "short_name": "guide_dog", + "short_names": ["guide_dog"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 301, - "added_in": "6.0", + "category": "Animals & Nature", + "subcategory": "animal-mammal", + "sort_order": 541, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F6B5-1F3FB-200D-2640-FE0F", - "non_qualified": "1F6B5-1F3FB-200D-2640", - "image": "1f6b5-1f3fb-200d-2640-fe0f.png", - "sheet_x": 36, - "sheet_y": 5, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F6B5-1F3FC-200D-2640-FE0F", - "non_qualified": "1F6B5-1F3FC-200D-2640", - "image": "1f6b5-1f3fc-200d-2640-fe0f.png", - "sheet_x": 36, - "sheet_y": 6, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F6B5-1F3FD-200D-2640-FE0F", - "non_qualified": "1F6B5-1F3FD-200D-2640", - "image": "1f6b5-1f3fd-200d-2640-fe0f.png", - "sheet_x": 36, - "sheet_y": 7, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F6B5-1F3FE-200D-2640-FE0F", - "non_qualified": "1F6B5-1F3FE-200D-2640", - "image": "1f6b5-1f3fe-200d-2640-fe0f.png", - "sheet_x": 36, - "sheet_y": 8, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F6B5-1F3FF-200D-2640-FE0F", - "non_qualified": "1F6B5-1F3FF-200D-2640", - "image": "1f6b5-1f3ff-200d-2640-fe0f.png", - "sheet_x": 36, - "sheet_y": 9, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - } - } + "has_img_facebook": true }, { - "name": null, - "unified": "1F6B5-200D-2642-FE0F", - "non_qualified": "1F6B5-200D-2642", + "name": "PROBING CANE", + "unified": "1F9AF", + "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f6b5-200d-2642-fe0f.png", - "sheet_x": 36, - "sheet_y": 10, - "short_name": "man-mountain-biking", - "short_names": ["man-mountain-biking"], + "image": "1f9af.png", + "sheet_x": 45, + "sheet_y": 6, + "short_name": "probing_cane", + "short_names": ["probing_cane"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 300, - "added_in": "6.0", + "category": "Objects", + "subcategory": "tool", + "sort_order": 1329, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F6B5-1F3FB-200D-2642-FE0F", - "non_qualified": "1F6B5-1F3FB-200D-2642", - "image": "1f6b5-1f3fb-200d-2642-fe0f.png", - "sheet_x": 36, - "sheet_y": 11, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F6B5-1F3FC-200D-2642-FE0F", - "non_qualified": "1F6B5-1F3FC-200D-2642", - "image": "1f6b5-1f3fc-200d-2642-fe0f.png", - "sheet_x": 36, - "sheet_y": 12, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F6B5-1F3FD-200D-2642-FE0F", - "non_qualified": "1F6B5-1F3FD-200D-2642", - "image": "1f6b5-1f3fd-200d-2642-fe0f.png", - "sheet_x": 36, - "sheet_y": 13, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F6B5-1F3FE-200D-2642-FE0F", - "non_qualified": "1F6B5-1F3FE-200D-2642", - "image": "1f6b5-1f3fe-200d-2642-fe0f.png", - "sheet_x": 36, - "sheet_y": 14, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F6B5-1F3FF-200D-2642-FE0F", - "non_qualified": "1F6B5-1F3FF-200D-2642", - "image": "1f6b5-1f3ff-200d-2642-fe0f.png", - "sheet_x": 36, - "sheet_y": 15, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - } - }, - "obsoletes": "1F6B5" + "has_img_facebook": true + }, + { + "name": "BONE", + "unified": "1F9B4", + "non_qualified": null, + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1f9b4.png", + "sheet_x": 45, + "sheet_y": 7, + "short_name": "bone", + "short_names": ["bone"], + "text": null, + "texts": null, + "category": "People & Body", + "subcategory": "body-parts", + "sort_order": 222, + "added_in": "11.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, { - "name": "MOUNTAIN BICYCLIST", - "unified": "1F6B5", + "name": "LEG", + "unified": "1F9B5", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f6b5.png", - "sheet_x": 36, - "sheet_y": 16, - "short_name": "mountain_bicyclist", - "short_names": ["mountain_bicyclist"], + "image": "1f9b5.png", + "sheet_x": 45, + "sheet_y": 8, + "short_name": "leg", + "short_names": ["leg"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 299, - "added_in": "6.0", + "category": "People & Body", + "subcategory": "body-parts", + "sort_order": 213, + "added_in": "11.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": true, + "has_img_facebook": true, "skin_variations": { "1F3FB": { - "unified": "1F6B5-1F3FB", + "unified": "1F9B5-1F3FB", "non_qualified": null, - "image": "1f6b5-1f3fb.png", - "sheet_x": 36, - "sheet_y": 17, - "added_in": "8.0", + "image": "1f9b5-1f3fb.png", + "sheet_x": 45, + "sheet_y": 9, + "added_in": "11.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": true + "has_img_facebook": true }, "1F3FC": { - "unified": "1F6B5-1F3FC", + "unified": "1F9B5-1F3FC", "non_qualified": null, - "image": "1f6b5-1f3fc.png", - "sheet_x": 36, - "sheet_y": 18, - "added_in": "8.0", + "image": "1f9b5-1f3fc.png", + "sheet_x": 45, + "sheet_y": 10, + "added_in": "11.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": true + "has_img_facebook": true }, "1F3FD": { - "unified": "1F6B5-1F3FD", + "unified": "1F9B5-1F3FD", "non_qualified": null, - "image": "1f6b5-1f3fd.png", - "sheet_x": 36, - "sheet_y": 19, - "added_in": "8.0", + "image": "1f9b5-1f3fd.png", + "sheet_x": 45, + "sheet_y": 11, + "added_in": "11.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": true + "has_img_facebook": true }, "1F3FE": { - "unified": "1F6B5-1F3FE", + "unified": "1F9B5-1F3FE", "non_qualified": null, - "image": "1f6b5-1f3fe.png", - "sheet_x": 36, - "sheet_y": 20, - "added_in": "8.0", + "image": "1f9b5-1f3fe.png", + "sheet_x": 45, + "sheet_y": 12, + "added_in": "11.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": true + "has_img_facebook": true }, "1F3FF": { - "unified": "1F6B5-1F3FF", + "unified": "1F9B5-1F3FF", "non_qualified": null, - "image": "1f6b5-1f3ff.png", - "sheet_x": 36, - "sheet_y": 21, - "added_in": "8.0", + "image": "1f9b5-1f3ff.png", + "sheet_x": 45, + "sheet_y": 13, + "added_in": "11.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": true + "has_img_facebook": true } - }, - "obsoleted_by": "1F6B5-200D-2642-FE0F" + } }, { - "name": null, - "unified": "1F6B6-200D-2640-FE0F", - "non_qualified": "1F6B6-200D-2640", + "name": "FOOT", + "unified": "1F9B6", + "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f6b6-200d-2640-fe0f.png", - "sheet_x": 36, - "sheet_y": 22, - "short_name": "woman-walking", - "short_names": ["woman-walking"], + "image": "1f9b6.png", + "sheet_x": 45, + "sheet_y": 14, + "short_name": "foot", + "short_names": ["foot"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 250, - "added_in": "6.0", + "category": "People & Body", + "subcategory": "body-parts", + "sort_order": 214, + "added_in": "11.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true, - "has_img_messenger": false, "skin_variations": { "1F3FB": { - "unified": "1F6B6-1F3FB-200D-2640-FE0F", - "non_qualified": "1F6B6-1F3FB-200D-2640", - "image": "1f6b6-1f3fb-200d-2640-fe0f.png", - "sheet_x": 36, - "sheet_y": 23, - "added_in": "8.0", + "unified": "1F9B6-1F3FB", + "non_qualified": null, + "image": "1f9b6-1f3fb.png", + "sheet_x": 45, + "sheet_y": 15, + "added_in": "11.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false + "has_img_facebook": true }, "1F3FC": { - "unified": "1F6B6-1F3FC-200D-2640-FE0F", - "non_qualified": "1F6B6-1F3FC-200D-2640", - "image": "1f6b6-1f3fc-200d-2640-fe0f.png", - "sheet_x": 36, - "sheet_y": 24, - "added_in": "8.0", + "unified": "1F9B6-1F3FC", + "non_qualified": null, + "image": "1f9b6-1f3fc.png", + "sheet_x": 45, + "sheet_y": 16, + "added_in": "11.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false + "has_img_facebook": true }, "1F3FD": { - "unified": "1F6B6-1F3FD-200D-2640-FE0F", - "non_qualified": "1F6B6-1F3FD-200D-2640", - "image": "1f6b6-1f3fd-200d-2640-fe0f.png", - "sheet_x": 36, - "sheet_y": 25, - "added_in": "8.0", + "unified": "1F9B6-1F3FD", + "non_qualified": null, + "image": "1f9b6-1f3fd.png", + "sheet_x": 45, + "sheet_y": 17, + "added_in": "11.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false + "has_img_facebook": true }, "1F3FE": { - "unified": "1F6B6-1F3FE-200D-2640-FE0F", - "non_qualified": "1F6B6-1F3FE-200D-2640", - "image": "1f6b6-1f3fe-200d-2640-fe0f.png", - "sheet_x": 36, - "sheet_y": 26, - "added_in": "8.0", + "unified": "1F9B6-1F3FE", + "non_qualified": null, + "image": "1f9b6-1f3fe.png", + "sheet_x": 45, + "sheet_y": 18, + "added_in": "11.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false + "has_img_facebook": true }, "1F3FF": { - "unified": "1F6B6-1F3FF-200D-2640-FE0F", - "non_qualified": "1F6B6-1F3FF-200D-2640", - "image": "1f6b6-1f3ff-200d-2640-fe0f.png", - "sheet_x": 36, - "sheet_y": 27, - "added_in": "8.0", + "unified": "1F9B6-1F3FF", + "non_qualified": null, + "image": "1f9b6-1f3ff.png", + "sheet_x": 45, + "sheet_y": 19, + "added_in": "11.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false + "has_img_facebook": true } } }, { - "name": null, - "unified": "1F6B6-200D-2642-FE0F", - "non_qualified": "1F6B6-200D-2642", + "name": "TOOTH", + "unified": "1F9B7", + "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f6b6-200d-2642-fe0f.png", - "sheet_x": 36, - "sheet_y": 28, - "short_name": "man-walking", - "short_names": ["man-walking"], + "image": "1f9b7.png", + "sheet_x": 45, + "sheet_y": 20, + "short_name": "tooth", + "short_names": ["tooth"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 249, - "added_in": "6.0", + "category": "People & Body", + "subcategory": "body-parts", + "sort_order": 221, + "added_in": "11.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F6B6-1F3FB-200D-2642-FE0F", - "non_qualified": "1F6B6-1F3FB-200D-2642", - "image": "1f6b6-1f3fb-200d-2642-fe0f.png", - "sheet_x": 36, - "sheet_y": 29, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F6B6-1F3FC-200D-2642-FE0F", - "non_qualified": "1F6B6-1F3FC-200D-2642", - "image": "1f6b6-1f3fc-200d-2642-fe0f.png", - "sheet_x": 36, - "sheet_y": 30, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F6B6-1F3FD-200D-2642-FE0F", - "non_qualified": "1F6B6-1F3FD-200D-2642", - "image": "1f6b6-1f3fd-200d-2642-fe0f.png", - "sheet_x": 36, - "sheet_y": 31, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F6B6-1F3FE-200D-2642-FE0F", - "non_qualified": "1F6B6-1F3FE-200D-2642", - "image": "1f6b6-1f3fe-200d-2642-fe0f.png", - "sheet_x": 36, - "sheet_y": 32, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F6B6-1F3FF-200D-2642-FE0F", - "non_qualified": "1F6B6-1F3FF-200D-2642", - "image": "1f6b6-1f3ff-200d-2642-fe0f.png", - "sheet_x": 36, - "sheet_y": 33, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - } - }, - "obsoletes": "1F6B6" + "has_img_facebook": true }, { - "name": "PEDESTRIAN", - "unified": "1F6B6", - "non_qualified": null, - "docomo": "E733", - "au": "EB72", - "softbank": "E201", - "google": "FE7F0", - "image": "1f6b6.png", - "sheet_x": 36, - "sheet_y": 34, - "short_name": "walking", - "short_names": ["walking"], + "name": "WOMAN SUPERHERO", + "unified": "1F9B8-200D-2640-FE0F", + "non_qualified": "1F9B8-200D-2640", + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1f9b8-200d-2640-fe0f.png", + "sheet_x": 45, + "sheet_y": 21, + "short_name": "female_superhero", + "short_names": ["female_superhero"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 248, - "added_in": "6.0", + "category": "People & Body", + "subcategory": "person-fantasy", + "sort_order": 374, + "added_in": "11.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": true, + "has_img_facebook": true, "skin_variations": { "1F3FB": { - "unified": "1F6B6-1F3FB", - "non_qualified": null, - "image": "1f6b6-1f3fb.png", - "sheet_x": 36, - "sheet_y": 35, - "added_in": "8.0", + "unified": "1F9B8-1F3FB-200D-2640-FE0F", + "non_qualified": "1F9B8-1F3FB-200D-2640", + "image": "1f9b8-1f3fb-200d-2640-fe0f.png", + "sheet_x": 45, + "sheet_y": 22, + "added_in": "11.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": true + "has_img_facebook": true }, "1F3FC": { - "unified": "1F6B6-1F3FC", - "non_qualified": null, - "image": "1f6b6-1f3fc.png", - "sheet_x": 36, - "sheet_y": 36, - "added_in": "8.0", + "unified": "1F9B8-1F3FC-200D-2640-FE0F", + "non_qualified": "1F9B8-1F3FC-200D-2640", + "image": "1f9b8-1f3fc-200d-2640-fe0f.png", + "sheet_x": 45, + "sheet_y": 23, + "added_in": "11.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": true + "has_img_facebook": true }, "1F3FD": { - "unified": "1F6B6-1F3FD", - "non_qualified": null, - "image": "1f6b6-1f3fd.png", - "sheet_x": 36, - "sheet_y": 37, - "added_in": "8.0", + "unified": "1F9B8-1F3FD-200D-2640-FE0F", + "non_qualified": "1F9B8-1F3FD-200D-2640", + "image": "1f9b8-1f3fd-200d-2640-fe0f.png", + "sheet_x": 45, + "sheet_y": 24, + "added_in": "11.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": true + "has_img_facebook": true }, "1F3FE": { - "unified": "1F6B6-1F3FE", - "non_qualified": null, - "image": "1f6b6-1f3fe.png", - "sheet_x": 36, - "sheet_y": 38, - "added_in": "8.0", + "unified": "1F9B8-1F3FE-200D-2640-FE0F", + "non_qualified": "1F9B8-1F3FE-200D-2640", + "image": "1f9b8-1f3fe-200d-2640-fe0f.png", + "sheet_x": 45, + "sheet_y": 25, + "added_in": "11.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": true + "has_img_facebook": true }, "1F3FF": { - "unified": "1F6B6-1F3FF", - "non_qualified": null, - "image": "1f6b6-1f3ff.png", - "sheet_x": 36, - "sheet_y": 39, - "added_in": "8.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": true - } - }, - "obsoleted_by": "1F6B6-200D-2642-FE0F" - }, - { - "name": "NO PEDESTRIANS", - "unified": "1F6B7", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f6b7.png", - "sheet_x": 36, - "sheet_y": 40, - "short_name": "no_pedestrians", - "short_names": ["no_pedestrians"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 22, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - { - "name": "CHILDREN CROSSING", - "unified": "1F6B8", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f6b8.png", - "sheet_x": 36, - "sheet_y": 41, - "short_name": "children_crossing", - "short_names": ["children_crossing"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 15, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - { - "name": "MENS SYMBOL", - "unified": "1F6B9", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": "E138", - "google": "FEB33", - "image": "1f6b9.png", - "sheet_x": 36, - "sheet_y": 42, - "short_name": "mens", - "short_names": ["mens"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 5, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - { - "name": "WOMENS SYMBOL", - "unified": "1F6BA", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": "E139", - "google": "FEB34", - "image": "1f6ba.png", - "sheet_x": 36, - "sheet_y": 43, - "short_name": "womens", - "short_names": ["womens"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 6, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - { - "name": "RESTROOM", - "unified": "1F6BB", - "non_qualified": null, - "docomo": "E66E", - "au": "E4A5", - "softbank": "E151", - "google": "FE506", - "image": "1f6bb.png", - "sheet_x": 36, - "sheet_y": 44, - "short_name": "restroom", - "short_names": ["restroom"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 7, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - { - "name": "BABY SYMBOL", - "unified": "1F6BC", - "non_qualified": null, - "docomo": null, - "au": "EB18", - "softbank": "E13A", - "google": "FEB35", - "image": "1f6bc.png", - "sheet_x": 36, - "sheet_y": 45, - "short_name": "baby_symbol", - "short_names": ["baby_symbol"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 8, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - { - "name": "TOILET", - "unified": "1F6BD", - "non_qualified": null, - "docomo": "E66E", - "au": "E4A5", - "softbank": "E140", - "google": "FE507", - "image": "1f6bd.png", - "sheet_x": 36, - "sheet_y": 46, - "short_name": "toilet", - "short_names": ["toilet"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 166, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - { - "name": "WATER CLOSET", - "unified": "1F6BE", - "non_qualified": null, - "docomo": "E66E", - "au": "E4A5", - "softbank": "E309", - "google": "FE508", - "image": "1f6be.png", - "sheet_x": 36, - "sheet_y": 47, - "short_name": "wc", - "short_names": ["wc"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 9, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - { - "name": "SHOWER", - "unified": "1F6BF", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f6bf.png", - "sheet_x": 36, - "sheet_y": 48, - "short_name": "shower", - "short_names": ["shower"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 167, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - { - "name": "BATH", - "unified": "1F6C0", - "non_qualified": null, - "docomo": "E6F7", - "au": "E5D8", - "softbank": "E13F", - "google": "FE505", - "image": "1f6c0.png", - "sheet_x": 36, - "sheet_y": 49, - "short_name": "bath", - "short_names": ["bath"], + "unified": "1F9B8-1F3FF-200D-2640-FE0F", + "non_qualified": "1F9B8-1F3FF-200D-2640", + "image": "1f9b8-1f3ff-200d-2640-fe0f.png", + "sheet_x": 45, + "sheet_y": 26, + "added_in": "11.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + } + } + }, + { + "name": "MAN SUPERHERO", + "unified": "1F9B8-200D-2642-FE0F", + "non_qualified": "1F9B8-200D-2642", + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1f9b8-200d-2642-fe0f.png", + "sheet_x": 45, + "sheet_y": 27, + "short_name": "male_superhero", + "short_names": ["male_superhero"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 268, - "added_in": "6.0", + "category": "People & Body", + "subcategory": "person-fantasy", + "sort_order": 373, + "added_in": "11.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true, - "has_img_messenger": true, "skin_variations": { "1F3FB": { - "unified": "1F6C0-1F3FB", - "non_qualified": null, - "image": "1f6c0-1f3fb.png", - "sheet_x": 36, - "sheet_y": 50, - "added_in": "8.0", + "unified": "1F9B8-1F3FB-200D-2642-FE0F", + "non_qualified": "1F9B8-1F3FB-200D-2642", + "image": "1f9b8-1f3fb-200d-2642-fe0f.png", + "sheet_x": 45, + "sheet_y": 28, + "added_in": "11.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, "1F3FC": { - "unified": "1F6C0-1F3FC", - "non_qualified": null, - "image": "1f6c0-1f3fc.png", - "sheet_x": 36, - "sheet_y": 51, - "added_in": "8.0", + "unified": "1F9B8-1F3FC-200D-2642-FE0F", + "non_qualified": "1F9B8-1F3FC-200D-2642", + "image": "1f9b8-1f3fc-200d-2642-fe0f.png", + "sheet_x": 45, + "sheet_y": 29, + "added_in": "11.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, "1F3FD": { - "unified": "1F6C0-1F3FD", - "non_qualified": null, - "image": "1f6c0-1f3fd.png", - "sheet_x": 36, - "sheet_y": 52, - "added_in": "8.0", + "unified": "1F9B8-1F3FD-200D-2642-FE0F", + "non_qualified": "1F9B8-1F3FD-200D-2642", + "image": "1f9b8-1f3fd-200d-2642-fe0f.png", + "sheet_x": 45, + "sheet_y": 30, + "added_in": "11.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, "1F3FE": { - "unified": "1F6C0-1F3FE", - "non_qualified": null, - "image": "1f6c0-1f3fe.png", - "sheet_x": 37, - "sheet_y": 0, - "added_in": "8.0", + "unified": "1F9B8-1F3FE-200D-2642-FE0F", + "non_qualified": "1F9B8-1F3FE-200D-2642", + "image": "1f9b8-1f3fe-200d-2642-fe0f.png", + "sheet_x": 45, + "sheet_y": 31, + "added_in": "11.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, "1F3FF": { - "unified": "1F6C0-1F3FF", - "non_qualified": null, - "image": "1f6c0-1f3ff.png", - "sheet_x": 37, - "sheet_y": 1, - "added_in": "8.0", + "unified": "1F9B8-1F3FF-200D-2642-FE0F", + "non_qualified": "1F9B8-1F3FF-200D-2642", + "image": "1f9b8-1f3ff-200d-2642-fe0f.png", + "sheet_x": 45, + "sheet_y": 32, + "added_in": "11.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true } } }, { - "name": "BATHTUB", - "unified": "1F6C1", + "name": "SUPERHERO", + "unified": "1F9B8", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f6c1.png", - "sheet_x": 37, - "sheet_y": 2, - "short_name": "bathtub", - "short_names": ["bathtub"], + "image": "1f9b8.png", + "sheet_x": 45, + "sheet_y": 33, + "short_name": "superhero", + "short_names": ["superhero"], "text": null, "texts": null, - "category": "Objects", - "sort_order": 168, - "added_in": "6.0", + "category": "People & Body", + "subcategory": "person-fantasy", + "sort_order": 372, + "added_in": "11.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true, - "has_img_messenger": true + "skin_variations": { + "1F3FB": { + "unified": "1F9B8-1F3FB", + "non_qualified": null, + "image": "1f9b8-1f3fb.png", + "sheet_x": 45, + "sheet_y": 34, + "added_in": "11.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FC": { + "unified": "1F9B8-1F3FC", + "non_qualified": null, + "image": "1f9b8-1f3fc.png", + "sheet_x": 45, + "sheet_y": 35, + "added_in": "11.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FD": { + "unified": "1F9B8-1F3FD", + "non_qualified": null, + "image": "1f9b8-1f3fd.png", + "sheet_x": 45, + "sheet_y": 36, + "added_in": "11.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FE": { + "unified": "1F9B8-1F3FE", + "non_qualified": null, + "image": "1f9b8-1f3fe.png", + "sheet_x": 45, + "sheet_y": 37, + "added_in": "11.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FF": { + "unified": "1F9B8-1F3FF", + "non_qualified": null, + "image": "1f9b8-1f3ff.png", + "sheet_x": 45, + "sheet_y": 38, + "added_in": "11.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + } + } }, { - "name": "PASSPORT CONTROL", - "unified": "1F6C2", - "non_qualified": null, + "name": "WOMAN SUPERVILLAIN", + "unified": "1F9B9-200D-2640-FE0F", + "non_qualified": "1F9B9-200D-2640", "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f6c2.png", - "sheet_x": 37, - "sheet_y": 3, - "short_name": "passport_control", - "short_names": ["passport_control"], + "image": "1f9b9-200d-2640-fe0f.png", + "sheet_x": 45, + "sheet_y": 39, + "short_name": "female_supervillain", + "short_names": ["female_supervillain"], "text": null, "texts": null, - "category": "Symbols", - "sort_order": 10, - "added_in": "6.0", + "category": "People & Body", + "subcategory": "person-fantasy", + "sort_order": 377, + "added_in": "11.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true, - "has_img_messenger": true + "skin_variations": { + "1F3FB": { + "unified": "1F9B9-1F3FB-200D-2640-FE0F", + "non_qualified": "1F9B9-1F3FB-200D-2640", + "image": "1f9b9-1f3fb-200d-2640-fe0f.png", + "sheet_x": 45, + "sheet_y": 40, + "added_in": "11.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FC": { + "unified": "1F9B9-1F3FC-200D-2640-FE0F", + "non_qualified": "1F9B9-1F3FC-200D-2640", + "image": "1f9b9-1f3fc-200d-2640-fe0f.png", + "sheet_x": 45, + "sheet_y": 41, + "added_in": "11.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FD": { + "unified": "1F9B9-1F3FD-200D-2640-FE0F", + "non_qualified": "1F9B9-1F3FD-200D-2640", + "image": "1f9b9-1f3fd-200d-2640-fe0f.png", + "sheet_x": 45, + "sheet_y": 42, + "added_in": "11.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FE": { + "unified": "1F9B9-1F3FE-200D-2640-FE0F", + "non_qualified": "1F9B9-1F3FE-200D-2640", + "image": "1f9b9-1f3fe-200d-2640-fe0f.png", + "sheet_x": 45, + "sheet_y": 43, + "added_in": "11.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FF": { + "unified": "1F9B9-1F3FF-200D-2640-FE0F", + "non_qualified": "1F9B9-1F3FF-200D-2640", + "image": "1f9b9-1f3ff-200d-2640-fe0f.png", + "sheet_x": 45, + "sheet_y": 44, + "added_in": "11.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + } + } }, { - "name": "CUSTOMS", - "unified": "1F6C3", - "non_qualified": null, + "name": "MAN SUPERVILLAIN", + "unified": "1F9B9-200D-2642-FE0F", + "non_qualified": "1F9B9-200D-2642", "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f6c3.png", - "sheet_x": 37, - "sheet_y": 4, - "short_name": "customs", - "short_names": ["customs"], + "image": "1f9b9-200d-2642-fe0f.png", + "sheet_x": 45, + "sheet_y": 45, + "short_name": "male_supervillain", + "short_names": ["male_supervillain"], "text": null, "texts": null, - "category": "Symbols", - "sort_order": 11, - "added_in": "6.0", + "category": "People & Body", + "subcategory": "person-fantasy", + "sort_order": 376, + "added_in": "11.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true, - "has_img_messenger": true + "skin_variations": { + "1F3FB": { + "unified": "1F9B9-1F3FB-200D-2642-FE0F", + "non_qualified": "1F9B9-1F3FB-200D-2642", + "image": "1f9b9-1f3fb-200d-2642-fe0f.png", + "sheet_x": 45, + "sheet_y": 46, + "added_in": "11.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FC": { + "unified": "1F9B9-1F3FC-200D-2642-FE0F", + "non_qualified": "1F9B9-1F3FC-200D-2642", + "image": "1f9b9-1f3fc-200d-2642-fe0f.png", + "sheet_x": 45, + "sheet_y": 47, + "added_in": "11.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FD": { + "unified": "1F9B9-1F3FD-200D-2642-FE0F", + "non_qualified": "1F9B9-1F3FD-200D-2642", + "image": "1f9b9-1f3fd-200d-2642-fe0f.png", + "sheet_x": 45, + "sheet_y": 48, + "added_in": "11.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FE": { + "unified": "1F9B9-1F3FE-200D-2642-FE0F", + "non_qualified": "1F9B9-1F3FE-200D-2642", + "image": "1f9b9-1f3fe-200d-2642-fe0f.png", + "sheet_x": 45, + "sheet_y": 49, + "added_in": "11.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FF": { + "unified": "1F9B9-1F3FF-200D-2642-FE0F", + "non_qualified": "1F9B9-1F3FF-200D-2642", + "image": "1f9b9-1f3ff-200d-2642-fe0f.png", + "sheet_x": 45, + "sheet_y": 50, + "added_in": "11.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + } + } }, { - "name": "BAGGAGE CLAIM", - "unified": "1F6C4", + "name": "SUPERVILLAIN", + "unified": "1F9B9", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f6c4.png", - "sheet_x": 37, - "sheet_y": 5, - "short_name": "baggage_claim", - "short_names": ["baggage_claim"], + "image": "1f9b9.png", + "sheet_x": 45, + "sheet_y": 51, + "short_name": "supervillain", + "short_names": ["supervillain"], "text": null, "texts": null, - "category": "Symbols", - "sort_order": 12, - "added_in": "6.0", + "category": "People & Body", + "subcategory": "person-fantasy", + "sort_order": 375, + "added_in": "11.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true, - "has_img_messenger": true + "skin_variations": { + "1F3FB": { + "unified": "1F9B9-1F3FB", + "non_qualified": null, + "image": "1f9b9-1f3fb.png", + "sheet_x": 45, + "sheet_y": 52, + "added_in": "11.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FC": { + "unified": "1F9B9-1F3FC", + "non_qualified": null, + "image": "1f9b9-1f3fc.png", + "sheet_x": 45, + "sheet_y": 53, + "added_in": "11.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FD": { + "unified": "1F9B9-1F3FD", + "non_qualified": null, + "image": "1f9b9-1f3fd.png", + "sheet_x": 45, + "sheet_y": 54, + "added_in": "11.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FE": { + "unified": "1F9B9-1F3FE", + "non_qualified": null, + "image": "1f9b9-1f3fe.png", + "sheet_x": 45, + "sheet_y": 55, + "added_in": "11.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FF": { + "unified": "1F9B9-1F3FF", + "non_qualified": null, + "image": "1f9b9-1f3ff.png", + "sheet_x": 45, + "sheet_y": 56, + "added_in": "11.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + } + } }, { - "name": "LEFT LUGGAGE", - "unified": "1F6C5", + "name": "SAFETY VEST", + "unified": "1F9BA", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f6c5.png", - "sheet_x": 37, - "sheet_y": 6, - "short_name": "left_luggage", - "short_names": ["left_luggage"], - "text": null, - "texts": null, - "category": "Symbols", - "sort_order": 13, - "added_in": "6.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true - }, - { - "name": null, - "unified": "1F6CB-FE0F", - "non_qualified": "1F6CB", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f6cb-fe0f.png", - "sheet_x": 37, - "sheet_y": 7, - "short_name": "couch_and_lamp", - "short_names": ["couch_and_lamp"], + "image": "1f9ba.png", + "sheet_x": 45, + "sheet_y": 57, + "short_name": "safety_vest", + "short_names": ["safety_vest"], "text": null, "texts": null, "category": "Objects", - "sort_order": 165, - "added_in": "7.0", + "subcategory": "clothing", + "sort_order": 1127, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, { - "name": "SLEEPING ACCOMMODATION", - "unified": "1F6CC", + "name": "EAR WITH HEARING AID", + "unified": "1F9BB", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f6cc.png", - "sheet_x": 37, - "sheet_y": 8, - "short_name": "sleeping_accommodation", - "short_names": ["sleeping_accommodation"], + "image": "1f9bb.png", + "sheet_x": 45, + "sheet_y": 58, + "short_name": "ear_with_hearing_aid", + "short_names": ["ear_with_hearing_aid"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 269, - "added_in": "7.0", + "category": "People & Body", + "subcategory": "body-parts", + "sort_order": 216, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true, - "has_img_messenger": false, "skin_variations": { "1F3FB": { - "unified": "1F6CC-1F3FB", + "unified": "1F9BB-1F3FB", "non_qualified": null, - "image": "1f6cc-1f3fb.png", - "sheet_x": 37, - "sheet_y": 9, - "added_in": "8.0", + "image": "1f9bb-1f3fb.png", + "sheet_x": 45, + "sheet_y": 59, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, "1F3FC": { - "unified": "1F6CC-1F3FC", + "unified": "1F9BB-1F3FC", "non_qualified": null, - "image": "1f6cc-1f3fc.png", - "sheet_x": 37, - "sheet_y": 10, - "added_in": "8.0", + "image": "1f9bb-1f3fc.png", + "sheet_x": 45, + "sheet_y": 60, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, "1F3FD": { - "unified": "1F6CC-1F3FD", + "unified": "1F9BB-1F3FD", "non_qualified": null, - "image": "1f6cc-1f3fd.png", - "sheet_x": 37, - "sheet_y": 11, - "added_in": "8.0", + "image": "1f9bb-1f3fd.png", + "sheet_x": 46, + "sheet_y": 0, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, "1F3FE": { - "unified": "1F6CC-1F3FE", + "unified": "1F9BB-1F3FE", "non_qualified": null, - "image": "1f6cc-1f3fe.png", - "sheet_x": 37, - "sheet_y": 12, - "added_in": "8.0", + "image": "1f9bb-1f3fe.png", + "sheet_x": 46, + "sheet_y": 1, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, "1F3FF": { - "unified": "1F6CC-1F3FF", + "unified": "1F9BB-1F3FF", "non_qualified": null, - "image": "1f6cc-1f3ff.png", - "sheet_x": 37, - "sheet_y": 13, - "added_in": "8.0", + "image": "1f9bb-1f3ff.png", + "sheet_x": 46, + "sheet_y": 2, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true } } }, { - "name": null, - "unified": "1F6CD-FE0F", - "non_qualified": "1F6CD", + "name": "MOTORIZED WHEELCHAIR", + "unified": "1F9BC", + "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f6cd-fe0f.png", - "sheet_x": 37, - "sheet_y": 14, - "short_name": "shopping_bags", - "short_names": ["shopping_bags"], + "image": "1f9bc.png", + "sheet_x": 46, + "sheet_y": 3, + "short_name": "motorized_wheelchair", + "short_names": ["motorized_wheelchair"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 451, - "added_in": "7.0", + "category": "Travel & Places", + "subcategory": "transport-ground", + "sort_order": 919, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, { - "name": null, - "unified": "1F6CE-FE0F", - "non_qualified": "1F6CE", + "name": "MANUAL WHEELCHAIR", + "unified": "1F9BD", + "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f6ce-fe0f.png", - "sheet_x": 37, - "sheet_y": 15, - "short_name": "bellhop_bell", - "short_names": ["bellhop_bell"], + "image": "1f9bd.png", + "sheet_x": 46, + "sheet_y": 4, + "short_name": "manual_wheelchair", + "short_names": ["manual_wheelchair"], "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 125, - "added_in": "7.0", + "subcategory": "transport-ground", + "sort_order": 918, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, { - "name": null, - "unified": "1F6CF-FE0F", - "non_qualified": "1F6CF", + "name": "MECHANICAL ARM", + "unified": "1F9BE", + "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f6cf-fe0f.png", - "sheet_x": 37, - "sheet_y": 16, - "short_name": "bed", - "short_names": ["bed"], + "image": "1f9be.png", + "sheet_x": 46, + "sheet_y": 5, + "short_name": "mechanical_arm", + "short_names": ["mechanical_arm"], "text": null, "texts": null, - "category": "Objects", - "sort_order": 164, - "added_in": "7.0", + "category": "People & Body", + "subcategory": "body-parts", + "sort_order": 211, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, { - "name": "PLACE OF WORSHIP", - "unified": "1F6D0", + "name": "MECHANICAL LEG", + "unified": "1F9BF", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f6d0.png", - "sheet_x": 37, - "sheet_y": 17, - "short_name": "place_of_worship", - "short_names": ["place_of_worship"], + "image": "1f9bf.png", + "sheet_x": 46, + "sheet_y": 6, + "short_name": "mechanical_leg", + "short_names": ["mechanical_leg"], "text": null, "texts": null, - "category": "Symbols", - "sort_order": 48, - "added_in": "8.0", + "category": "People & Body", + "subcategory": "body-parts", + "sort_order": 212, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, { - "name": "OCTAGONAL SIGN", - "unified": "1F6D1", + "name": "CHEESE WEDGE", + "unified": "1F9C0", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f6d1.png", - "sheet_x": 37, - "sheet_y": 18, - "short_name": "octagonal_sign", - "short_names": ["octagonal_sign"], + "image": "1f9c0.png", + "sheet_x": 46, + "sheet_y": 7, + "short_name": "cheese_wedge", + "short_names": ["cheese_wedge"], "text": null, "texts": null, - "category": "Travel & Places", - "sort_order": 103, - "added_in": "9.0", + "category": "Food & Drink", + "subcategory": "food-prepared", + "sort_order": 731, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, { - "name": "SHOPPING TROLLEY", - "unified": "1F6D2", + "name": "CUPCAKE", + "unified": "1F9C1", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f6d2.png", - "sheet_x": 37, - "sheet_y": 19, - "short_name": "shopping_trolley", - "short_names": ["shopping_trolley"], + "image": "1f9c1.png", + "sheet_x": 46, + "sheet_y": 8, + "short_name": "cupcake", + "short_names": ["cupcake"], + "text": null, + "texts": null, + "category": "Food & Drink", + "subcategory": "food-sweet", + "sort_order": 786, + "added_in": "11.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + { + "name": "SALT SHAKER", + "unified": "1F9C2", + "non_qualified": null, + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1f9c2.png", + "sheet_x": 46, + "sheet_y": 9, + "short_name": "salt", + "short_names": ["salt"], + "text": null, + "texts": null, + "category": "Food & Drink", + "subcategory": "food-prepared", + "sort_order": 755, + "added_in": "11.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + { + "name": "BEVERAGE BOX", + "unified": "1F9C3", + "non_qualified": null, + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1f9c3.png", + "sheet_x": 46, + "sheet_y": 10, + "short_name": "beverage_box", + "short_names": ["beverage_box"], + "text": null, + "texts": null, + "category": "Food & Drink", + "subcategory": "drink", + "sort_order": 810, + "added_in": "12.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + { + "name": "GARLIC", + "unified": "1F9C4", + "non_qualified": null, + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1f9c4.png", + "sheet_x": 46, + "sheet_y": 11, + "short_name": "garlic", + "short_names": ["garlic"], + "text": null, + "texts": null, + "category": "Food & Drink", + "subcategory": "food-vegetable", + "sort_order": 716, + "added_in": "12.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + { + "name": "ONION", + "unified": "1F9C5", + "non_qualified": null, + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1f9c5.png", + "sheet_x": 46, + "sheet_y": 12, + "short_name": "onion", + "short_names": ["onion"], "text": null, "texts": null, - "category": "Objects", - "sort_order": 177, - "added_in": "9.0", + "category": "Food & Drink", + "subcategory": "food-vegetable", + "sort_order": 717, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, { - "name": null, - "unified": "1F6E0-FE0F", - "non_qualified": "1F6E0", + "name": "FALAFEL", + "unified": "1F9C6", + "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f6e0-fe0f.png", - "sheet_x": 37, - "sheet_y": 20, - "short_name": "hammer_and_wrench", - "short_names": ["hammer_and_wrench"], + "image": "1f9c6.png", + "sheet_x": 46, + "sheet_y": 13, + "short_name": "falafel", + "short_names": ["falafel"], "text": null, "texts": null, - "category": "Objects", - "sort_order": 139, - "added_in": "7.0", + "category": "Food & Drink", + "subcategory": "food-prepared", + "sort_order": 745, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, { - "name": null, - "unified": "1F6E1-FE0F", - "non_qualified": "1F6E1", + "name": "WAFFLE", + "unified": "1F9C7", + "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f6e1-fe0f.png", - "sheet_x": 37, - "sheet_y": 21, - "short_name": "shield", - "short_names": ["shield"], + "image": "1f9c7.png", + "sheet_x": 46, + "sheet_y": 14, + "short_name": "waffle", + "short_names": ["waffle"], "text": null, "texts": null, - "category": "Objects", - "sort_order": 144, - "added_in": "7.0", + "category": "Food & Drink", + "subcategory": "food-prepared", + "sort_order": 730, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, { - "name": null, - "unified": "1F6E2-FE0F", - "non_qualified": "1F6E2", + "name": "BUTTER", + "unified": "1F9C8", + "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f6e2-fe0f.png", - "sheet_x": 37, - "sheet_y": 22, - "short_name": "oil_drum", - "short_names": ["oil_drum"], + "image": "1f9c8.png", + "sheet_x": 46, + "sheet_y": 15, + "short_name": "butter", + "short_names": ["butter"], "text": null, "texts": null, - "category": "Travel & Places", - "sort_order": 98, - "added_in": "7.0", + "category": "Food & Drink", + "subcategory": "food-prepared", + "sort_order": 754, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, { - "name": null, - "unified": "1F6E3-FE0F", - "non_qualified": "1F6E3", + "name": "MATE DRINK", + "unified": "1F9C9", + "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f6e3-fe0f.png", - "sheet_x": 37, - "sheet_y": 23, - "short_name": "motorway", - "short_names": ["motorway"], + "image": "1f9c9.png", + "sheet_x": 46, + "sheet_y": 16, + "short_name": "mate_drink", + "short_names": ["mate_drink"], "text": null, "texts": null, - "category": "Travel & Places", - "sort_order": 96, - "added_in": "7.0", + "category": "Food & Drink", + "subcategory": "drink", + "sort_order": 811, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, { - "name": null, - "unified": "1F6E4-FE0F", - "non_qualified": "1F6E4", + "name": "ICE CUBE", + "unified": "1F9CA", + "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f6e4-fe0f.png", - "sheet_x": 37, - "sheet_y": 24, - "short_name": "railway_track", - "short_names": ["railway_track"], + "image": "1f9ca.png", + "sheet_x": 46, + "sheet_y": 17, + "short_name": "ice_cube", + "short_names": ["ice_cube"], "text": null, "texts": null, - "category": "Travel & Places", - "sort_order": 97, - "added_in": "7.0", + "category": "Food & Drink", + "subcategory": "drink", + "sort_order": 812, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, { - "name": null, - "unified": "1F6E5-FE0F", - "non_qualified": "1F6E5", + "name": "BUBBLE TEA", + "unified": "1F9CB", + "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f6e5-fe0f.png", - "sheet_x": 37, - "sheet_y": 25, - "short_name": "motor_boat", - "short_names": ["motor_boat"], + "image": "1f9cb.png", + "sheet_x": 46, + "sheet_y": 18, + "short_name": "bubble_tea", + "short_names": ["bubble_tea"], "text": null, "texts": null, - "category": "Travel & Places", - "sort_order": 111, - "added_in": "7.0", + "category": "Food & Drink", + "subcategory": "drink", + "sort_order": 809, + "added_in": "13.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, { - "name": null, - "unified": "1F6E9-FE0F", - "non_qualified": "1F6E9", + "name": "TROLL", + "unified": "1F9CC", + "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f6e9-fe0f.png", - "sheet_x": 37, - "sheet_y": 26, - "short_name": "small_airplane", - "short_names": ["small_airplane"], + "image": "1f9cc.png", + "sheet_x": 46, + "sheet_y": 19, + "short_name": "troll", + "short_names": ["troll"], "text": null, "texts": null, - "category": "Travel & Places", - "sort_order": 114, - "added_in": "7.0", + "category": "People & Body", + "subcategory": "person-fantasy", + "sort_order": 399, + "added_in": "14.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, { - "name": "AIRPLANE DEPARTURE", - "unified": "1F6EB", - "non_qualified": null, + "name": "WOMAN STANDING", + "unified": "1F9CD-200D-2640-FE0F", + "non_qualified": "1F9CD-200D-2640", "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f6eb.png", - "sheet_x": 37, - "sheet_y": 27, - "short_name": "airplane_departure", - "short_names": ["airplane_departure"], + "image": "1f9cd-200d-2640-fe0f.png", + "sheet_x": 46, + "sheet_y": 20, + "short_name": "woman_standing", + "short_names": ["woman_standing"], "text": null, "texts": null, - "category": "Travel & Places", - "sort_order": 115, - "added_in": "7.0", + "category": "People & Body", + "subcategory": "person-activity", + "sort_order": 411, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true, - "has_img_messenger": false + "skin_variations": { + "1F3FB": { + "unified": "1F9CD-1F3FB-200D-2640-FE0F", + "non_qualified": "1F9CD-1F3FB-200D-2640", + "image": "1f9cd-1f3fb-200d-2640-fe0f.png", + "sheet_x": 46, + "sheet_y": 21, + "added_in": "12.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FC": { + "unified": "1F9CD-1F3FC-200D-2640-FE0F", + "non_qualified": "1F9CD-1F3FC-200D-2640", + "image": "1f9cd-1f3fc-200d-2640-fe0f.png", + "sheet_x": 46, + "sheet_y": 22, + "added_in": "12.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FD": { + "unified": "1F9CD-1F3FD-200D-2640-FE0F", + "non_qualified": "1F9CD-1F3FD-200D-2640", + "image": "1f9cd-1f3fd-200d-2640-fe0f.png", + "sheet_x": 46, + "sheet_y": 23, + "added_in": "12.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FE": { + "unified": "1F9CD-1F3FE-200D-2640-FE0F", + "non_qualified": "1F9CD-1F3FE-200D-2640", + "image": "1f9cd-1f3fe-200d-2640-fe0f.png", + "sheet_x": 46, + "sheet_y": 24, + "added_in": "12.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FF": { + "unified": "1F9CD-1F3FF-200D-2640-FE0F", + "non_qualified": "1F9CD-1F3FF-200D-2640", + "image": "1f9cd-1f3ff-200d-2640-fe0f.png", + "sheet_x": 46, + "sheet_y": 25, + "added_in": "12.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + } + } }, { - "name": "AIRPLANE ARRIVING", - "unified": "1F6EC", - "non_qualified": null, + "name": "MAN STANDING", + "unified": "1F9CD-200D-2642-FE0F", + "non_qualified": "1F9CD-200D-2642", "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f6ec.png", - "sheet_x": 37, - "sheet_y": 28, - "short_name": "airplane_arriving", - "short_names": ["airplane_arriving"], + "image": "1f9cd-200d-2642-fe0f.png", + "sheet_x": 46, + "sheet_y": 26, + "short_name": "man_standing", + "short_names": ["man_standing"], "text": null, "texts": null, - "category": "Travel & Places", - "sort_order": 116, - "added_in": "7.0", + "category": "People & Body", + "subcategory": "person-activity", + "sort_order": 410, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true, - "has_img_messenger": false + "skin_variations": { + "1F3FB": { + "unified": "1F9CD-1F3FB-200D-2642-FE0F", + "non_qualified": "1F9CD-1F3FB-200D-2642", + "image": "1f9cd-1f3fb-200d-2642-fe0f.png", + "sheet_x": 46, + "sheet_y": 27, + "added_in": "12.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FC": { + "unified": "1F9CD-1F3FC-200D-2642-FE0F", + "non_qualified": "1F9CD-1F3FC-200D-2642", + "image": "1f9cd-1f3fc-200d-2642-fe0f.png", + "sheet_x": 46, + "sheet_y": 28, + "added_in": "12.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FD": { + "unified": "1F9CD-1F3FD-200D-2642-FE0F", + "non_qualified": "1F9CD-1F3FD-200D-2642", + "image": "1f9cd-1f3fd-200d-2642-fe0f.png", + "sheet_x": 46, + "sheet_y": 29, + "added_in": "12.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FE": { + "unified": "1F9CD-1F3FE-200D-2642-FE0F", + "non_qualified": "1F9CD-1F3FE-200D-2642", + "image": "1f9cd-1f3fe-200d-2642-fe0f.png", + "sheet_x": 46, + "sheet_y": 30, + "added_in": "12.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FF": { + "unified": "1F9CD-1F3FF-200D-2642-FE0F", + "non_qualified": "1F9CD-1F3FF-200D-2642", + "image": "1f9cd-1f3ff-200d-2642-fe0f.png", + "sheet_x": 46, + "sheet_y": 31, + "added_in": "12.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + } + } }, { - "name": null, - "unified": "1F6F0-FE0F", - "non_qualified": "1F6F0", + "name": "STANDING PERSON", + "unified": "1F9CD", + "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f6f0-fe0f.png", - "sheet_x": 37, - "sheet_y": 29, - "short_name": "satellite", - "short_names": ["satellite"], + "image": "1f9cd.png", + "sheet_x": 46, + "sheet_y": 32, + "short_name": "standing_person", + "short_names": ["standing_person"], "text": null, "texts": null, - "category": "Travel & Places", - "sort_order": 122, - "added_in": "7.0", + "category": "People & Body", + "subcategory": "person-activity", + "sort_order": 409, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true, - "has_img_messenger": false + "skin_variations": { + "1F3FB": { + "unified": "1F9CD-1F3FB", + "non_qualified": null, + "image": "1f9cd-1f3fb.png", + "sheet_x": 46, + "sheet_y": 33, + "added_in": "12.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FC": { + "unified": "1F9CD-1F3FC", + "non_qualified": null, + "image": "1f9cd-1f3fc.png", + "sheet_x": 46, + "sheet_y": 34, + "added_in": "12.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FD": { + "unified": "1F9CD-1F3FD", + "non_qualified": null, + "image": "1f9cd-1f3fd.png", + "sheet_x": 46, + "sheet_y": 35, + "added_in": "12.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FE": { + "unified": "1F9CD-1F3FE", + "non_qualified": null, + "image": "1f9cd-1f3fe.png", + "sheet_x": 46, + "sheet_y": 36, + "added_in": "12.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FF": { + "unified": "1F9CD-1F3FF", + "non_qualified": null, + "image": "1f9cd-1f3ff.png", + "sheet_x": 46, + "sheet_y": 37, + "added_in": "12.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + } + } }, { - "name": null, - "unified": "1F6F3-FE0F", - "non_qualified": "1F6F3", + "name": "WOMAN KNEELING", + "unified": "1F9CE-200D-2640-FE0F", + "non_qualified": "1F9CE-200D-2640", "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f6f3-fe0f.png", - "sheet_x": 37, - "sheet_y": 30, - "short_name": "passenger_ship", - "short_names": ["passenger_ship"], + "image": "1f9ce-200d-2640-fe0f.png", + "sheet_x": 46, + "sheet_y": 38, + "short_name": "woman_kneeling", + "short_names": ["woman_kneeling"], "text": null, "texts": null, - "category": "Travel & Places", - "sort_order": 109, - "added_in": "7.0", + "category": "People & Body", + "subcategory": "person-activity", + "sort_order": 414, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true, - "has_img_messenger": false + "skin_variations": { + "1F3FB": { + "unified": "1F9CE-1F3FB-200D-2640-FE0F", + "non_qualified": "1F9CE-1F3FB-200D-2640", + "image": "1f9ce-1f3fb-200d-2640-fe0f.png", + "sheet_x": 46, + "sheet_y": 39, + "added_in": "12.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FC": { + "unified": "1F9CE-1F3FC-200D-2640-FE0F", + "non_qualified": "1F9CE-1F3FC-200D-2640", + "image": "1f9ce-1f3fc-200d-2640-fe0f.png", + "sheet_x": 46, + "sheet_y": 40, + "added_in": "12.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FD": { + "unified": "1F9CE-1F3FD-200D-2640-FE0F", + "non_qualified": "1F9CE-1F3FD-200D-2640", + "image": "1f9ce-1f3fd-200d-2640-fe0f.png", + "sheet_x": 46, + "sheet_y": 41, + "added_in": "12.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FE": { + "unified": "1F9CE-1F3FE-200D-2640-FE0F", + "non_qualified": "1F9CE-1F3FE-200D-2640", + "image": "1f9ce-1f3fe-200d-2640-fe0f.png", + "sheet_x": 46, + "sheet_y": 42, + "added_in": "12.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FF": { + "unified": "1F9CE-1F3FF-200D-2640-FE0F", + "non_qualified": "1F9CE-1F3FF-200D-2640", + "image": "1f9ce-1f3ff-200d-2640-fe0f.png", + "sheet_x": 46, + "sheet_y": 43, + "added_in": "12.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + } + } }, { - "name": "SCOOTER", - "unified": "1F6F4", - "non_qualified": null, + "name": "MAN KNEELING", + "unified": "1F9CE-200D-2642-FE0F", + "non_qualified": "1F9CE-200D-2642", "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f6f4.png", - "sheet_x": 37, - "sheet_y": 31, - "short_name": "scooter", - "short_names": ["scooter"], + "image": "1f9ce-200d-2642-fe0f.png", + "sheet_x": 46, + "sheet_y": 44, + "short_name": "man_kneeling", + "short_names": ["man_kneeling"], "text": null, "texts": null, - "category": "Travel & Places", - "sort_order": 92, - "added_in": "9.0", + "category": "People & Body", + "subcategory": "person-activity", + "sort_order": 413, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true, - "has_img_messenger": false + "skin_variations": { + "1F3FB": { + "unified": "1F9CE-1F3FB-200D-2642-FE0F", + "non_qualified": "1F9CE-1F3FB-200D-2642", + "image": "1f9ce-1f3fb-200d-2642-fe0f.png", + "sheet_x": 46, + "sheet_y": 45, + "added_in": "12.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FC": { + "unified": "1F9CE-1F3FC-200D-2642-FE0F", + "non_qualified": "1F9CE-1F3FC-200D-2642", + "image": "1f9ce-1f3fc-200d-2642-fe0f.png", + "sheet_x": 46, + "sheet_y": 46, + "added_in": "12.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FD": { + "unified": "1F9CE-1F3FD-200D-2642-FE0F", + "non_qualified": "1F9CE-1F3FD-200D-2642", + "image": "1f9ce-1f3fd-200d-2642-fe0f.png", + "sheet_x": 46, + "sheet_y": 47, + "added_in": "12.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FE": { + "unified": "1F9CE-1F3FE-200D-2642-FE0F", + "non_qualified": "1F9CE-1F3FE-200D-2642", + "image": "1f9ce-1f3fe-200d-2642-fe0f.png", + "sheet_x": 46, + "sheet_y": 48, + "added_in": "12.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FF": { + "unified": "1F9CE-1F3FF-200D-2642-FE0F", + "non_qualified": "1F9CE-1F3FF-200D-2642", + "image": "1f9ce-1f3ff-200d-2642-fe0f.png", + "sheet_x": 46, + "sheet_y": 49, + "added_in": "12.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + } + } }, { - "name": "MOTOR SCOOTER", - "unified": "1F6F5", + "name": "KNEELING PERSON", + "unified": "1F9CE", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f6f5.png", - "sheet_x": 37, - "sheet_y": 32, - "short_name": "motor_scooter", - "short_names": ["motor_scooter"], + "image": "1f9ce.png", + "sheet_x": 46, + "sheet_y": 50, + "short_name": "kneeling_person", + "short_names": ["kneeling_person"], "text": null, "texts": null, - "category": "Travel & Places", - "sort_order": 94, - "added_in": "9.0", + "category": "People & Body", + "subcategory": "person-activity", + "sort_order": 412, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true, - "has_img_messenger": false + "skin_variations": { + "1F3FB": { + "unified": "1F9CE-1F3FB", + "non_qualified": null, + "image": "1f9ce-1f3fb.png", + "sheet_x": 46, + "sheet_y": 51, + "added_in": "12.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FC": { + "unified": "1F9CE-1F3FC", + "non_qualified": null, + "image": "1f9ce-1f3fc.png", + "sheet_x": 46, + "sheet_y": 52, + "added_in": "12.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FD": { + "unified": "1F9CE-1F3FD", + "non_qualified": null, + "image": "1f9ce-1f3fd.png", + "sheet_x": 46, + "sheet_y": 53, + "added_in": "12.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FE": { + "unified": "1F9CE-1F3FE", + "non_qualified": null, + "image": "1f9ce-1f3fe.png", + "sheet_x": 46, + "sheet_y": 54, + "added_in": "12.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FF": { + "unified": "1F9CE-1F3FF", + "non_qualified": null, + "image": "1f9ce-1f3ff.png", + "sheet_x": 46, + "sheet_y": 55, + "added_in": "12.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + } + } }, { - "name": "CANOE", - "unified": "1F6F6", - "non_qualified": null, + "name": "DEAF WOMAN", + "unified": "1F9CF-200D-2640-FE0F", + "non_qualified": "1F9CF-200D-2640", "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f6f6.png", - "sheet_x": 37, - "sheet_y": 33, - "short_name": "canoe", - "short_names": ["canoe"], + "image": "1f9cf-200d-2640-fe0f.png", + "sheet_x": 46, + "sheet_y": 56, + "short_name": "deaf_woman", + "short_names": ["deaf_woman"], "text": null, "texts": null, - "category": "Travel & Places", - "sort_order": 107, - "added_in": "9.0", + "category": "People & Body", + "subcategory": "person-gesture", + "sort_order": 276, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true, - "has_img_messenger": false + "skin_variations": { + "1F3FB": { + "unified": "1F9CF-1F3FB-200D-2640-FE0F", + "non_qualified": "1F9CF-1F3FB-200D-2640", + "image": "1f9cf-1f3fb-200d-2640-fe0f.png", + "sheet_x": 46, + "sheet_y": 57, + "added_in": "12.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FC": { + "unified": "1F9CF-1F3FC-200D-2640-FE0F", + "non_qualified": "1F9CF-1F3FC-200D-2640", + "image": "1f9cf-1f3fc-200d-2640-fe0f.png", + "sheet_x": 46, + "sheet_y": 58, + "added_in": "12.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FD": { + "unified": "1F9CF-1F3FD-200D-2640-FE0F", + "non_qualified": "1F9CF-1F3FD-200D-2640", + "image": "1f9cf-1f3fd-200d-2640-fe0f.png", + "sheet_x": 46, + "sheet_y": 59, + "added_in": "12.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FE": { + "unified": "1F9CF-1F3FE-200D-2640-FE0F", + "non_qualified": "1F9CF-1F3FE-200D-2640", + "image": "1f9cf-1f3fe-200d-2640-fe0f.png", + "sheet_x": 46, + "sheet_y": 60, + "added_in": "12.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FF": { + "unified": "1F9CF-1F3FF-200D-2640-FE0F", + "non_qualified": "1F9CF-1F3FF-200D-2640", + "image": "1f9cf-1f3ff-200d-2640-fe0f.png", + "sheet_x": 47, + "sheet_y": 0, + "added_in": "12.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + } + } }, { - "name": "SLED", - "unified": "1F6F7", - "non_qualified": null, + "name": "DEAF MAN", + "unified": "1F9CF-200D-2642-FE0F", + "non_qualified": "1F9CF-200D-2642", "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f6f7.png", - "sheet_x": 37, - "sheet_y": 34, - "short_name": "sled", - "short_names": ["sled"], + "image": "1f9cf-200d-2642-fe0f.png", + "sheet_x": 47, + "sheet_y": 1, + "short_name": "deaf_man", + "short_names": ["deaf_man"], "text": null, "texts": null, - "category": "Activities", - "sort_order": 52, - "added_in": "10.0", + "category": "People & Body", + "subcategory": "person-gesture", + "sort_order": 275, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true, - "has_img_messenger": false + "skin_variations": { + "1F3FB": { + "unified": "1F9CF-1F3FB-200D-2642-FE0F", + "non_qualified": "1F9CF-1F3FB-200D-2642", + "image": "1f9cf-1f3fb-200d-2642-fe0f.png", + "sheet_x": 47, + "sheet_y": 2, + "added_in": "12.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FC": { + "unified": "1F9CF-1F3FC-200D-2642-FE0F", + "non_qualified": "1F9CF-1F3FC-200D-2642", + "image": "1f9cf-1f3fc-200d-2642-fe0f.png", + "sheet_x": 47, + "sheet_y": 3, + "added_in": "12.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FD": { + "unified": "1F9CF-1F3FD-200D-2642-FE0F", + "non_qualified": "1F9CF-1F3FD-200D-2642", + "image": "1f9cf-1f3fd-200d-2642-fe0f.png", + "sheet_x": 47, + "sheet_y": 4, + "added_in": "12.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FE": { + "unified": "1F9CF-1F3FE-200D-2642-FE0F", + "non_qualified": "1F9CF-1F3FE-200D-2642", + "image": "1f9cf-1f3fe-200d-2642-fe0f.png", + "sheet_x": 47, + "sheet_y": 5, + "added_in": "12.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FF": { + "unified": "1F9CF-1F3FF-200D-2642-FE0F", + "non_qualified": "1F9CF-1F3FF-200D-2642", + "image": "1f9cf-1f3ff-200d-2642-fe0f.png", + "sheet_x": 47, + "sheet_y": 6, + "added_in": "12.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + } + } }, { - "name": "FLYING SAUCER", - "unified": "1F6F8", + "name": "DEAF PERSON", + "unified": "1F9CF", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f6f8.png", - "sheet_x": 37, - "sheet_y": 35, - "short_name": "flying_saucer", - "short_names": ["flying_saucer"], + "image": "1f9cf.png", + "sheet_x": 47, + "sheet_y": 7, + "short_name": "deaf_person", + "short_names": ["deaf_person"], "text": null, "texts": null, - "category": "Travel & Places", - "sort_order": 124, - "added_in": "10.0", + "category": "People & Body", + "subcategory": "person-gesture", + "sort_order": 274, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true, - "has_img_messenger": false + "skin_variations": { + "1F3FB": { + "unified": "1F9CF-1F3FB", + "non_qualified": null, + "image": "1f9cf-1f3fb.png", + "sheet_x": 47, + "sheet_y": 8, + "added_in": "12.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FC": { + "unified": "1F9CF-1F3FC", + "non_qualified": null, + "image": "1f9cf-1f3fc.png", + "sheet_x": 47, + "sheet_y": 9, + "added_in": "12.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FD": { + "unified": "1F9CF-1F3FD", + "non_qualified": null, + "image": "1f9cf-1f3fd.png", + "sheet_x": 47, + "sheet_y": 10, + "added_in": "12.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FE": { + "unified": "1F9CF-1F3FE", + "non_qualified": null, + "image": "1f9cf-1f3fe.png", + "sheet_x": 47, + "sheet_y": 11, + "added_in": "12.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FF": { + "unified": "1F9CF-1F3FF", + "non_qualified": null, + "image": "1f9cf-1f3ff.png", + "sheet_x": 47, + "sheet_y": 12, + "added_in": "12.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + } + } }, { - "name": "SKATEBOARD", - "unified": "1F6F9", + "name": "FACE WITH MONOCLE", + "unified": "1F9D0", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f6f9.png", - "sheet_x": 37, - "sheet_y": 36, - "short_name": "skateboard", - "short_names": ["skateboard"], + "image": "1f9d0.png", + "sheet_x": 47, + "sheet_y": 13, + "short_name": "face_with_monocle", + "short_names": ["face_with_monocle"], "text": null, "texts": null, - "category": "Travel & Places", - "sort_order": 93, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false + "category": "Smileys & Emotion", + "subcategory": "face-glasses", + "sort_order": 73, + "added_in": "5.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, { - "name": "ZIPPER-MOUTH FACE", - "unified": "1F910", + "name": "FARMER", + "unified": "1F9D1-200D-1F33E", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f910.png", - "sheet_x": 37, - "sheet_y": 37, - "short_name": "zipper_mouth_face", - "short_names": ["zipper_mouth_face"], + "image": "1f9d1-200d-1f33e.png", + "sheet_x": 47, + "sheet_y": 14, + "short_name": "farmer", + "short_names": ["farmer"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 33, - "added_in": "8.0", + "category": "People & Body", + "subcategory": "person-role", + "sort_order": 298, + "added_in": "12.1", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true, - "has_img_messenger": false + "skin_variations": { + "1F3FB": { + "unified": "1F9D1-1F3FB-200D-1F33E", + "non_qualified": null, + "image": "1f9d1-1f3fb-200d-1f33e.png", + "sheet_x": 47, + "sheet_y": 15, + "added_in": "12.1", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FC": { + "unified": "1F9D1-1F3FC-200D-1F33E", + "non_qualified": null, + "image": "1f9d1-1f3fc-200d-1f33e.png", + "sheet_x": 47, + "sheet_y": 16, + "added_in": "12.1", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FD": { + "unified": "1F9D1-1F3FD-200D-1F33E", + "non_qualified": null, + "image": "1f9d1-1f3fd-200d-1f33e.png", + "sheet_x": 47, + "sheet_y": 17, + "added_in": "12.1", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FE": { + "unified": "1F9D1-1F3FE-200D-1F33E", + "non_qualified": null, + "image": "1f9d1-1f3fe-200d-1f33e.png", + "sheet_x": 47, + "sheet_y": 18, + "added_in": "12.1", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FF": { + "unified": "1F9D1-1F3FF-200D-1F33E", + "non_qualified": null, + "image": "1f9d1-1f3ff-200d-1f33e.png", + "sheet_x": 47, + "sheet_y": 19, + "added_in": "12.1", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + } + } }, { - "name": "MONEY-MOUTH FACE", - "unified": "1F911", + "name": "COOK", + "unified": "1F9D1-200D-1F373", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f911.png", - "sheet_x": 37, - "sheet_y": 38, - "short_name": "money_mouth_face", - "short_names": ["money_mouth_face"], + "image": "1f9d1-200d-1f373.png", + "sheet_x": 47, + "sheet_y": 20, + "short_name": "cook", + "short_names": ["cook"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 48, - "added_in": "8.0", + "category": "People & Body", + "subcategory": "person-role", + "sort_order": 301, + "added_in": "12.1", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true, - "has_img_messenger": false + "skin_variations": { + "1F3FB": { + "unified": "1F9D1-1F3FB-200D-1F373", + "non_qualified": null, + "image": "1f9d1-1f3fb-200d-1f373.png", + "sheet_x": 47, + "sheet_y": 21, + "added_in": "12.1", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FC": { + "unified": "1F9D1-1F3FC-200D-1F373", + "non_qualified": null, + "image": "1f9d1-1f3fc-200d-1f373.png", + "sheet_x": 47, + "sheet_y": 22, + "added_in": "12.1", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FD": { + "unified": "1F9D1-1F3FD-200D-1F373", + "non_qualified": null, + "image": "1f9d1-1f3fd-200d-1f373.png", + "sheet_x": 47, + "sheet_y": 23, + "added_in": "12.1", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FE": { + "unified": "1F9D1-1F3FE-200D-1F373", + "non_qualified": null, + "image": "1f9d1-1f3fe-200d-1f373.png", + "sheet_x": 47, + "sheet_y": 24, + "added_in": "12.1", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FF": { + "unified": "1F9D1-1F3FF-200D-1F373", + "non_qualified": null, + "image": "1f9d1-1f3ff-200d-1f373.png", + "sheet_x": 47, + "sheet_y": 25, + "added_in": "12.1", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + } + } }, { - "name": "FACE WITH THERMOMETER", - "unified": "1F912", + "name": "PERSON FEEDING BABY", + "unified": "1F9D1-200D-1F37C", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f912.png", - "sheet_x": 37, - "sheet_y": 39, - "short_name": "face_with_thermometer", - "short_names": ["face_with_thermometer"], + "image": "1f9d1-200d-1f37c.png", + "sheet_x": 47, + "sheet_y": 26, + "short_name": "person_feeding_baby", + "short_names": ["person_feeding_baby"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 75, - "added_in": "8.0", + "category": "People & Body", + "subcategory": "person-role", + "sort_order": 367, + "added_in": "13.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true, - "has_img_messenger": false + "skin_variations": { + "1F3FB": { + "unified": "1F9D1-1F3FB-200D-1F37C", + "non_qualified": null, + "image": "1f9d1-1f3fb-200d-1f37c.png", + "sheet_x": 47, + "sheet_y": 27, + "added_in": "13.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FC": { + "unified": "1F9D1-1F3FC-200D-1F37C", + "non_qualified": null, + "image": "1f9d1-1f3fc-200d-1f37c.png", + "sheet_x": 47, + "sheet_y": 28, + "added_in": "13.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FD": { + "unified": "1F9D1-1F3FD-200D-1F37C", + "non_qualified": null, + "image": "1f9d1-1f3fd-200d-1f37c.png", + "sheet_x": 47, + "sheet_y": 29, + "added_in": "13.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FE": { + "unified": "1F9D1-1F3FE-200D-1F37C", + "non_qualified": null, + "image": "1f9d1-1f3fe-200d-1f37c.png", + "sheet_x": 47, + "sheet_y": 30, + "added_in": "13.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FF": { + "unified": "1F9D1-1F3FF-200D-1F37C", + "non_qualified": null, + "image": "1f9d1-1f3ff-200d-1f37c.png", + "sheet_x": 47, + "sheet_y": 31, + "added_in": "13.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + } + } }, { - "name": "NERD FACE", - "unified": "1F913", + "name": "MX CLAUS", + "unified": "1F9D1-200D-1F384", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f913.png", - "sheet_x": 37, - "sheet_y": 40, - "short_name": "nerd_face", - "short_names": ["nerd_face"], + "image": "1f9d1-200d-1f384.png", + "sheet_x": 47, + "sheet_y": 32, + "short_name": "mx_claus", + "short_names": ["mx_claus"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 89, - "added_in": "8.0", + "category": "People & Body", + "subcategory": "person-fantasy", + "sort_order": 371, + "added_in": "13.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true, - "has_img_messenger": false + "skin_variations": { + "1F3FB": { + "unified": "1F9D1-1F3FB-200D-1F384", + "non_qualified": null, + "image": "1f9d1-1f3fb-200d-1f384.png", + "sheet_x": 47, + "sheet_y": 33, + "added_in": "13.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FC": { + "unified": "1F9D1-1F3FC-200D-1F384", + "non_qualified": null, + "image": "1f9d1-1f3fc-200d-1f384.png", + "sheet_x": 47, + "sheet_y": 34, + "added_in": "13.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FD": { + "unified": "1F9D1-1F3FD-200D-1F384", + "non_qualified": null, + "image": "1f9d1-1f3fd-200d-1f384.png", + "sheet_x": 47, + "sheet_y": 35, + "added_in": "13.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FE": { + "unified": "1F9D1-1F3FE-200D-1F384", + "non_qualified": null, + "image": "1f9d1-1f3fe-200d-1f384.png", + "sheet_x": 47, + "sheet_y": 36, + "added_in": "13.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FF": { + "unified": "1F9D1-1F3FF-200D-1F384", + "non_qualified": null, + "image": "1f9d1-1f3ff-200d-1f384.png", + "sheet_x": 47, + "sheet_y": 37, + "added_in": "13.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + } + } }, { - "name": "THINKING FACE", - "unified": "1F914", + "name": "STUDENT", + "unified": "1F9D1-200D-1F393", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f914.png", - "sheet_x": 37, - "sheet_y": 41, - "short_name": "thinking_face", - "short_names": ["thinking_face"], + "image": "1f9d1-200d-1f393.png", + "sheet_x": 47, + "sheet_y": 38, + "short_name": "student", + "short_names": ["student"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 23, - "added_in": "8.0", + "category": "People & Body", + "subcategory": "person-role", + "sort_order": 289, + "added_in": "12.1", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true, - "has_img_messenger": false + "skin_variations": { + "1F3FB": { + "unified": "1F9D1-1F3FB-200D-1F393", + "non_qualified": null, + "image": "1f9d1-1f3fb-200d-1f393.png", + "sheet_x": 47, + "sheet_y": 39, + "added_in": "12.1", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FC": { + "unified": "1F9D1-1F3FC-200D-1F393", + "non_qualified": null, + "image": "1f9d1-1f3fc-200d-1f393.png", + "sheet_x": 47, + "sheet_y": 40, + "added_in": "12.1", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FD": { + "unified": "1F9D1-1F3FD-200D-1F393", + "non_qualified": null, + "image": "1f9d1-1f3fd-200d-1f393.png", + "sheet_x": 47, + "sheet_y": 41, + "added_in": "12.1", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FE": { + "unified": "1F9D1-1F3FE-200D-1F393", + "non_qualified": null, + "image": "1f9d1-1f3fe-200d-1f393.png", + "sheet_x": 47, + "sheet_y": 42, + "added_in": "12.1", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FF": { + "unified": "1F9D1-1F3FF-200D-1F393", + "non_qualified": null, + "image": "1f9d1-1f3ff-200d-1f393.png", + "sheet_x": 47, + "sheet_y": 43, + "added_in": "12.1", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + } + } }, { - "name": "FACE WITH HEAD-BANDAGE", - "unified": "1F915", + "name": "SINGER", + "unified": "1F9D1-200D-1F3A4", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f915.png", - "sheet_x": 37, - "sheet_y": 42, - "short_name": "face_with_head_bandage", - "short_names": ["face_with_head_bandage"], + "image": "1f9d1-200d-1f3a4.png", + "sheet_x": 47, + "sheet_y": 44, + "short_name": "singer", + "short_names": ["singer"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 76, - "added_in": "8.0", + "category": "People & Body", + "subcategory": "person-role", + "sort_order": 319, + "added_in": "12.1", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true, - "has_img_messenger": false + "skin_variations": { + "1F3FB": { + "unified": "1F9D1-1F3FB-200D-1F3A4", + "non_qualified": null, + "image": "1f9d1-1f3fb-200d-1f3a4.png", + "sheet_x": 47, + "sheet_y": 45, + "added_in": "12.1", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FC": { + "unified": "1F9D1-1F3FC-200D-1F3A4", + "non_qualified": null, + "image": "1f9d1-1f3fc-200d-1f3a4.png", + "sheet_x": 47, + "sheet_y": 46, + "added_in": "12.1", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FD": { + "unified": "1F9D1-1F3FD-200D-1F3A4", + "non_qualified": null, + "image": "1f9d1-1f3fd-200d-1f3a4.png", + "sheet_x": 47, + "sheet_y": 47, + "added_in": "12.1", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FE": { + "unified": "1F9D1-1F3FE-200D-1F3A4", + "non_qualified": null, + "image": "1f9d1-1f3fe-200d-1f3a4.png", + "sheet_x": 47, + "sheet_y": 48, + "added_in": "12.1", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FF": { + "unified": "1F9D1-1F3FF-200D-1F3A4", + "non_qualified": null, + "image": "1f9d1-1f3ff-200d-1f3a4.png", + "sheet_x": 47, + "sheet_y": 49, + "added_in": "12.1", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + } + } }, { - "name": "ROBOT FACE", - "unified": "1F916", + "name": "ARTIST", + "unified": "1F9D1-200D-1F3A8", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f916.png", - "sheet_x": 37, - "sheet_y": 43, - "short_name": "robot_face", - "short_names": ["robot_face"], + "image": "1f9d1-200d-1f3a8.png", + "sheet_x": 47, + "sheet_y": 50, + "short_name": "artist", + "short_names": ["artist"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 100, - "added_in": "8.0", + "category": "People & Body", + "subcategory": "person-role", + "sort_order": 322, + "added_in": "12.1", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true, - "has_img_messenger": false + "skin_variations": { + "1F3FB": { + "unified": "1F9D1-1F3FB-200D-1F3A8", + "non_qualified": null, + "image": "1f9d1-1f3fb-200d-1f3a8.png", + "sheet_x": 47, + "sheet_y": 51, + "added_in": "12.1", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FC": { + "unified": "1F9D1-1F3FC-200D-1F3A8", + "non_qualified": null, + "image": "1f9d1-1f3fc-200d-1f3a8.png", + "sheet_x": 47, + "sheet_y": 52, + "added_in": "12.1", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FD": { + "unified": "1F9D1-1F3FD-200D-1F3A8", + "non_qualified": null, + "image": "1f9d1-1f3fd-200d-1f3a8.png", + "sheet_x": 47, + "sheet_y": 53, + "added_in": "12.1", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FE": { + "unified": "1F9D1-1F3FE-200D-1F3A8", + "non_qualified": null, + "image": "1f9d1-1f3fe-200d-1f3a8.png", + "sheet_x": 47, + "sheet_y": 54, + "added_in": "12.1", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FF": { + "unified": "1F9D1-1F3FF-200D-1F3A8", + "non_qualified": null, + "image": "1f9d1-1f3ff-200d-1f3a8.png", + "sheet_x": 47, + "sheet_y": 55, + "added_in": "12.1", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + } + } }, { - "name": "HUGGING FACE", - "unified": "1F917", + "name": "TEACHER", + "unified": "1F9D1-200D-1F3EB", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f917.png", - "sheet_x": 37, - "sheet_y": 44, - "short_name": "hugging_face", - "short_names": ["hugging_face"], + "image": "1f9d1-200d-1f3eb.png", + "sheet_x": 47, + "sheet_y": 56, + "short_name": "teacher", + "short_names": ["teacher"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 21, - "added_in": "8.0", + "category": "People & Body", + "subcategory": "person-role", + "sort_order": 292, + "added_in": "12.1", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true, - "has_img_messenger": false + "skin_variations": { + "1F3FB": { + "unified": "1F9D1-1F3FB-200D-1F3EB", + "non_qualified": null, + "image": "1f9d1-1f3fb-200d-1f3eb.png", + "sheet_x": 47, + "sheet_y": 57, + "added_in": "12.1", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FC": { + "unified": "1F9D1-1F3FC-200D-1F3EB", + "non_qualified": null, + "image": "1f9d1-1f3fc-200d-1f3eb.png", + "sheet_x": 47, + "sheet_y": 58, + "added_in": "12.1", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FD": { + "unified": "1F9D1-1F3FD-200D-1F3EB", + "non_qualified": null, + "image": "1f9d1-1f3fd-200d-1f3eb.png", + "sheet_x": 47, + "sheet_y": 59, + "added_in": "12.1", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FE": { + "unified": "1F9D1-1F3FE-200D-1F3EB", + "non_qualified": null, + "image": "1f9d1-1f3fe-200d-1f3eb.png", + "sheet_x": 47, + "sheet_y": 60, + "added_in": "12.1", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FF": { + "unified": "1F9D1-1F3FF-200D-1F3EB", + "non_qualified": null, + "image": "1f9d1-1f3ff-200d-1f3eb.png", + "sheet_x": 48, + "sheet_y": 0, + "added_in": "12.1", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + } + } }, { - "name": "SIGN OF THE HORNS", - "unified": "1F918", + "name": "FACTORY WORKER", + "unified": "1F9D1-200D-1F3ED", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f918.png", - "sheet_x": 37, - "sheet_y": 45, - "short_name": "the_horns", - "short_names": ["the_horns", "sign_of_the_horns"], + "image": "1f9d1-200d-1f3ed.png", + "sheet_x": 48, + "sheet_y": 1, + "short_name": "factory_worker", + "short_names": ["factory_worker"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 369, - "added_in": "8.0", + "category": "People & Body", + "subcategory": "person-role", + "sort_order": 307, + "added_in": "12.1", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true, - "has_img_messenger": false, "skin_variations": { "1F3FB": { - "unified": "1F918-1F3FB", + "unified": "1F9D1-1F3FB-200D-1F3ED", "non_qualified": null, - "image": "1f918-1f3fb.png", - "sheet_x": 37, - "sheet_y": 46, - "added_in": "8.0", + "image": "1f9d1-1f3fb-200d-1f3ed.png", + "sheet_x": 48, + "sheet_y": 2, + "added_in": "12.1", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, "1F3FC": { - "unified": "1F918-1F3FC", + "unified": "1F9D1-1F3FC-200D-1F3ED", "non_qualified": null, - "image": "1f918-1f3fc.png", - "sheet_x": 37, - "sheet_y": 47, - "added_in": "8.0", + "image": "1f9d1-1f3fc-200d-1f3ed.png", + "sheet_x": 48, + "sheet_y": 3, + "added_in": "12.1", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, "1F3FD": { - "unified": "1F918-1F3FD", + "unified": "1F9D1-1F3FD-200D-1F3ED", "non_qualified": null, - "image": "1f918-1f3fd.png", - "sheet_x": 37, - "sheet_y": 48, - "added_in": "8.0", + "image": "1f9d1-1f3fd-200d-1f3ed.png", + "sheet_x": 48, + "sheet_y": 4, + "added_in": "12.1", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, "1F3FE": { - "unified": "1F918-1F3FE", + "unified": "1F9D1-1F3FE-200D-1F3ED", "non_qualified": null, - "image": "1f918-1f3fe.png", - "sheet_x": 37, - "sheet_y": 49, - "added_in": "8.0", + "image": "1f9d1-1f3fe-200d-1f3ed.png", + "sheet_x": 48, + "sheet_y": 5, + "added_in": "12.1", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, "1F3FF": { - "unified": "1F918-1F3FF", + "unified": "1F9D1-1F3FF-200D-1F3ED", "non_qualified": null, - "image": "1f918-1f3ff.png", - "sheet_x": 37, - "sheet_y": 50, - "added_in": "8.0", + "image": "1f9d1-1f3ff-200d-1f3ed.png", + "sheet_x": 48, + "sheet_y": 6, + "added_in": "12.1", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true } } }, { - "name": "CALL ME HAND", - "unified": "1F919", + "name": "TECHNOLOGIST", + "unified": "1F9D1-200D-1F4BB", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f919.png", - "sheet_x": 37, - "sheet_y": 51, - "short_name": "call_me_hand", - "short_names": ["call_me_hand"], + "image": "1f9d1-200d-1f4bb.png", + "sheet_x": 48, + "sheet_y": 7, + "short_name": "technologist", + "short_names": ["technologist"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 370, - "added_in": "9.0", + "category": "People & Body", + "subcategory": "person-role", + "sort_order": 316, + "added_in": "12.1", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true, - "has_img_messenger": false, "skin_variations": { "1F3FB": { - "unified": "1F919-1F3FB", + "unified": "1F9D1-1F3FB-200D-1F4BB", "non_qualified": null, - "image": "1f919-1f3fb.png", - "sheet_x": 37, - "sheet_y": 52, - "added_in": "9.0", + "image": "1f9d1-1f3fb-200d-1f4bb.png", + "sheet_x": 48, + "sheet_y": 8, + "added_in": "12.1", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, "1F3FC": { - "unified": "1F919-1F3FC", + "unified": "1F9D1-1F3FC-200D-1F4BB", "non_qualified": null, - "image": "1f919-1f3fc.png", - "sheet_x": 38, - "sheet_y": 0, - "added_in": "9.0", + "image": "1f9d1-1f3fc-200d-1f4bb.png", + "sheet_x": 48, + "sheet_y": 9, + "added_in": "12.1", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, "1F3FD": { - "unified": "1F919-1F3FD", + "unified": "1F9D1-1F3FD-200D-1F4BB", "non_qualified": null, - "image": "1f919-1f3fd.png", - "sheet_x": 38, - "sheet_y": 1, - "added_in": "9.0", + "image": "1f9d1-1f3fd-200d-1f4bb.png", + "sheet_x": 48, + "sheet_y": 10, + "added_in": "12.1", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, "1F3FE": { - "unified": "1F919-1F3FE", + "unified": "1F9D1-1F3FE-200D-1F4BB", "non_qualified": null, - "image": "1f919-1f3fe.png", - "sheet_x": 38, - "sheet_y": 2, - "added_in": "9.0", + "image": "1f9d1-1f3fe-200d-1f4bb.png", + "sheet_x": 48, + "sheet_y": 11, + "added_in": "12.1", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, "1F3FF": { - "unified": "1F919-1F3FF", + "unified": "1F9D1-1F3FF-200D-1F4BB", "non_qualified": null, - "image": "1f919-1f3ff.png", - "sheet_x": 38, - "sheet_y": 3, - "added_in": "9.0", + "image": "1f9d1-1f3ff-200d-1f4bb.png", + "sheet_x": 48, + "sheet_y": 12, + "added_in": "12.1", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true } } }, { - "name": "RAISED BACK OF HAND", - "unified": "1F91A", + "name": "OFFICE WORKER", + "unified": "1F9D1-200D-1F4BC", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f91a.png", - "sheet_x": 38, - "sheet_y": 4, - "short_name": "raised_back_of_hand", - "short_names": ["raised_back_of_hand"], + "image": "1f9d1-200d-1f4bc.png", + "sheet_x": 48, + "sheet_y": 13, + "short_name": "office_worker", + "short_names": ["office_worker"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 380, - "added_in": "9.0", + "category": "People & Body", + "subcategory": "person-role", + "sort_order": 310, + "added_in": "12.1", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true, - "has_img_messenger": false, "skin_variations": { "1F3FB": { - "unified": "1F91A-1F3FB", + "unified": "1F9D1-1F3FB-200D-1F4BC", "non_qualified": null, - "image": "1f91a-1f3fb.png", - "sheet_x": 38, - "sheet_y": 5, - "added_in": "9.0", + "image": "1f9d1-1f3fb-200d-1f4bc.png", + "sheet_x": 48, + "sheet_y": 14, + "added_in": "12.1", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, "1F3FC": { - "unified": "1F91A-1F3FC", + "unified": "1F9D1-1F3FC-200D-1F4BC", "non_qualified": null, - "image": "1f91a-1f3fc.png", - "sheet_x": 38, - "sheet_y": 6, - "added_in": "9.0", + "image": "1f9d1-1f3fc-200d-1f4bc.png", + "sheet_x": 48, + "sheet_y": 15, + "added_in": "12.1", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, "1F3FD": { - "unified": "1F91A-1F3FD", + "unified": "1F9D1-1F3FD-200D-1F4BC", "non_qualified": null, - "image": "1f91a-1f3fd.png", - "sheet_x": 38, - "sheet_y": 7, - "added_in": "9.0", + "image": "1f9d1-1f3fd-200d-1f4bc.png", + "sheet_x": 48, + "sheet_y": 16, + "added_in": "12.1", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, "1F3FE": { - "unified": "1F91A-1F3FE", + "unified": "1F9D1-1F3FE-200D-1F4BC", "non_qualified": null, - "image": "1f91a-1f3fe.png", - "sheet_x": 38, - "sheet_y": 8, - "added_in": "9.0", + "image": "1f9d1-1f3fe-200d-1f4bc.png", + "sheet_x": 48, + "sheet_y": 17, + "added_in": "12.1", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, "1F3FF": { - "unified": "1F91A-1F3FF", + "unified": "1F9D1-1F3FF-200D-1F4BC", "non_qualified": null, - "image": "1f91a-1f3ff.png", - "sheet_x": 38, - "sheet_y": 9, - "added_in": "9.0", + "image": "1f9d1-1f3ff-200d-1f4bc.png", + "sheet_x": 48, + "sheet_y": 18, + "added_in": "12.1", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true } } }, { - "name": "LEFT-FACING FIST", - "unified": "1F91B", + "name": "MECHANIC", + "unified": "1F9D1-200D-1F527", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f91b.png", - "sheet_x": 38, - "sheet_y": 10, - "short_name": "left-facing_fist", - "short_names": ["left-facing_fist"], + "image": "1f9d1-200d-1f527.png", + "sheet_x": 48, + "sheet_y": 19, + "short_name": "mechanic", + "short_names": ["mechanic"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 378, - "added_in": "9.0", + "category": "People & Body", + "subcategory": "person-role", + "sort_order": 304, + "added_in": "12.1", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true, - "has_img_messenger": false, "skin_variations": { "1F3FB": { - "unified": "1F91B-1F3FB", + "unified": "1F9D1-1F3FB-200D-1F527", "non_qualified": null, - "image": "1f91b-1f3fb.png", - "sheet_x": 38, - "sheet_y": 11, - "added_in": "9.0", + "image": "1f9d1-1f3fb-200d-1f527.png", + "sheet_x": 48, + "sheet_y": 20, + "added_in": "12.1", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, "1F3FC": { - "unified": "1F91B-1F3FC", + "unified": "1F9D1-1F3FC-200D-1F527", "non_qualified": null, - "image": "1f91b-1f3fc.png", - "sheet_x": 38, - "sheet_y": 12, - "added_in": "9.0", + "image": "1f9d1-1f3fc-200d-1f527.png", + "sheet_x": 48, + "sheet_y": 21, + "added_in": "12.1", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, "1F3FD": { - "unified": "1F91B-1F3FD", + "unified": "1F9D1-1F3FD-200D-1F527", "non_qualified": null, - "image": "1f91b-1f3fd.png", - "sheet_x": 38, - "sheet_y": 13, - "added_in": "9.0", + "image": "1f9d1-1f3fd-200d-1f527.png", + "sheet_x": 48, + "sheet_y": 22, + "added_in": "12.1", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, "1F3FE": { - "unified": "1F91B-1F3FE", + "unified": "1F9D1-1F3FE-200D-1F527", "non_qualified": null, - "image": "1f91b-1f3fe.png", - "sheet_x": 38, - "sheet_y": 14, - "added_in": "9.0", + "image": "1f9d1-1f3fe-200d-1f527.png", + "sheet_x": 48, + "sheet_y": 23, + "added_in": "12.1", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, "1F3FF": { - "unified": "1F91B-1F3FF", + "unified": "1F9D1-1F3FF-200D-1F527", "non_qualified": null, - "image": "1f91b-1f3ff.png", - "sheet_x": 38, - "sheet_y": 15, - "added_in": "9.0", + "image": "1f9d1-1f3ff-200d-1f527.png", + "sheet_x": 48, + "sheet_y": 24, + "added_in": "12.1", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true } } }, { - "name": "RIGHT-FACING FIST", - "unified": "1F91C", + "name": "SCIENTIST", + "unified": "1F9D1-200D-1F52C", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f91c.png", - "sheet_x": 38, - "sheet_y": 16, - "short_name": "right-facing_fist", - "short_names": ["right-facing_fist"], + "image": "1f9d1-200d-1f52c.png", + "sheet_x": 48, + "sheet_y": 25, + "short_name": "scientist", + "short_names": ["scientist"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 379, - "added_in": "9.0", + "category": "People & Body", + "subcategory": "person-role", + "sort_order": 313, + "added_in": "12.1", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true, - "has_img_messenger": false, "skin_variations": { "1F3FB": { - "unified": "1F91C-1F3FB", + "unified": "1F9D1-1F3FB-200D-1F52C", "non_qualified": null, - "image": "1f91c-1f3fb.png", - "sheet_x": 38, - "sheet_y": 17, - "added_in": "9.0", + "image": "1f9d1-1f3fb-200d-1f52c.png", + "sheet_x": 48, + "sheet_y": 26, + "added_in": "12.1", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, "1F3FC": { - "unified": "1F91C-1F3FC", + "unified": "1F9D1-1F3FC-200D-1F52C", "non_qualified": null, - "image": "1f91c-1f3fc.png", - "sheet_x": 38, - "sheet_y": 18, - "added_in": "9.0", + "image": "1f9d1-1f3fc-200d-1f52c.png", + "sheet_x": 48, + "sheet_y": 27, + "added_in": "12.1", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, "1F3FD": { - "unified": "1F91C-1F3FD", + "unified": "1F9D1-1F3FD-200D-1F52C", "non_qualified": null, - "image": "1f91c-1f3fd.png", - "sheet_x": 38, - "sheet_y": 19, - "added_in": "9.0", + "image": "1f9d1-1f3fd-200d-1f52c.png", + "sheet_x": 48, + "sheet_y": 28, + "added_in": "12.1", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, "1F3FE": { - "unified": "1F91C-1F3FE", + "unified": "1F9D1-1F3FE-200D-1F52C", "non_qualified": null, - "image": "1f91c-1f3fe.png", - "sheet_x": 38, - "sheet_y": 20, - "added_in": "9.0", + "image": "1f9d1-1f3fe-200d-1f52c.png", + "sheet_x": 48, + "sheet_y": 29, + "added_in": "12.1", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, "1F3FF": { - "unified": "1F91C-1F3FF", + "unified": "1F9D1-1F3FF-200D-1F52C", "non_qualified": null, - "image": "1f91c-1f3ff.png", - "sheet_x": 38, - "sheet_y": 21, - "added_in": "9.0", + "image": "1f9d1-1f3ff-200d-1f52c.png", + "sheet_x": 48, + "sheet_y": 30, + "added_in": "12.1", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true } } }, { - "name": "HANDSHAKE", - "unified": "1F91D", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f91d.png", - "sheet_x": 38, - "sheet_y": 22, - "short_name": "handshake", - "short_names": ["handshake"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 389, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - { - "name": "HAND WITH INDEX AND MIDDLE FINGERS CROSSED", - "unified": "1F91E", + "name": "ASTRONAUT", + "unified": "1F9D1-200D-1F680", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f91e.png", - "sheet_x": 38, - "sheet_y": 23, - "short_name": "crossed_fingers", - "short_names": [ - "crossed_fingers", - "hand_with_index_and_middle_fingers_crossed" - ], + "image": "1f9d1-200d-1f680.png", + "sheet_x": 48, + "sheet_y": 31, + "short_name": "astronaut", + "short_names": ["astronaut"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 367, - "added_in": "9.0", + "category": "People & Body", + "subcategory": "person-role", + "sort_order": 328, + "added_in": "12.1", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true, - "has_img_messenger": false, "skin_variations": { "1F3FB": { - "unified": "1F91E-1F3FB", + "unified": "1F9D1-1F3FB-200D-1F680", "non_qualified": null, - "image": "1f91e-1f3fb.png", - "sheet_x": 38, - "sheet_y": 24, - "added_in": "9.0", + "image": "1f9d1-1f3fb-200d-1f680.png", + "sheet_x": 48, + "sheet_y": 32, + "added_in": "12.1", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, "1F3FC": { - "unified": "1F91E-1F3FC", + "unified": "1F9D1-1F3FC-200D-1F680", "non_qualified": null, - "image": "1f91e-1f3fc.png", - "sheet_x": 38, - "sheet_y": 25, - "added_in": "9.0", + "image": "1f9d1-1f3fc-200d-1f680.png", + "sheet_x": 48, + "sheet_y": 33, + "added_in": "12.1", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, "1F3FD": { - "unified": "1F91E-1F3FD", + "unified": "1F9D1-1F3FD-200D-1F680", "non_qualified": null, - "image": "1f91e-1f3fd.png", - "sheet_x": 38, - "sheet_y": 26, - "added_in": "9.0", + "image": "1f9d1-1f3fd-200d-1f680.png", + "sheet_x": 48, + "sheet_y": 34, + "added_in": "12.1", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, "1F3FE": { - "unified": "1F91E-1F3FE", + "unified": "1F9D1-1F3FE-200D-1F680", "non_qualified": null, - "image": "1f91e-1f3fe.png", - "sheet_x": 38, - "sheet_y": 27, - "added_in": "9.0", + "image": "1f9d1-1f3fe-200d-1f680.png", + "sheet_x": 48, + "sheet_y": 35, + "added_in": "12.1", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, "1F3FF": { - "unified": "1F91E-1F3FF", + "unified": "1F9D1-1F3FF-200D-1F680", "non_qualified": null, - "image": "1f91e-1f3ff.png", - "sheet_x": 38, - "sheet_y": 28, - "added_in": "9.0", + "image": "1f9d1-1f3ff-200d-1f680.png", + "sheet_x": 48, + "sheet_y": 36, + "added_in": "12.1", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true } } }, { - "name": "I LOVE YOU HAND SIGN", - "unified": "1F91F", + "name": "FIREFIGHTER", + "unified": "1F9D1-200D-1F692", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f91f.png", - "sheet_x": 38, - "sheet_y": 29, - "short_name": "i_love_you_hand_sign", - "short_names": ["i_love_you_hand_sign"], + "image": "1f9d1-200d-1f692.png", + "sheet_x": 48, + "sheet_y": 37, + "short_name": "firefighter", + "short_names": ["firefighter"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 382, - "added_in": "10.0", + "category": "People & Body", + "subcategory": "person-role", + "sort_order": 331, + "added_in": "12.1", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true, - "has_img_messenger": false, "skin_variations": { "1F3FB": { - "unified": "1F91F-1F3FB", + "unified": "1F9D1-1F3FB-200D-1F692", "non_qualified": null, - "image": "1f91f-1f3fb.png", - "sheet_x": 38, - "sheet_y": 30, - "added_in": "10.0", + "image": "1f9d1-1f3fb-200d-1f692.png", + "sheet_x": 48, + "sheet_y": 38, + "added_in": "12.1", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, "1F3FC": { - "unified": "1F91F-1F3FC", + "unified": "1F9D1-1F3FC-200D-1F692", "non_qualified": null, - "image": "1f91f-1f3fc.png", - "sheet_x": 38, - "sheet_y": 31, - "added_in": "10.0", + "image": "1f9d1-1f3fc-200d-1f692.png", + "sheet_x": 48, + "sheet_y": 39, + "added_in": "12.1", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, "1F3FD": { - "unified": "1F91F-1F3FD", + "unified": "1F9D1-1F3FD-200D-1F692", "non_qualified": null, - "image": "1f91f-1f3fd.png", - "sheet_x": 38, - "sheet_y": 32, - "added_in": "10.0", + "image": "1f9d1-1f3fd-200d-1f692.png", + "sheet_x": 48, + "sheet_y": 40, + "added_in": "12.1", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, "1F3FE": { - "unified": "1F91F-1F3FE", + "unified": "1F9D1-1F3FE-200D-1F692", "non_qualified": null, - "image": "1f91f-1f3fe.png", - "sheet_x": 38, - "sheet_y": 33, - "added_in": "10.0", + "image": "1f9d1-1f3fe-200d-1f692.png", + "sheet_x": 48, + "sheet_y": 41, + "added_in": "12.1", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, "1F3FF": { - "unified": "1F91F-1F3FF", + "unified": "1F9D1-1F3FF-200D-1F692", "non_qualified": null, - "image": "1f91f-1f3ff.png", - "sheet_x": 38, - "sheet_y": 34, - "added_in": "10.0", + "image": "1f9d1-1f3ff-200d-1f692.png", + "sheet_x": 48, + "sheet_y": 42, + "added_in": "12.1", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true } } }, { - "name": "FACE WITH COWBOY HAT", - "unified": "1F920", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f920.png", - "sheet_x": 38, - "sheet_y": 35, - "short_name": "face_with_cowboy_hat", - "short_names": ["face_with_cowboy_hat"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 81, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - { - "name": "CLOWN FACE", - "unified": "1F921", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f921.png", - "sheet_x": 38, - "sheet_y": 36, - "short_name": "clown_face", - "short_names": ["clown_face"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 92, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - { - "name": "NAUSEATED FACE", - "unified": "1F922", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f922.png", - "sheet_x": 38, - "sheet_y": 37, - "short_name": "nauseated_face", - "short_names": ["nauseated_face"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 77, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - { - "name": "ROLLING ON THE FLOOR LAUGHING", - "unified": "1F923", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f923.png", - "sheet_x": 38, - "sheet_y": 38, - "short_name": "rolling_on_the_floor_laughing", - "short_names": ["rolling_on_the_floor_laughing"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 4, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - { - "name": "DROOLING FACE", - "unified": "1F924", + "name": "PEOPLE HOLDING HANDS", + "unified": "1F9D1-200D-1F91D-200D-1F9D1", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f924.png", - "sheet_x": 38, - "sheet_y": 39, - "short_name": "drooling_face", - "short_names": ["drooling_face"], + "image": "1f9d1-200d-1f91d-200d-1f9d1.png", + "sheet_x": 48, + "sheet_y": 43, + "short_name": "people_holding_hands", + "short_names": ["people_holding_hands"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 42, - "added_in": "9.0", + "category": "People & Body", + "subcategory": "family", + "sort_order": 487, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true, - "has_img_messenger": false + "skin_variations": { + "1F3FB-1F3FB": { + "unified": "1F9D1-1F3FB-200D-1F91D-200D-1F9D1-1F3FB", + "non_qualified": null, + "image": "1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3fb.png", + "sheet_x": 48, + "sheet_y": 44, + "added_in": "12.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FB-1F3FC": { + "unified": "1F9D1-1F3FB-200D-1F91D-200D-1F9D1-1F3FC", + "non_qualified": null, + "image": "1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3fc.png", + "sheet_x": 48, + "sheet_y": 45, + "added_in": "12.1", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FB-1F3FD": { + "unified": "1F9D1-1F3FB-200D-1F91D-200D-1F9D1-1F3FD", + "non_qualified": null, + "image": "1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3fd.png", + "sheet_x": 48, + "sheet_y": 46, + "added_in": "12.1", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FB-1F3FE": { + "unified": "1F9D1-1F3FB-200D-1F91D-200D-1F9D1-1F3FE", + "non_qualified": null, + "image": "1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3fe.png", + "sheet_x": 48, + "sheet_y": 47, + "added_in": "12.1", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FB-1F3FF": { + "unified": "1F9D1-1F3FB-200D-1F91D-200D-1F9D1-1F3FF", + "non_qualified": null, + "image": "1f9d1-1f3fb-200d-1f91d-200d-1f9d1-1f3ff.png", + "sheet_x": 48, + "sheet_y": 48, + "added_in": "12.1", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FC-1F3FB": { + "unified": "1F9D1-1F3FC-200D-1F91D-200D-1F9D1-1F3FB", + "non_qualified": null, + "image": "1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3fb.png", + "sheet_x": 48, + "sheet_y": 49, + "added_in": "12.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FC-1F3FC": { + "unified": "1F9D1-1F3FC-200D-1F91D-200D-1F9D1-1F3FC", + "non_qualified": null, + "image": "1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3fc.png", + "sheet_x": 48, + "sheet_y": 50, + "added_in": "12.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FC-1F3FD": { + "unified": "1F9D1-1F3FC-200D-1F91D-200D-1F9D1-1F3FD", + "non_qualified": null, + "image": "1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3fd.png", + "sheet_x": 48, + "sheet_y": 51, + "added_in": "12.1", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FC-1F3FE": { + "unified": "1F9D1-1F3FC-200D-1F91D-200D-1F9D1-1F3FE", + "non_qualified": null, + "image": "1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3fe.png", + "sheet_x": 48, + "sheet_y": 52, + "added_in": "12.1", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FC-1F3FF": { + "unified": "1F9D1-1F3FC-200D-1F91D-200D-1F9D1-1F3FF", + "non_qualified": null, + "image": "1f9d1-1f3fc-200d-1f91d-200d-1f9d1-1f3ff.png", + "sheet_x": 48, + "sheet_y": 53, + "added_in": "12.1", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FD-1F3FB": { + "unified": "1F9D1-1F3FD-200D-1F91D-200D-1F9D1-1F3FB", + "non_qualified": null, + "image": "1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3fb.png", + "sheet_x": 48, + "sheet_y": 54, + "added_in": "12.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FD-1F3FC": { + "unified": "1F9D1-1F3FD-200D-1F91D-200D-1F9D1-1F3FC", + "non_qualified": null, + "image": "1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3fc.png", + "sheet_x": 48, + "sheet_y": 55, + "added_in": "12.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FD-1F3FD": { + "unified": "1F9D1-1F3FD-200D-1F91D-200D-1F9D1-1F3FD", + "non_qualified": null, + "image": "1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3fd.png", + "sheet_x": 48, + "sheet_y": 56, + "added_in": "12.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FD-1F3FE": { + "unified": "1F9D1-1F3FD-200D-1F91D-200D-1F9D1-1F3FE", + "non_qualified": null, + "image": "1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3fe.png", + "sheet_x": 48, + "sheet_y": 57, + "added_in": "12.1", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FD-1F3FF": { + "unified": "1F9D1-1F3FD-200D-1F91D-200D-1F9D1-1F3FF", + "non_qualified": null, + "image": "1f9d1-1f3fd-200d-1f91d-200d-1f9d1-1f3ff.png", + "sheet_x": 48, + "sheet_y": 58, + "added_in": "12.1", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FE-1F3FB": { + "unified": "1F9D1-1F3FE-200D-1F91D-200D-1F9D1-1F3FB", + "non_qualified": null, + "image": "1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fb.png", + "sheet_x": 48, + "sheet_y": 59, + "added_in": "12.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FE-1F3FC": { + "unified": "1F9D1-1F3FE-200D-1F91D-200D-1F9D1-1F3FC", + "non_qualified": null, + "image": "1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fc.png", + "sheet_x": 48, + "sheet_y": 60, + "added_in": "12.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FE-1F3FD": { + "unified": "1F9D1-1F3FE-200D-1F91D-200D-1F9D1-1F3FD", + "non_qualified": null, + "image": "1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fd.png", + "sheet_x": 49, + "sheet_y": 0, + "added_in": "12.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FE-1F3FE": { + "unified": "1F9D1-1F3FE-200D-1F91D-200D-1F9D1-1F3FE", + "non_qualified": null, + "image": "1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3fe.png", + "sheet_x": 49, + "sheet_y": 1, + "added_in": "12.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FE-1F3FF": { + "unified": "1F9D1-1F3FE-200D-1F91D-200D-1F9D1-1F3FF", + "non_qualified": null, + "image": "1f9d1-1f3fe-200d-1f91d-200d-1f9d1-1f3ff.png", + "sheet_x": 49, + "sheet_y": 2, + "added_in": "12.1", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FF-1F3FB": { + "unified": "1F9D1-1F3FF-200D-1F91D-200D-1F9D1-1F3FB", + "non_qualified": null, + "image": "1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fb.png", + "sheet_x": 49, + "sheet_y": 3, + "added_in": "12.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FF-1F3FC": { + "unified": "1F9D1-1F3FF-200D-1F91D-200D-1F9D1-1F3FC", + "non_qualified": null, + "image": "1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fc.png", + "sheet_x": 49, + "sheet_y": 4, + "added_in": "12.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FF-1F3FD": { + "unified": "1F9D1-1F3FF-200D-1F91D-200D-1F9D1-1F3FD", + "non_qualified": null, + "image": "1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fd.png", + "sheet_x": 49, + "sheet_y": 5, + "added_in": "12.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FF-1F3FE": { + "unified": "1F9D1-1F3FF-200D-1F91D-200D-1F9D1-1F3FE", + "non_qualified": null, + "image": "1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3fe.png", + "sheet_x": 49, + "sheet_y": 6, + "added_in": "12.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FF-1F3FF": { + "unified": "1F9D1-1F3FF-200D-1F91D-200D-1F9D1-1F3FF", + "non_qualified": null, + "image": "1f9d1-1f3ff-200d-1f91d-200d-1f9d1-1f3ff.png", + "sheet_x": 49, + "sheet_y": 7, + "added_in": "12.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + } + } }, { - "name": "LYING FACE", - "unified": "1F925", + "name": "PERSON WITH WHITE CANE", + "unified": "1F9D1-200D-1F9AF", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f925.png", - "sheet_x": 38, - "sheet_y": 40, - "short_name": "lying_face", - "short_names": ["lying_face"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 85, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - { - "name": null, - "unified": "1F926-200D-2640-FE0F", - "non_qualified": "1F926-200D-2640", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f926-200d-2640-fe0f.png", - "sheet_x": 38, - "sheet_y": 41, - "short_name": "woman-facepalming", - "short_names": ["woman-facepalming"], + "image": "1f9d1-200d-1f9af.png", + "sheet_x": 49, + "sheet_y": 8, + "short_name": "person_with_probing_cane", + "short_names": ["person_with_probing_cane"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 238, - "added_in": "9.0", + "category": "People & Body", + "subcategory": "person-activity", + "sort_order": 415, + "added_in": "12.1", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true, - "has_img_messenger": false, "skin_variations": { "1F3FB": { - "unified": "1F926-1F3FB-200D-2640-FE0F", - "non_qualified": "1F926-1F3FB-200D-2640", - "image": "1f926-1f3fb-200d-2640-fe0f.png", - "sheet_x": 38, - "sheet_y": 42, - "added_in": "9.0", + "unified": "1F9D1-1F3FB-200D-1F9AF", + "non_qualified": null, + "image": "1f9d1-1f3fb-200d-1f9af.png", + "sheet_x": 49, + "sheet_y": 9, + "added_in": "12.1", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false + "has_img_facebook": true }, "1F3FC": { - "unified": "1F926-1F3FC-200D-2640-FE0F", - "non_qualified": "1F926-1F3FC-200D-2640", - "image": "1f926-1f3fc-200d-2640-fe0f.png", - "sheet_x": 38, - "sheet_y": 43, - "added_in": "9.0", + "unified": "1F9D1-1F3FC-200D-1F9AF", + "non_qualified": null, + "image": "1f9d1-1f3fc-200d-1f9af.png", + "sheet_x": 49, + "sheet_y": 10, + "added_in": "12.1", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false + "has_img_facebook": true }, "1F3FD": { - "unified": "1F926-1F3FD-200D-2640-FE0F", - "non_qualified": "1F926-1F3FD-200D-2640", - "image": "1f926-1f3fd-200d-2640-fe0f.png", - "sheet_x": 38, - "sheet_y": 44, - "added_in": "9.0", + "unified": "1F9D1-1F3FD-200D-1F9AF", + "non_qualified": null, + "image": "1f9d1-1f3fd-200d-1f9af.png", + "sheet_x": 49, + "sheet_y": 11, + "added_in": "12.1", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false + "has_img_facebook": true }, "1F3FE": { - "unified": "1F926-1F3FE-200D-2640-FE0F", - "non_qualified": "1F926-1F3FE-200D-2640", - "image": "1f926-1f3fe-200d-2640-fe0f.png", - "sheet_x": 38, - "sheet_y": 45, - "added_in": "9.0", + "unified": "1F9D1-1F3FE-200D-1F9AF", + "non_qualified": null, + "image": "1f9d1-1f3fe-200d-1f9af.png", + "sheet_x": 49, + "sheet_y": 12, + "added_in": "12.1", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false + "has_img_facebook": true }, "1F3FF": { - "unified": "1F926-1F3FF-200D-2640-FE0F", - "non_qualified": "1F926-1F3FF-200D-2640", - "image": "1f926-1f3ff-200d-2640-fe0f.png", - "sheet_x": 38, - "sheet_y": 46, - "added_in": "9.0", + "unified": "1F9D1-1F3FF-200D-1F9AF", + "non_qualified": null, + "image": "1f9d1-1f3ff-200d-1f9af.png", + "sheet_x": 49, + "sheet_y": 13, + "added_in": "12.1", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false + "has_img_facebook": true } } }, { - "name": null, - "unified": "1F926-200D-2642-FE0F", - "non_qualified": "1F926-200D-2642", + "name": "PERSON: RED HAIR", + "unified": "1F9D1-200D-1F9B0", + "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f926-200d-2642-fe0f.png", - "sheet_x": 38, - "sheet_y": 47, - "short_name": "man-facepalming", - "short_names": ["man-facepalming"], + "image": "1f9d1-200d-1f9b0.png", + "sheet_x": 49, + "sheet_y": 14, + "short_name": "red_haired_person", + "short_names": ["red_haired_person"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 237, - "added_in": "9.0", + "category": "People & Body", + "subcategory": "person", + "sort_order": 244, + "added_in": "12.1", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true, - "has_img_messenger": false, "skin_variations": { "1F3FB": { - "unified": "1F926-1F3FB-200D-2642-FE0F", - "non_qualified": "1F926-1F3FB-200D-2642", - "image": "1f926-1f3fb-200d-2642-fe0f.png", - "sheet_x": 38, - "sheet_y": 48, - "added_in": "9.0", + "unified": "1F9D1-1F3FB-200D-1F9B0", + "non_qualified": null, + "image": "1f9d1-1f3fb-200d-1f9b0.png", + "sheet_x": 49, + "sheet_y": 15, + "added_in": "12.1", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false + "has_img_facebook": true }, "1F3FC": { - "unified": "1F926-1F3FC-200D-2642-FE0F", - "non_qualified": "1F926-1F3FC-200D-2642", - "image": "1f926-1f3fc-200d-2642-fe0f.png", - "sheet_x": 38, - "sheet_y": 49, - "added_in": "9.0", + "unified": "1F9D1-1F3FC-200D-1F9B0", + "non_qualified": null, + "image": "1f9d1-1f3fc-200d-1f9b0.png", + "sheet_x": 49, + "sheet_y": 16, + "added_in": "12.1", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false + "has_img_facebook": true }, "1F3FD": { - "unified": "1F926-1F3FD-200D-2642-FE0F", - "non_qualified": "1F926-1F3FD-200D-2642", - "image": "1f926-1f3fd-200d-2642-fe0f.png", - "sheet_x": 38, - "sheet_y": 50, - "added_in": "9.0", + "unified": "1F9D1-1F3FD-200D-1F9B0", + "non_qualified": null, + "image": "1f9d1-1f3fd-200d-1f9b0.png", + "sheet_x": 49, + "sheet_y": 17, + "added_in": "12.1", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false + "has_img_facebook": true }, "1F3FE": { - "unified": "1F926-1F3FE-200D-2642-FE0F", - "non_qualified": "1F926-1F3FE-200D-2642", - "image": "1f926-1f3fe-200d-2642-fe0f.png", - "sheet_x": 38, - "sheet_y": 51, - "added_in": "9.0", + "unified": "1F9D1-1F3FE-200D-1F9B0", + "non_qualified": null, + "image": "1f9d1-1f3fe-200d-1f9b0.png", + "sheet_x": 49, + "sheet_y": 18, + "added_in": "12.1", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false + "has_img_facebook": true }, "1F3FF": { - "unified": "1F926-1F3FF-200D-2642-FE0F", - "non_qualified": "1F926-1F3FF-200D-2642", - "image": "1f926-1f3ff-200d-2642-fe0f.png", - "sheet_x": 38, - "sheet_y": 52, - "added_in": "9.0", + "unified": "1F9D1-1F3FF-200D-1F9B0", + "non_qualified": null, + "image": "1f9d1-1f3ff-200d-1f9b0.png", + "sheet_x": 49, + "sheet_y": 19, + "added_in": "12.1", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false + "has_img_facebook": true } } }, { - "name": "FACE PALM", - "unified": "1F926", + "name": "PERSON: CURLY HAIR", + "unified": "1F9D1-200D-1F9B1", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f926.png", - "sheet_x": 39, - "sheet_y": 0, - "short_name": "face_palm", - "short_names": ["face_palm"], + "image": "1f9d1-200d-1f9b1.png", + "sheet_x": 49, + "sheet_y": 20, + "short_name": "curly_haired_person", + "short_names": ["curly_haired_person"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 236, - "added_in": "9.0", + "category": "People & Body", + "subcategory": "person", + "sort_order": 246, + "added_in": "12.1", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false, + "has_img_facebook": true, "skin_variations": { "1F3FB": { - "unified": "1F926-1F3FB", + "unified": "1F9D1-1F3FB-200D-1F9B1", "non_qualified": null, - "image": "1f926-1f3fb.png", - "sheet_x": 39, - "sheet_y": 1, - "added_in": "9.0", + "image": "1f9d1-1f3fb-200d-1f9b1.png", + "sheet_x": 49, + "sheet_y": 21, + "added_in": "12.1", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false + "has_img_facebook": true }, "1F3FC": { - "unified": "1F926-1F3FC", + "unified": "1F9D1-1F3FC-200D-1F9B1", "non_qualified": null, - "image": "1f926-1f3fc.png", - "sheet_x": 39, - "sheet_y": 2, - "added_in": "9.0", + "image": "1f9d1-1f3fc-200d-1f9b1.png", + "sheet_x": 49, + "sheet_y": 22, + "added_in": "12.1", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false + "has_img_facebook": true }, "1F3FD": { - "unified": "1F926-1F3FD", + "unified": "1F9D1-1F3FD-200D-1F9B1", "non_qualified": null, - "image": "1f926-1f3fd.png", - "sheet_x": 39, - "sheet_y": 3, - "added_in": "9.0", + "image": "1f9d1-1f3fd-200d-1f9b1.png", + "sheet_x": 49, + "sheet_y": 23, + "added_in": "12.1", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false + "has_img_facebook": true }, "1F3FE": { - "unified": "1F926-1F3FE", + "unified": "1F9D1-1F3FE-200D-1F9B1", "non_qualified": null, - "image": "1f926-1f3fe.png", - "sheet_x": 39, - "sheet_y": 4, - "added_in": "9.0", + "image": "1f9d1-1f3fe-200d-1f9b1.png", + "sheet_x": 49, + "sheet_y": 24, + "added_in": "12.1", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false + "has_img_facebook": true }, "1F3FF": { - "unified": "1F926-1F3FF", + "unified": "1F9D1-1F3FF-200D-1F9B1", "non_qualified": null, - "image": "1f926-1f3ff.png", - "sheet_x": 39, - "sheet_y": 5, - "added_in": "9.0", + "image": "1f9d1-1f3ff-200d-1f9b1.png", + "sheet_x": 49, + "sheet_y": 25, + "added_in": "12.1", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false + "has_img_facebook": true } } }, { - "name": "SNEEZING FACE", - "unified": "1F927", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f927.png", - "sheet_x": 39, - "sheet_y": 6, - "short_name": "sneezing_face", - "short_names": ["sneezing_face"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 79, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - { - "name": "FACE WITH ONE EYEBROW RAISED", - "unified": "1F928", + "name": "PERSON: BALD", + "unified": "1F9D1-200D-1F9B2", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f928.png", - "sheet_x": 39, - "sheet_y": 7, - "short_name": "face_with_raised_eyebrow", - "short_names": ["face_with_raised_eyebrow", "face_with_one_eyebrow_raised"], + "image": "1f9d1-200d-1f9b2.png", + "sheet_x": 49, + "sheet_y": 26, + "short_name": "bald_person", + "short_names": ["bald_person"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 24, - "added_in": "10.0", + "category": "People & Body", + "subcategory": "person", + "sort_order": 250, + "added_in": "12.1", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true, - "has_img_messenger": false + "skin_variations": { + "1F3FB": { + "unified": "1F9D1-1F3FB-200D-1F9B2", + "non_qualified": null, + "image": "1f9d1-1f3fb-200d-1f9b2.png", + "sheet_x": 49, + "sheet_y": 27, + "added_in": "12.1", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FC": { + "unified": "1F9D1-1F3FC-200D-1F9B2", + "non_qualified": null, + "image": "1f9d1-1f3fc-200d-1f9b2.png", + "sheet_x": 49, + "sheet_y": 28, + "added_in": "12.1", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FD": { + "unified": "1F9D1-1F3FD-200D-1F9B2", + "non_qualified": null, + "image": "1f9d1-1f3fd-200d-1f9b2.png", + "sheet_x": 49, + "sheet_y": 29, + "added_in": "12.1", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FE": { + "unified": "1F9D1-1F3FE-200D-1F9B2", + "non_qualified": null, + "image": "1f9d1-1f3fe-200d-1f9b2.png", + "sheet_x": 49, + "sheet_y": 30, + "added_in": "12.1", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FF": { + "unified": "1F9D1-1F3FF-200D-1F9B2", + "non_qualified": null, + "image": "1f9d1-1f3ff-200d-1f9b2.png", + "sheet_x": 49, + "sheet_y": 31, + "added_in": "12.1", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + } + } }, { - "name": "GRINNING FACE WITH STAR EYES", - "unified": "1F929", + "name": "PERSON: WHITE HAIR", + "unified": "1F9D1-200D-1F9B3", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f929.png", - "sheet_x": 39, - "sheet_y": 8, - "short_name": "star-struck", - "short_names": ["star-struck", "grinning_face_with_star_eyes"], + "image": "1f9d1-200d-1f9b3.png", + "sheet_x": 49, + "sheet_y": 32, + "short_name": "white_haired_person", + "short_names": ["white_haired_person"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 22, - "added_in": "10.0", + "category": "People & Body", + "subcategory": "person", + "sort_order": 248, + "added_in": "12.1", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true, - "has_img_messenger": false + "skin_variations": { + "1F3FB": { + "unified": "1F9D1-1F3FB-200D-1F9B3", + "non_qualified": null, + "image": "1f9d1-1f3fb-200d-1f9b3.png", + "sheet_x": 49, + "sheet_y": 33, + "added_in": "12.1", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FC": { + "unified": "1F9D1-1F3FC-200D-1F9B3", + "non_qualified": null, + "image": "1f9d1-1f3fc-200d-1f9b3.png", + "sheet_x": 49, + "sheet_y": 34, + "added_in": "12.1", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FD": { + "unified": "1F9D1-1F3FD-200D-1F9B3", + "non_qualified": null, + "image": "1f9d1-1f3fd-200d-1f9b3.png", + "sheet_x": 49, + "sheet_y": 35, + "added_in": "12.1", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FE": { + "unified": "1F9D1-1F3FE-200D-1F9B3", + "non_qualified": null, + "image": "1f9d1-1f3fe-200d-1f9b3.png", + "sheet_x": 49, + "sheet_y": 36, + "added_in": "12.1", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FF": { + "unified": "1F9D1-1F3FF-200D-1F9B3", + "non_qualified": null, + "image": "1f9d1-1f3ff-200d-1f9b3.png", + "sheet_x": 49, + "sheet_y": 37, + "added_in": "12.1", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + } + } }, { - "name": "GRINNING FACE WITH ONE LARGE AND ONE SMALL EYE", - "unified": "1F92A", + "name": "PERSON IN MOTORIZED WHEELCHAIR", + "unified": "1F9D1-200D-1F9BC", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f92a.png", - "sheet_x": 39, - "sheet_y": 9, - "short_name": "zany_face", - "short_names": [ - "zany_face", - "grinning_face_with_one_large_and_one_small_eye" - ], + "image": "1f9d1-200d-1f9bc.png", + "sheet_x": 49, + "sheet_y": 38, + "short_name": "person_in_motorized_wheelchair", + "short_names": ["person_in_motorized_wheelchair"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 69, - "added_in": "10.0", + "category": "People & Body", + "subcategory": "person-activity", + "sort_order": 418, + "added_in": "12.1", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true, - "has_img_messenger": false + "skin_variations": { + "1F3FB": { + "unified": "1F9D1-1F3FB-200D-1F9BC", + "non_qualified": null, + "image": "1f9d1-1f3fb-200d-1f9bc.png", + "sheet_x": 49, + "sheet_y": 39, + "added_in": "12.1", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FC": { + "unified": "1F9D1-1F3FC-200D-1F9BC", + "non_qualified": null, + "image": "1f9d1-1f3fc-200d-1f9bc.png", + "sheet_x": 49, + "sheet_y": 40, + "added_in": "12.1", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FD": { + "unified": "1F9D1-1F3FD-200D-1F9BC", + "non_qualified": null, + "image": "1f9d1-1f3fd-200d-1f9bc.png", + "sheet_x": 49, + "sheet_y": 41, + "added_in": "12.1", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FE": { + "unified": "1F9D1-1F3FE-200D-1F9BC", + "non_qualified": null, + "image": "1f9d1-1f3fe-200d-1f9bc.png", + "sheet_x": 49, + "sheet_y": 42, + "added_in": "12.1", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FF": { + "unified": "1F9D1-1F3FF-200D-1F9BC", + "non_qualified": null, + "image": "1f9d1-1f3ff-200d-1f9bc.png", + "sheet_x": 49, + "sheet_y": 43, + "added_in": "12.1", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + } + } }, { - "name": "FACE WITH FINGER COVERING CLOSED LIPS", - "unified": "1F92B", + "name": "PERSON IN MANUAL WHEELCHAIR", + "unified": "1F9D1-200D-1F9BD", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f92b.png", - "sheet_x": 39, - "sheet_y": 10, - "short_name": "shushing_face", - "short_names": ["shushing_face", "face_with_finger_covering_closed_lips"], + "image": "1f9d1-200d-1f9bd.png", + "sheet_x": 49, + "sheet_y": 44, + "short_name": "person_in_manual_wheelchair", + "short_names": ["person_in_manual_wheelchair"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 86, - "added_in": "10.0", + "category": "People & Body", + "subcategory": "person-activity", + "sort_order": 421, + "added_in": "12.1", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true, - "has_img_messenger": false + "skin_variations": { + "1F3FB": { + "unified": "1F9D1-1F3FB-200D-1F9BD", + "non_qualified": null, + "image": "1f9d1-1f3fb-200d-1f9bd.png", + "sheet_x": 49, + "sheet_y": 45, + "added_in": "12.1", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FC": { + "unified": "1F9D1-1F3FC-200D-1F9BD", + "non_qualified": null, + "image": "1f9d1-1f3fc-200d-1f9bd.png", + "sheet_x": 49, + "sheet_y": 46, + "added_in": "12.1", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FD": { + "unified": "1F9D1-1F3FD-200D-1F9BD", + "non_qualified": null, + "image": "1f9d1-1f3fd-200d-1f9bd.png", + "sheet_x": 49, + "sheet_y": 47, + "added_in": "12.1", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FE": { + "unified": "1F9D1-1F3FE-200D-1F9BD", + "non_qualified": null, + "image": "1f9d1-1f3fe-200d-1f9bd.png", + "sheet_x": 49, + "sheet_y": 48, + "added_in": "12.1", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FF": { + "unified": "1F9D1-1F3FF-200D-1F9BD", + "non_qualified": null, + "image": "1f9d1-1f3ff-200d-1f9bd.png", + "sheet_x": 49, + "sheet_y": 49, + "added_in": "12.1", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + } + } }, { - "name": "SERIOUS FACE WITH SYMBOLS COVERING MOUTH", - "unified": "1F92C", - "non_qualified": null, + "name": "HEALTH WORKER", + "unified": "1F9D1-200D-2695-FE0F", + "non_qualified": "1F9D1-200D-2695", "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f92c.png", - "sheet_x": 39, - "sheet_y": 11, - "short_name": "face_with_symbols_on_mouth", - "short_names": [ - "face_with_symbols_on_mouth", - "serious_face_with_symbols_covering_mouth" - ], + "image": "1f9d1-200d-2695-fe0f.png", + "sheet_x": 49, + "sheet_y": 50, + "short_name": "health_worker", + "short_names": ["health_worker"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 73, - "added_in": "10.0", + "category": "People & Body", + "subcategory": "person-role", + "sort_order": 286, + "added_in": "12.1", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true, - "has_img_messenger": false + "skin_variations": { + "1F3FB": { + "unified": "1F9D1-1F3FB-200D-2695-FE0F", + "non_qualified": "1F9D1-1F3FB-200D-2695", + "image": "1f9d1-1f3fb-200d-2695-fe0f.png", + "sheet_x": 49, + "sheet_y": 51, + "added_in": "12.1", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FC": { + "unified": "1F9D1-1F3FC-200D-2695-FE0F", + "non_qualified": "1F9D1-1F3FC-200D-2695", + "image": "1f9d1-1f3fc-200d-2695-fe0f.png", + "sheet_x": 49, + "sheet_y": 52, + "added_in": "12.1", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FD": { + "unified": "1F9D1-1F3FD-200D-2695-FE0F", + "non_qualified": "1F9D1-1F3FD-200D-2695", + "image": "1f9d1-1f3fd-200d-2695-fe0f.png", + "sheet_x": 49, + "sheet_y": 53, + "added_in": "12.1", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FE": { + "unified": "1F9D1-1F3FE-200D-2695-FE0F", + "non_qualified": "1F9D1-1F3FE-200D-2695", + "image": "1f9d1-1f3fe-200d-2695-fe0f.png", + "sheet_x": 49, + "sheet_y": 54, + "added_in": "12.1", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FF": { + "unified": "1F9D1-1F3FF-200D-2695-FE0F", + "non_qualified": "1F9D1-1F3FF-200D-2695", + "image": "1f9d1-1f3ff-200d-2695-fe0f.png", + "sheet_x": 49, + "sheet_y": 55, + "added_in": "12.1", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + } + } }, { - "name": "SMILING FACE WITH SMILING EYES AND HAND COVERING MOUTH", - "unified": "1F92D", - "non_qualified": null, + "name": "JUDGE", + "unified": "1F9D1-200D-2696-FE0F", + "non_qualified": "1F9D1-200D-2696", "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f92d.png", - "sheet_x": 39, - "sheet_y": 12, - "short_name": "face_with_hand_over_mouth", - "short_names": [ - "face_with_hand_over_mouth", - "smiling_face_with_smiling_eyes_and_hand_covering_mouth" - ], + "image": "1f9d1-200d-2696-fe0f.png", + "sheet_x": 49, + "sheet_y": 56, + "short_name": "judge", + "short_names": ["judge"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 87, - "added_in": "10.0", + "category": "People & Body", + "subcategory": "person-role", + "sort_order": 295, + "added_in": "12.1", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true, - "has_img_messenger": false + "skin_variations": { + "1F3FB": { + "unified": "1F9D1-1F3FB-200D-2696-FE0F", + "non_qualified": "1F9D1-1F3FB-200D-2696", + "image": "1f9d1-1f3fb-200d-2696-fe0f.png", + "sheet_x": 49, + "sheet_y": 57, + "added_in": "12.1", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FC": { + "unified": "1F9D1-1F3FC-200D-2696-FE0F", + "non_qualified": "1F9D1-1F3FC-200D-2696", + "image": "1f9d1-1f3fc-200d-2696-fe0f.png", + "sheet_x": 49, + "sheet_y": 58, + "added_in": "12.1", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FD": { + "unified": "1F9D1-1F3FD-200D-2696-FE0F", + "non_qualified": "1F9D1-1F3FD-200D-2696", + "image": "1f9d1-1f3fd-200d-2696-fe0f.png", + "sheet_x": 49, + "sheet_y": 59, + "added_in": "12.1", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FE": { + "unified": "1F9D1-1F3FE-200D-2696-FE0F", + "non_qualified": "1F9D1-1F3FE-200D-2696", + "image": "1f9d1-1f3fe-200d-2696-fe0f.png", + "sheet_x": 49, + "sheet_y": 60, + "added_in": "12.1", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FF": { + "unified": "1F9D1-1F3FF-200D-2696-FE0F", + "non_qualified": "1F9D1-1F3FF-200D-2696", + "image": "1f9d1-1f3ff-200d-2696-fe0f.png", + "sheet_x": 50, + "sheet_y": 0, + "added_in": "12.1", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + } + } }, { - "name": "FACE WITH OPEN MOUTH VOMITING", - "unified": "1F92E", - "non_qualified": null, + "name": "PILOT", + "unified": "1F9D1-200D-2708-FE0F", + "non_qualified": "1F9D1-200D-2708", "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f92e.png", - "sheet_x": 39, - "sheet_y": 13, - "short_name": "face_vomiting", - "short_names": ["face_vomiting", "face_with_open_mouth_vomiting"], + "image": "1f9d1-200d-2708-fe0f.png", + "sheet_x": 50, + "sheet_y": 1, + "short_name": "pilot", + "short_names": ["pilot"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 78, - "added_in": "10.0", + "category": "People & Body", + "subcategory": "person-role", + "sort_order": 325, + "added_in": "12.1", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true, - "has_img_messenger": false + "skin_variations": { + "1F3FB": { + "unified": "1F9D1-1F3FB-200D-2708-FE0F", + "non_qualified": "1F9D1-1F3FB-200D-2708", + "image": "1f9d1-1f3fb-200d-2708-fe0f.png", + "sheet_x": 50, + "sheet_y": 2, + "added_in": "12.1", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FC": { + "unified": "1F9D1-1F3FC-200D-2708-FE0F", + "non_qualified": "1F9D1-1F3FC-200D-2708", + "image": "1f9d1-1f3fc-200d-2708-fe0f.png", + "sheet_x": 50, + "sheet_y": 3, + "added_in": "12.1", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FD": { + "unified": "1F9D1-1F3FD-200D-2708-FE0F", + "non_qualified": "1F9D1-1F3FD-200D-2708", + "image": "1f9d1-1f3fd-200d-2708-fe0f.png", + "sheet_x": 50, + "sheet_y": 4, + "added_in": "12.1", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FE": { + "unified": "1F9D1-1F3FE-200D-2708-FE0F", + "non_qualified": "1F9D1-1F3FE-200D-2708", + "image": "1f9d1-1f3fe-200d-2708-fe0f.png", + "sheet_x": 50, + "sheet_y": 5, + "added_in": "12.1", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FF": { + "unified": "1F9D1-1F3FF-200D-2708-FE0F", + "non_qualified": "1F9D1-1F3FF-200D-2708", + "image": "1f9d1-1f3ff-200d-2708-fe0f.png", + "sheet_x": 50, + "sheet_y": 6, + "added_in": "12.1", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + } + } }, { - "name": "SHOCKED FACE WITH EXPLODING HEAD", - "unified": "1F92F", + "name": "ADULT", + "unified": "1F9D1", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f92f.png", - "sheet_x": 39, - "sheet_y": 14, - "short_name": "exploding_head", - "short_names": ["exploding_head", "shocked_face_with_exploding_head"], + "image": "1f9d1.png", + "sheet_x": 50, + "sheet_y": 7, + "short_name": "adult", + "short_names": ["adult"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 62, - "added_in": "10.0", + "category": "People & Body", + "subcategory": "person", + "sort_order": 232, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true, - "has_img_messenger": false + "skin_variations": { + "1F3FB": { + "unified": "1F9D1-1F3FB", + "non_qualified": null, + "image": "1f9d1-1f3fb.png", + "sheet_x": 50, + "sheet_y": 8, + "added_in": "5.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FC": { + "unified": "1F9D1-1F3FC", + "non_qualified": null, + "image": "1f9d1-1f3fc.png", + "sheet_x": 50, + "sheet_y": 9, + "added_in": "5.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FD": { + "unified": "1F9D1-1F3FD", + "non_qualified": null, + "image": "1f9d1-1f3fd.png", + "sheet_x": 50, + "sheet_y": 10, + "added_in": "5.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FE": { + "unified": "1F9D1-1F3FE", + "non_qualified": null, + "image": "1f9d1-1f3fe.png", + "sheet_x": 50, + "sheet_y": 11, + "added_in": "5.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FF": { + "unified": "1F9D1-1F3FF", + "non_qualified": null, + "image": "1f9d1-1f3ff.png", + "sheet_x": 50, + "sheet_y": 12, + "added_in": "5.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + } + } }, { - "name": "PREGNANT WOMAN", - "unified": "1F930", + "name": "CHILD", + "unified": "1F9D2", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f930.png", - "sheet_x": 39, - "sheet_y": 15, - "short_name": "pregnant_woman", - "short_names": ["pregnant_woman"], + "image": "1f9d2.png", + "sheet_x": 50, + "sheet_y": 13, + "short_name": "child", + "short_names": ["child"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 189, - "added_in": "9.0", + "category": "People & Body", + "subcategory": "person", + "sort_order": 229, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true, - "has_img_messenger": false, "skin_variations": { "1F3FB": { - "unified": "1F930-1F3FB", + "unified": "1F9D2-1F3FB", "non_qualified": null, - "image": "1f930-1f3fb.png", - "sheet_x": 39, - "sheet_y": 16, - "added_in": "9.0", + "image": "1f9d2-1f3fb.png", + "sheet_x": 50, + "sheet_y": 14, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, "1F3FC": { - "unified": "1F930-1F3FC", + "unified": "1F9D2-1F3FC", "non_qualified": null, - "image": "1f930-1f3fc.png", - "sheet_x": 39, - "sheet_y": 17, - "added_in": "9.0", + "image": "1f9d2-1f3fc.png", + "sheet_x": 50, + "sheet_y": 15, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, "1F3FD": { - "unified": "1F930-1F3FD", + "unified": "1F9D2-1F3FD", "non_qualified": null, - "image": "1f930-1f3fd.png", - "sheet_x": 39, - "sheet_y": 18, - "added_in": "9.0", + "image": "1f9d2-1f3fd.png", + "sheet_x": 50, + "sheet_y": 16, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, "1F3FE": { - "unified": "1F930-1F3FE", + "unified": "1F9D2-1F3FE", "non_qualified": null, - "image": "1f930-1f3fe.png", - "sheet_x": 39, - "sheet_y": 19, - "added_in": "9.0", + "image": "1f9d2-1f3fe.png", + "sheet_x": 50, + "sheet_y": 17, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, "1F3FF": { - "unified": "1F930-1F3FF", + "unified": "1F9D2-1F3FF", "non_qualified": null, - "image": "1f930-1f3ff.png", - "sheet_x": 39, - "sheet_y": 20, - "added_in": "9.0", + "image": "1f9d2-1f3ff.png", + "sheet_x": 50, + "sheet_y": 18, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true } } }, { - "name": "BREAST-FEEDING", - "unified": "1F931", + "name": "OLDER ADULT", + "unified": "1F9D3", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f931.png", - "sheet_x": 39, - "sheet_y": 21, - "short_name": "breast-feeding", - "short_names": ["breast-feeding"], + "image": "1f9d3.png", + "sheet_x": 50, + "sheet_y": 19, + "short_name": "older_adult", + "short_names": ["older_adult"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 190, - "added_in": "10.0", + "category": "People & Body", + "subcategory": "person", + "sort_order": 253, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true, - "has_img_messenger": false, "skin_variations": { "1F3FB": { - "unified": "1F931-1F3FB", + "unified": "1F9D3-1F3FB", "non_qualified": null, - "image": "1f931-1f3fb.png", - "sheet_x": 39, - "sheet_y": 22, - "added_in": "10.0", + "image": "1f9d3-1f3fb.png", + "sheet_x": 50, + "sheet_y": 20, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, "1F3FC": { - "unified": "1F931-1F3FC", + "unified": "1F9D3-1F3FC", "non_qualified": null, - "image": "1f931-1f3fc.png", - "sheet_x": 39, - "sheet_y": 23, - "added_in": "10.0", + "image": "1f9d3-1f3fc.png", + "sheet_x": 50, + "sheet_y": 21, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, "1F3FD": { - "unified": "1F931-1F3FD", + "unified": "1F9D3-1F3FD", "non_qualified": null, - "image": "1f931-1f3fd.png", - "sheet_x": 39, - "sheet_y": 24, - "added_in": "10.0", + "image": "1f9d3-1f3fd.png", + "sheet_x": 50, + "sheet_y": 22, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, "1F3FE": { - "unified": "1F931-1F3FE", + "unified": "1F9D3-1F3FE", "non_qualified": null, - "image": "1f931-1f3fe.png", - "sheet_x": 39, - "sheet_y": 25, - "added_in": "10.0", + "image": "1f9d3-1f3fe.png", + "sheet_x": 50, + "sheet_y": 23, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, "1F3FF": { - "unified": "1F931-1F3FF", + "unified": "1F9D3-1F3FF", "non_qualified": null, - "image": "1f931-1f3ff.png", - "sheet_x": 39, - "sheet_y": 26, - "added_in": "10.0", + "image": "1f9d3-1f3ff.png", + "sheet_x": 50, + "sheet_y": 24, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true } } }, { - "name": "PALMS UP TOGETHER", - "unified": "1F932", - "non_qualified": null, + "name": "WOMAN: BEARD", + "unified": "1F9D4-200D-2640-FE0F", + "non_qualified": "1F9D4-200D-2640", "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f932.png", - "sheet_x": 39, - "sheet_y": 27, - "short_name": "palms_up_together", - "short_names": ["palms_up_together"], + "image": "1f9d4-200d-2640-fe0f.png", + "sheet_x": 50, + "sheet_y": 25, + "short_name": "woman_with_beard", + "short_names": ["woman_with_beard"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 387, - "added_in": "10.0", + "category": "People & Body", + "subcategory": "person", + "sort_order": 237, + "added_in": "13.1", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true, - "has_img_messenger": false, "skin_variations": { "1F3FB": { - "unified": "1F932-1F3FB", - "non_qualified": null, - "image": "1f932-1f3fb.png", - "sheet_x": 39, - "sheet_y": 28, - "added_in": "10.0", + "unified": "1F9D4-1F3FB-200D-2640-FE0F", + "non_qualified": "1F9D4-1F3FB-200D-2640", + "image": "1f9d4-1f3fb-200d-2640-fe0f.png", + "sheet_x": 50, + "sheet_y": 26, + "added_in": "13.1", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, "1F3FC": { - "unified": "1F932-1F3FC", - "non_qualified": null, - "image": "1f932-1f3fc.png", - "sheet_x": 39, - "sheet_y": 29, - "added_in": "10.0", + "unified": "1F9D4-1F3FC-200D-2640-FE0F", + "non_qualified": "1F9D4-1F3FC-200D-2640", + "image": "1f9d4-1f3fc-200d-2640-fe0f.png", + "sheet_x": 50, + "sheet_y": 27, + "added_in": "13.1", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, "1F3FD": { - "unified": "1F932-1F3FD", - "non_qualified": null, - "image": "1f932-1f3fd.png", - "sheet_x": 39, - "sheet_y": 30, - "added_in": "10.0", + "unified": "1F9D4-1F3FD-200D-2640-FE0F", + "non_qualified": "1F9D4-1F3FD-200D-2640", + "image": "1f9d4-1f3fd-200d-2640-fe0f.png", + "sheet_x": 50, + "sheet_y": 28, + "added_in": "13.1", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, "1F3FE": { - "unified": "1F932-1F3FE", - "non_qualified": null, - "image": "1f932-1f3fe.png", - "sheet_x": 39, - "sheet_y": 31, - "added_in": "10.0", + "unified": "1F9D4-1F3FE-200D-2640-FE0F", + "non_qualified": "1F9D4-1F3FE-200D-2640", + "image": "1f9d4-1f3fe-200d-2640-fe0f.png", + "sheet_x": 50, + "sheet_y": 29, + "added_in": "13.1", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, "1F3FF": { - "unified": "1F932-1F3FF", - "non_qualified": null, - "image": "1f932-1f3ff.png", - "sheet_x": 39, - "sheet_y": 32, - "added_in": "10.0", + "unified": "1F9D4-1F3FF-200D-2640-FE0F", + "non_qualified": "1F9D4-1F3FF-200D-2640", + "image": "1f9d4-1f3ff-200d-2640-fe0f.png", + "sheet_x": 50, + "sheet_y": 30, + "added_in": "13.1", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true } } }, { - "name": "SELFIE", - "unified": "1F933", - "non_qualified": null, + "name": "MAN: BEARD", + "unified": "1F9D4-200D-2642-FE0F", + "non_qualified": "1F9D4-200D-2642", "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f933.png", - "sheet_x": 39, - "sheet_y": 33, - "short_name": "selfie", - "short_names": ["selfie"], + "image": "1f9d4-200d-2642-fe0f.png", + "sheet_x": 50, + "sheet_y": 31, + "short_name": "man_with_beard", + "short_names": ["man_with_beard"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 356, - "added_in": "9.0", + "category": "People & Body", + "subcategory": "person", + "sort_order": 236, + "added_in": "13.1", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true, - "has_img_messenger": false, "skin_variations": { "1F3FB": { - "unified": "1F933-1F3FB", - "non_qualified": null, - "image": "1f933-1f3fb.png", - "sheet_x": 39, - "sheet_y": 34, - "added_in": "9.0", + "unified": "1F9D4-1F3FB-200D-2642-FE0F", + "non_qualified": "1F9D4-1F3FB-200D-2642", + "image": "1f9d4-1f3fb-200d-2642-fe0f.png", + "sheet_x": 50, + "sheet_y": 32, + "added_in": "13.1", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, "1F3FC": { - "unified": "1F933-1F3FC", - "non_qualified": null, - "image": "1f933-1f3fc.png", - "sheet_x": 39, - "sheet_y": 35, - "added_in": "9.0", + "unified": "1F9D4-1F3FC-200D-2642-FE0F", + "non_qualified": "1F9D4-1F3FC-200D-2642", + "image": "1f9d4-1f3fc-200d-2642-fe0f.png", + "sheet_x": 50, + "sheet_y": 33, + "added_in": "13.1", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, "1F3FD": { - "unified": "1F933-1F3FD", - "non_qualified": null, - "image": "1f933-1f3fd.png", - "sheet_x": 39, - "sheet_y": 36, - "added_in": "9.0", + "unified": "1F9D4-1F3FD-200D-2642-FE0F", + "non_qualified": "1F9D4-1F3FD-200D-2642", + "image": "1f9d4-1f3fd-200d-2642-fe0f.png", + "sheet_x": 50, + "sheet_y": 34, + "added_in": "13.1", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, "1F3FE": { - "unified": "1F933-1F3FE", - "non_qualified": null, - "image": "1f933-1f3fe.png", - "sheet_x": 39, - "sheet_y": 37, - "added_in": "9.0", + "unified": "1F9D4-1F3FE-200D-2642-FE0F", + "non_qualified": "1F9D4-1F3FE-200D-2642", + "image": "1f9d4-1f3fe-200d-2642-fe0f.png", + "sheet_x": 50, + "sheet_y": 35, + "added_in": "13.1", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, "1F3FF": { - "unified": "1F933-1F3FF", - "non_qualified": null, - "image": "1f933-1f3ff.png", - "sheet_x": 39, - "sheet_y": 38, - "added_in": "9.0", + "unified": "1F9D4-1F3FF-200D-2642-FE0F", + "non_qualified": "1F9D4-1F3FF-200D-2642", + "image": "1f9d4-1f3ff-200d-2642-fe0f.png", + "sheet_x": 50, + "sheet_y": 36, + "added_in": "13.1", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true } } }, { - "name": "PRINCE", - "unified": "1F934", + "name": "BEARDED PERSON", + "unified": "1F9D4", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f934.png", - "sheet_x": 39, - "sheet_y": 39, - "short_name": "prince", - "short_names": ["prince"], + "image": "1f9d4.png", + "sheet_x": 50, + "sheet_y": 37, + "short_name": "bearded_person", + "short_names": ["bearded_person"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 168, - "added_in": "9.0", + "category": "People & Body", + "subcategory": "person", + "sort_order": 235, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true, - "has_img_messenger": false, "skin_variations": { "1F3FB": { - "unified": "1F934-1F3FB", + "unified": "1F9D4-1F3FB", "non_qualified": null, - "image": "1f934-1f3fb.png", - "sheet_x": 39, - "sheet_y": 40, - "added_in": "9.0", + "image": "1f9d4-1f3fb.png", + "sheet_x": 50, + "sheet_y": 38, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, "1F3FC": { - "unified": "1F934-1F3FC", + "unified": "1F9D4-1F3FC", "non_qualified": null, - "image": "1f934-1f3fc.png", - "sheet_x": 39, - "sheet_y": 41, - "added_in": "9.0", + "image": "1f9d4-1f3fc.png", + "sheet_x": 50, + "sheet_y": 39, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, "1F3FD": { - "unified": "1F934-1F3FD", + "unified": "1F9D4-1F3FD", "non_qualified": null, - "image": "1f934-1f3fd.png", - "sheet_x": 39, - "sheet_y": 42, - "added_in": "9.0", + "image": "1f9d4-1f3fd.png", + "sheet_x": 50, + "sheet_y": 40, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, "1F3FE": { - "unified": "1F934-1F3FE", + "unified": "1F9D4-1F3FE", "non_qualified": null, - "image": "1f934-1f3fe.png", - "sheet_x": 39, - "sheet_y": 43, - "added_in": "9.0", + "image": "1f9d4-1f3fe.png", + "sheet_x": 50, + "sheet_y": 41, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, "1F3FF": { - "unified": "1F934-1F3FF", + "unified": "1F9D4-1F3FF", "non_qualified": null, - "image": "1f934-1f3ff.png", - "sheet_x": 39, - "sheet_y": 44, - "added_in": "9.0", + "image": "1f9d4-1f3ff.png", + "sheet_x": 50, + "sheet_y": 42, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true } } }, { - "name": "MAN IN TUXEDO", - "unified": "1F935", + "name": "PERSON WITH HEADSCARF", + "unified": "1F9D5", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f935.png", - "sheet_x": 39, - "sheet_y": 45, - "short_name": "man_in_tuxedo", - "short_names": ["man_in_tuxedo"], + "image": "1f9d5.png", + "sheet_x": 50, + "sheet_y": 43, + "short_name": "person_with_headscarf", + "short_names": ["person_with_headscarf"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 187, - "added_in": "9.0", + "category": "People & Body", + "subcategory": "person-role", + "sort_order": 354, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true, - "has_img_messenger": false, "skin_variations": { "1F3FB": { - "unified": "1F935-1F3FB", + "unified": "1F9D5-1F3FB", "non_qualified": null, - "image": "1f935-1f3fb.png", - "sheet_x": 39, - "sheet_y": 46, - "added_in": "9.0", + "image": "1f9d5-1f3fb.png", + "sheet_x": 50, + "sheet_y": 44, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, "1F3FC": { - "unified": "1F935-1F3FC", + "unified": "1F9D5-1F3FC", "non_qualified": null, - "image": "1f935-1f3fc.png", - "sheet_x": 39, - "sheet_y": 47, - "added_in": "9.0", + "image": "1f9d5-1f3fc.png", + "sheet_x": 50, + "sheet_y": 45, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, "1F3FD": { - "unified": "1F935-1F3FD", + "unified": "1F9D5-1F3FD", "non_qualified": null, - "image": "1f935-1f3fd.png", - "sheet_x": 39, + "image": "1f9d5-1f3fd.png", + "sheet_x": 50, + "sheet_y": 46, + "added_in": "5.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FE": { + "unified": "1F9D5-1F3FE", + "non_qualified": null, + "image": "1f9d5-1f3fe.png", + "sheet_x": 50, + "sheet_y": 47, + "added_in": "5.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FF": { + "unified": "1F9D5-1F3FF", + "non_qualified": null, + "image": "1f9d5-1f3ff.png", + "sheet_x": 50, "sheet_y": 48, - "added_in": "9.0", + "added_in": "5.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + } + } + }, + { + "name": "WOMAN IN STEAMY ROOM", + "unified": "1F9D6-200D-2640-FE0F", + "non_qualified": "1F9D6-200D-2640", + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1f9d6-200d-2640-fe0f.png", + "sheet_x": 50, + "sheet_y": 49, + "short_name": "woman_in_steamy_room", + "short_names": ["woman_in_steamy_room"], + "text": null, + "texts": null, + "category": "People & Body", + "subcategory": "person-activity", + "sort_order": 435, + "added_in": "5.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true, + "skin_variations": { + "1F3FB": { + "unified": "1F9D6-1F3FB-200D-2640-FE0F", + "non_qualified": "1F9D6-1F3FB-200D-2640", + "image": "1f9d6-1f3fb-200d-2640-fe0f.png", + "sheet_x": 50, + "sheet_y": 50, + "added_in": "5.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FC": { + "unified": "1F9D6-1F3FC-200D-2640-FE0F", + "non_qualified": "1F9D6-1F3FC-200D-2640", + "image": "1f9d6-1f3fc-200d-2640-fe0f.png", + "sheet_x": 50, + "sheet_y": 51, + "added_in": "5.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FD": { + "unified": "1F9D6-1F3FD-200D-2640-FE0F", + "non_qualified": "1F9D6-1F3FD-200D-2640", + "image": "1f9d6-1f3fd-200d-2640-fe0f.png", + "sheet_x": 50, + "sheet_y": 52, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, "1F3FE": { - "unified": "1F935-1F3FE", - "non_qualified": null, - "image": "1f935-1f3fe.png", - "sheet_x": 39, - "sheet_y": 49, - "added_in": "9.0", + "unified": "1F9D6-1F3FE-200D-2640-FE0F", + "non_qualified": "1F9D6-1F3FE-200D-2640", + "image": "1f9d6-1f3fe-200d-2640-fe0f.png", + "sheet_x": 50, + "sheet_y": 53, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, "1F3FF": { - "unified": "1F935-1F3FF", - "non_qualified": null, - "image": "1f935-1f3ff.png", - "sheet_x": 39, - "sheet_y": 50, - "added_in": "9.0", + "unified": "1F9D6-1F3FF-200D-2640-FE0F", + "non_qualified": "1F9D6-1F3FF-200D-2640", + "image": "1f9d6-1f3ff-200d-2640-fe0f.png", + "sheet_x": 50, + "sheet_y": 54, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true } } }, { - "name": "MOTHER CHRISTMAS", - "unified": "1F936", - "non_qualified": null, + "name": "MAN IN STEAMY ROOM", + "unified": "1F9D6-200D-2642-FE0F", + "non_qualified": "1F9D6-200D-2642", "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f936.png", - "sheet_x": 39, - "sheet_y": 51, - "short_name": "mrs_claus", - "short_names": ["mrs_claus", "mother_christmas"], + "image": "1f9d6-200d-2642-fe0f.png", + "sheet_x": 50, + "sheet_y": 55, + "short_name": "man_in_steamy_room", + "short_names": ["man_in_steamy_room"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 193, - "added_in": "9.0", + "category": "People & Body", + "subcategory": "person-activity", + "sort_order": 434, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true, - "has_img_messenger": false, "skin_variations": { "1F3FB": { - "unified": "1F936-1F3FB", - "non_qualified": null, - "image": "1f936-1f3fb.png", - "sheet_x": 39, - "sheet_y": 52, - "added_in": "9.0", + "unified": "1F9D6-1F3FB-200D-2642-FE0F", + "non_qualified": "1F9D6-1F3FB-200D-2642", + "image": "1f9d6-1f3fb-200d-2642-fe0f.png", + "sheet_x": 50, + "sheet_y": 56, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true, - "has_img_messenger": false + "obsoletes": "1F9D6-1F3FB" }, "1F3FC": { - "unified": "1F936-1F3FC", - "non_qualified": null, - "image": "1f936-1f3fc.png", - "sheet_x": 40, - "sheet_y": 0, - "added_in": "9.0", + "unified": "1F9D6-1F3FC-200D-2642-FE0F", + "non_qualified": "1F9D6-1F3FC-200D-2642", + "image": "1f9d6-1f3fc-200d-2642-fe0f.png", + "sheet_x": 50, + "sheet_y": 57, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true, - "has_img_messenger": false + "obsoletes": "1F9D6-1F3FC" }, "1F3FD": { - "unified": "1F936-1F3FD", - "non_qualified": null, - "image": "1f936-1f3fd.png", - "sheet_x": 40, - "sheet_y": 1, - "added_in": "9.0", + "unified": "1F9D6-1F3FD-200D-2642-FE0F", + "non_qualified": "1F9D6-1F3FD-200D-2642", + "image": "1f9d6-1f3fd-200d-2642-fe0f.png", + "sheet_x": 50, + "sheet_y": 58, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true, - "has_img_messenger": false + "obsoletes": "1F9D6-1F3FD" }, "1F3FE": { - "unified": "1F936-1F3FE", - "non_qualified": null, - "image": "1f936-1f3fe.png", - "sheet_x": 40, - "sheet_y": 2, - "added_in": "9.0", + "unified": "1F9D6-1F3FE-200D-2642-FE0F", + "non_qualified": "1F9D6-1F3FE-200D-2642", + "image": "1f9d6-1f3fe-200d-2642-fe0f.png", + "sheet_x": 50, + "sheet_y": 59, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true, - "has_img_messenger": false + "obsoletes": "1F9D6-1F3FE" }, "1F3FF": { - "unified": "1F936-1F3FF", - "non_qualified": null, - "image": "1f936-1f3ff.png", - "sheet_x": 40, - "sheet_y": 3, - "added_in": "9.0", + "unified": "1F9D6-1F3FF-200D-2642-FE0F", + "non_qualified": "1F9D6-1F3FF-200D-2642", + "image": "1f9d6-1f3ff-200d-2642-fe0f.png", + "sheet_x": 50, + "sheet_y": 60, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true, - "has_img_messenger": false + "obsoletes": "1F9D6-1F3FF" } - } + }, + "obsoletes": "1F9D6" }, { - "name": null, - "unified": "1F937-200D-2640-FE0F", - "non_qualified": "1F937-200D-2640", + "name": "PERSON IN STEAMY ROOM", + "unified": "1F9D6", + "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f937-200d-2640-fe0f.png", - "sheet_x": 40, - "sheet_y": 4, - "short_name": "woman-shrugging", - "short_names": ["woman-shrugging"], + "image": "1f9d6.png", + "sheet_x": 51, + "sheet_y": 0, + "short_name": "person_in_steamy_room", + "short_names": ["person_in_steamy_room"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 241, - "added_in": "9.0", + "category": "People & Body", + "subcategory": "person-activity", + "sort_order": 433, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true, - "has_img_messenger": false, "skin_variations": { "1F3FB": { - "unified": "1F937-1F3FB-200D-2640-FE0F", - "non_qualified": "1F937-1F3FB-200D-2640", - "image": "1f937-1f3fb-200d-2640-fe0f.png", - "sheet_x": 40, - "sheet_y": 5, - "added_in": "9.0", + "unified": "1F9D6-1F3FB", + "non_qualified": null, + "image": "1f9d6-1f3fb.png", + "sheet_x": 51, + "sheet_y": 1, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false + "has_img_facebook": true, + "obsoleted_by": "1F9D6-1F3FB-200D-2642-FE0F" }, "1F3FC": { - "unified": "1F937-1F3FC-200D-2640-FE0F", - "non_qualified": "1F937-1F3FC-200D-2640", - "image": "1f937-1f3fc-200d-2640-fe0f.png", - "sheet_x": 40, - "sheet_y": 6, - "added_in": "9.0", + "unified": "1F9D6-1F3FC", + "non_qualified": null, + "image": "1f9d6-1f3fc.png", + "sheet_x": 51, + "sheet_y": 2, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false + "has_img_facebook": true, + "obsoleted_by": "1F9D6-1F3FC-200D-2642-FE0F" }, "1F3FD": { - "unified": "1F937-1F3FD-200D-2640-FE0F", - "non_qualified": "1F937-1F3FD-200D-2640", - "image": "1f937-1f3fd-200d-2640-fe0f.png", - "sheet_x": 40, - "sheet_y": 7, - "added_in": "9.0", + "unified": "1F9D6-1F3FD", + "non_qualified": null, + "image": "1f9d6-1f3fd.png", + "sheet_x": 51, + "sheet_y": 3, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false + "has_img_facebook": true, + "obsoleted_by": "1F9D6-1F3FD-200D-2642-FE0F" }, "1F3FE": { - "unified": "1F937-1F3FE-200D-2640-FE0F", - "non_qualified": "1F937-1F3FE-200D-2640", - "image": "1f937-1f3fe-200d-2640-fe0f.png", - "sheet_x": 40, - "sheet_y": 8, - "added_in": "9.0", + "unified": "1F9D6-1F3FE", + "non_qualified": null, + "image": "1f9d6-1f3fe.png", + "sheet_x": 51, + "sheet_y": 4, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false + "has_img_facebook": true, + "obsoleted_by": "1F9D6-1F3FE-200D-2642-FE0F" }, "1F3FF": { - "unified": "1F937-1F3FF-200D-2640-FE0F", - "non_qualified": "1F937-1F3FF-200D-2640", - "image": "1f937-1f3ff-200d-2640-fe0f.png", - "sheet_x": 40, - "sheet_y": 9, - "added_in": "9.0", + "unified": "1F9D6-1F3FF", + "non_qualified": null, + "image": "1f9d6-1f3ff.png", + "sheet_x": 51, + "sheet_y": 5, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false + "has_img_facebook": true, + "obsoleted_by": "1F9D6-1F3FF-200D-2642-FE0F" } - } + }, + "obsoleted_by": "1F9D6-200D-2642-FE0F" }, { - "name": null, - "unified": "1F937-200D-2642-FE0F", - "non_qualified": "1F937-200D-2642", + "name": "WOMAN CLIMBING", + "unified": "1F9D7-200D-2640-FE0F", + "non_qualified": "1F9D7-200D-2640", "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f937-200d-2642-fe0f.png", - "sheet_x": 40, - "sheet_y": 10, - "short_name": "man-shrugging", - "short_names": ["man-shrugging"], + "image": "1f9d7-200d-2640-fe0f.png", + "sheet_x": 51, + "sheet_y": 6, + "short_name": "woman_climbing", + "short_names": ["woman_climbing"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 240, - "added_in": "9.0", + "category": "People & Body", + "subcategory": "person-activity", + "sort_order": 438, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true, - "has_img_messenger": false, "skin_variations": { "1F3FB": { - "unified": "1F937-1F3FB-200D-2642-FE0F", - "non_qualified": "1F937-1F3FB-200D-2642", - "image": "1f937-1f3fb-200d-2642-fe0f.png", - "sheet_x": 40, - "sheet_y": 11, - "added_in": "9.0", + "unified": "1F9D7-1F3FB-200D-2640-FE0F", + "non_qualified": "1F9D7-1F3FB-200D-2640", + "image": "1f9d7-1f3fb-200d-2640-fe0f.png", + "sheet_x": 51, + "sheet_y": 7, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false + "has_img_facebook": true, + "obsoletes": "1F9D7-1F3FB" }, "1F3FC": { - "unified": "1F937-1F3FC-200D-2642-FE0F", - "non_qualified": "1F937-1F3FC-200D-2642", - "image": "1f937-1f3fc-200d-2642-fe0f.png", - "sheet_x": 40, - "sheet_y": 12, - "added_in": "9.0", + "unified": "1F9D7-1F3FC-200D-2640-FE0F", + "non_qualified": "1F9D7-1F3FC-200D-2640", + "image": "1f9d7-1f3fc-200d-2640-fe0f.png", + "sheet_x": 51, + "sheet_y": 8, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false + "has_img_facebook": true, + "obsoletes": "1F9D7-1F3FC" }, "1F3FD": { - "unified": "1F937-1F3FD-200D-2642-FE0F", - "non_qualified": "1F937-1F3FD-200D-2642", - "image": "1f937-1f3fd-200d-2642-fe0f.png", - "sheet_x": 40, - "sheet_y": 13, - "added_in": "9.0", + "unified": "1F9D7-1F3FD-200D-2640-FE0F", + "non_qualified": "1F9D7-1F3FD-200D-2640", + "image": "1f9d7-1f3fd-200d-2640-fe0f.png", + "sheet_x": 51, + "sheet_y": 9, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false + "has_img_facebook": true, + "obsoletes": "1F9D7-1F3FD" }, "1F3FE": { - "unified": "1F937-1F3FE-200D-2642-FE0F", - "non_qualified": "1F937-1F3FE-200D-2642", - "image": "1f937-1f3fe-200d-2642-fe0f.png", - "sheet_x": 40, - "sheet_y": 14, - "added_in": "9.0", + "unified": "1F9D7-1F3FE-200D-2640-FE0F", + "non_qualified": "1F9D7-1F3FE-200D-2640", + "image": "1f9d7-1f3fe-200d-2640-fe0f.png", + "sheet_x": 51, + "sheet_y": 10, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false + "has_img_facebook": true, + "obsoletes": "1F9D7-1F3FE" }, "1F3FF": { - "unified": "1F937-1F3FF-200D-2642-FE0F", - "non_qualified": "1F937-1F3FF-200D-2642", - "image": "1f937-1f3ff-200d-2642-fe0f.png", - "sheet_x": 40, - "sheet_y": 15, - "added_in": "9.0", + "unified": "1F9D7-1F3FF-200D-2640-FE0F", + "non_qualified": "1F9D7-1F3FF-200D-2640", + "image": "1f9d7-1f3ff-200d-2640-fe0f.png", + "sheet_x": 51, + "sheet_y": 11, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false + "has_img_facebook": true, + "obsoletes": "1F9D7-1F3FF" } - } + }, + "obsoletes": "1F9D7" }, { - "name": "SHRUG", - "unified": "1F937", - "non_qualified": null, + "name": "MAN CLIMBING", + "unified": "1F9D7-200D-2642-FE0F", + "non_qualified": "1F9D7-200D-2642", "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f937.png", - "sheet_x": 40, - "sheet_y": 16, - "short_name": "shrug", - "short_names": ["shrug"], + "image": "1f9d7-200d-2642-fe0f.png", + "sheet_x": 51, + "sheet_y": 12, + "short_name": "man_climbing", + "short_names": ["man_climbing"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 239, - "added_in": "9.0", + "category": "People & Body", + "subcategory": "person-activity", + "sort_order": 437, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false, + "has_img_facebook": true, "skin_variations": { "1F3FB": { - "unified": "1F937-1F3FB", - "non_qualified": null, - "image": "1f937-1f3fb.png", - "sheet_x": 40, - "sheet_y": 17, - "added_in": "9.0", + "unified": "1F9D7-1F3FB-200D-2642-FE0F", + "non_qualified": "1F9D7-1F3FB-200D-2642", + "image": "1f9d7-1f3fb-200d-2642-fe0f.png", + "sheet_x": 51, + "sheet_y": 13, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false + "has_img_facebook": true }, "1F3FC": { - "unified": "1F937-1F3FC", - "non_qualified": null, - "image": "1f937-1f3fc.png", - "sheet_x": 40, - "sheet_y": 18, - "added_in": "9.0", + "unified": "1F9D7-1F3FC-200D-2642-FE0F", + "non_qualified": "1F9D7-1F3FC-200D-2642", + "image": "1f9d7-1f3fc-200d-2642-fe0f.png", + "sheet_x": 51, + "sheet_y": 14, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false + "has_img_facebook": true }, "1F3FD": { - "unified": "1F937-1F3FD", - "non_qualified": null, - "image": "1f937-1f3fd.png", - "sheet_x": 40, - "sheet_y": 19, - "added_in": "9.0", + "unified": "1F9D7-1F3FD-200D-2642-FE0F", + "non_qualified": "1F9D7-1F3FD-200D-2642", + "image": "1f9d7-1f3fd-200d-2642-fe0f.png", + "sheet_x": 51, + "sheet_y": 15, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false + "has_img_facebook": true }, "1F3FE": { - "unified": "1F937-1F3FE", - "non_qualified": null, - "image": "1f937-1f3fe.png", - "sheet_x": 40, - "sheet_y": 20, - "added_in": "9.0", + "unified": "1F9D7-1F3FE-200D-2642-FE0F", + "non_qualified": "1F9D7-1F3FE-200D-2642", + "image": "1f9d7-1f3fe-200d-2642-fe0f.png", + "sheet_x": 51, + "sheet_y": 16, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false + "has_img_facebook": true }, "1F3FF": { - "unified": "1F937-1F3FF", - "non_qualified": null, - "image": "1f937-1f3ff.png", - "sheet_x": 40, - "sheet_y": 21, - "added_in": "9.0", + "unified": "1F9D7-1F3FF-200D-2642-FE0F", + "non_qualified": "1F9D7-1F3FF-200D-2642", + "image": "1f9d7-1f3ff-200d-2642-fe0f.png", + "sheet_x": 51, + "sheet_y": 17, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false + "has_img_facebook": true } } }, { - "name": null, - "unified": "1F938-200D-2640-FE0F", - "non_qualified": "1F938-200D-2640", + "name": "PERSON CLIMBING", + "unified": "1F9D7", + "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f938-200d-2640-fe0f.png", - "sheet_x": 40, - "sheet_y": 22, - "short_name": "woman-cartwheeling", - "short_names": ["woman-cartwheeling"], + "image": "1f9d7.png", + "sheet_x": 51, + "sheet_y": 18, + "short_name": "person_climbing", + "short_names": ["person_climbing"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 306, - "added_in": "9.0", + "category": "People & Body", + "subcategory": "person-activity", + "sort_order": 436, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true, - "has_img_messenger": false, "skin_variations": { "1F3FB": { - "unified": "1F938-1F3FB-200D-2640-FE0F", - "non_qualified": "1F938-1F3FB-200D-2640", - "image": "1f938-1f3fb-200d-2640-fe0f.png", - "sheet_x": 40, - "sheet_y": 23, - "added_in": "9.0", + "unified": "1F9D7-1F3FB", + "non_qualified": null, + "image": "1f9d7-1f3fb.png", + "sheet_x": 51, + "sheet_y": 19, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false + "has_img_facebook": true, + "obsoleted_by": "1F9D7-1F3FB-200D-2640-FE0F" }, "1F3FC": { - "unified": "1F938-1F3FC-200D-2640-FE0F", - "non_qualified": "1F938-1F3FC-200D-2640", - "image": "1f938-1f3fc-200d-2640-fe0f.png", - "sheet_x": 40, - "sheet_y": 24, - "added_in": "9.0", + "unified": "1F9D7-1F3FC", + "non_qualified": null, + "image": "1f9d7-1f3fc.png", + "sheet_x": 51, + "sheet_y": 20, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false + "has_img_facebook": true, + "obsoleted_by": "1F9D7-1F3FC-200D-2640-FE0F" }, "1F3FD": { - "unified": "1F938-1F3FD-200D-2640-FE0F", - "non_qualified": "1F938-1F3FD-200D-2640", - "image": "1f938-1f3fd-200d-2640-fe0f.png", - "sheet_x": 40, - "sheet_y": 25, - "added_in": "9.0", + "unified": "1F9D7-1F3FD", + "non_qualified": null, + "image": "1f9d7-1f3fd.png", + "sheet_x": 51, + "sheet_y": 21, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false + "has_img_facebook": true, + "obsoleted_by": "1F9D7-1F3FD-200D-2640-FE0F" }, "1F3FE": { - "unified": "1F938-1F3FE-200D-2640-FE0F", - "non_qualified": "1F938-1F3FE-200D-2640", - "image": "1f938-1f3fe-200d-2640-fe0f.png", - "sheet_x": 40, - "sheet_y": 26, - "added_in": "9.0", + "unified": "1F9D7-1F3FE", + "non_qualified": null, + "image": "1f9d7-1f3fe.png", + "sheet_x": 51, + "sheet_y": 22, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false + "has_img_facebook": true, + "obsoleted_by": "1F9D7-1F3FE-200D-2640-FE0F" }, "1F3FF": { - "unified": "1F938-1F3FF-200D-2640-FE0F", - "non_qualified": "1F938-1F3FF-200D-2640", - "image": "1f938-1f3ff-200d-2640-fe0f.png", - "sheet_x": 40, - "sheet_y": 27, - "added_in": "9.0", + "unified": "1F9D7-1F3FF", + "non_qualified": null, + "image": "1f9d7-1f3ff.png", + "sheet_x": 51, + "sheet_y": 23, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false + "has_img_facebook": true, + "obsoleted_by": "1F9D7-1F3FF-200D-2640-FE0F" } - } + }, + "obsoleted_by": "1F9D7-200D-2640-FE0F" }, { - "name": null, - "unified": "1F938-200D-2642-FE0F", - "non_qualified": "1F938-200D-2642", + "name": "WOMAN IN LOTUS POSITION", + "unified": "1F9D8-200D-2640-FE0F", + "non_qualified": "1F9D8-200D-2640", "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f938-200d-2642-fe0f.png", - "sheet_x": 40, - "sheet_y": 28, - "short_name": "man-cartwheeling", - "short_names": ["man-cartwheeling"], + "image": "1f9d8-200d-2640-fe0f.png", + "sheet_x": 51, + "sheet_y": 24, + "short_name": "woman_in_lotus_position", + "short_names": ["woman_in_lotus_position"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 305, - "added_in": "9.0", + "category": "People & Body", + "subcategory": "person-resting", + "sort_order": 484, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true, - "has_img_messenger": false, "skin_variations": { "1F3FB": { - "unified": "1F938-1F3FB-200D-2642-FE0F", - "non_qualified": "1F938-1F3FB-200D-2642", - "image": "1f938-1f3fb-200d-2642-fe0f.png", - "sheet_x": 40, - "sheet_y": 29, - "added_in": "9.0", + "unified": "1F9D8-1F3FB-200D-2640-FE0F", + "non_qualified": "1F9D8-1F3FB-200D-2640", + "image": "1f9d8-1f3fb-200d-2640-fe0f.png", + "sheet_x": 51, + "sheet_y": 25, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false + "has_img_facebook": true, + "obsoletes": "1F9D8-1F3FB" }, "1F3FC": { - "unified": "1F938-1F3FC-200D-2642-FE0F", - "non_qualified": "1F938-1F3FC-200D-2642", - "image": "1f938-1f3fc-200d-2642-fe0f.png", - "sheet_x": 40, - "sheet_y": 30, - "added_in": "9.0", + "unified": "1F9D8-1F3FC-200D-2640-FE0F", + "non_qualified": "1F9D8-1F3FC-200D-2640", + "image": "1f9d8-1f3fc-200d-2640-fe0f.png", + "sheet_x": 51, + "sheet_y": 26, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false + "has_img_facebook": true, + "obsoletes": "1F9D8-1F3FC" }, "1F3FD": { - "unified": "1F938-1F3FD-200D-2642-FE0F", - "non_qualified": "1F938-1F3FD-200D-2642", - "image": "1f938-1f3fd-200d-2642-fe0f.png", - "sheet_x": 40, - "sheet_y": 31, - "added_in": "9.0", + "unified": "1F9D8-1F3FD-200D-2640-FE0F", + "non_qualified": "1F9D8-1F3FD-200D-2640", + "image": "1f9d8-1f3fd-200d-2640-fe0f.png", + "sheet_x": 51, + "sheet_y": 27, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false + "has_img_facebook": true, + "obsoletes": "1F9D8-1F3FD" }, "1F3FE": { - "unified": "1F938-1F3FE-200D-2642-FE0F", - "non_qualified": "1F938-1F3FE-200D-2642", - "image": "1f938-1f3fe-200d-2642-fe0f.png", - "sheet_x": 40, - "sheet_y": 32, - "added_in": "9.0", + "unified": "1F9D8-1F3FE-200D-2640-FE0F", + "non_qualified": "1F9D8-1F3FE-200D-2640", + "image": "1f9d8-1f3fe-200d-2640-fe0f.png", + "sheet_x": 51, + "sheet_y": 28, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false + "has_img_facebook": true, + "obsoletes": "1F9D8-1F3FE" }, "1F3FF": { - "unified": "1F938-1F3FF-200D-2642-FE0F", - "non_qualified": "1F938-1F3FF-200D-2642", - "image": "1f938-1f3ff-200d-2642-fe0f.png", - "sheet_x": 40, - "sheet_y": 33, - "added_in": "9.0", + "unified": "1F9D8-1F3FF-200D-2640-FE0F", + "non_qualified": "1F9D8-1F3FF-200D-2640", + "image": "1f9d8-1f3ff-200d-2640-fe0f.png", + "sheet_x": 51, + "sheet_y": 29, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false + "has_img_facebook": true, + "obsoletes": "1F9D8-1F3FF" } - } + }, + "obsoletes": "1F9D8" }, { - "name": "PERSON DOING CARTWHEEL", - "unified": "1F938", - "non_qualified": null, + "name": "MAN IN LOTUS POSITION", + "unified": "1F9D8-200D-2642-FE0F", + "non_qualified": "1F9D8-200D-2642", "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f938.png", - "sheet_x": 40, - "sheet_y": 34, - "short_name": "person_doing_cartwheel", - "short_names": ["person_doing_cartwheel"], + "image": "1f9d8-200d-2642-fe0f.png", + "sheet_x": 51, + "sheet_y": 30, + "short_name": "man_in_lotus_position", + "short_names": ["man_in_lotus_position"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 304, - "added_in": "9.0", + "category": "People & Body", + "subcategory": "person-resting", + "sort_order": 483, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false, + "has_img_facebook": true, "skin_variations": { "1F3FB": { - "unified": "1F938-1F3FB", - "non_qualified": null, - "image": "1f938-1f3fb.png", - "sheet_x": 40, - "sheet_y": 35, - "added_in": "9.0", + "unified": "1F9D8-1F3FB-200D-2642-FE0F", + "non_qualified": "1F9D8-1F3FB-200D-2642", + "image": "1f9d8-1f3fb-200d-2642-fe0f.png", + "sheet_x": 51, + "sheet_y": 31, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false + "has_img_facebook": true }, "1F3FC": { - "unified": "1F938-1F3FC", - "non_qualified": null, - "image": "1f938-1f3fc.png", - "sheet_x": 40, - "sheet_y": 36, - "added_in": "9.0", + "unified": "1F9D8-1F3FC-200D-2642-FE0F", + "non_qualified": "1F9D8-1F3FC-200D-2642", + "image": "1f9d8-1f3fc-200d-2642-fe0f.png", + "sheet_x": 51, + "sheet_y": 32, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false + "has_img_facebook": true }, "1F3FD": { - "unified": "1F938-1F3FD", - "non_qualified": null, - "image": "1f938-1f3fd.png", - "sheet_x": 40, - "sheet_y": 37, - "added_in": "9.0", + "unified": "1F9D8-1F3FD-200D-2642-FE0F", + "non_qualified": "1F9D8-1F3FD-200D-2642", + "image": "1f9d8-1f3fd-200d-2642-fe0f.png", + "sheet_x": 51, + "sheet_y": 33, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false + "has_img_facebook": true }, "1F3FE": { - "unified": "1F938-1F3FE", - "non_qualified": null, - "image": "1f938-1f3fe.png", - "sheet_x": 40, - "sheet_y": 38, - "added_in": "9.0", + "unified": "1F9D8-1F3FE-200D-2642-FE0F", + "non_qualified": "1F9D8-1F3FE-200D-2642", + "image": "1f9d8-1f3fe-200d-2642-fe0f.png", + "sheet_x": 51, + "sheet_y": 34, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false + "has_img_facebook": true }, "1F3FF": { - "unified": "1F938-1F3FF", - "non_qualified": null, - "image": "1f938-1f3ff.png", - "sheet_x": 40, - "sheet_y": 39, - "added_in": "9.0", + "unified": "1F9D8-1F3FF-200D-2642-FE0F", + "non_qualified": "1F9D8-1F3FF-200D-2642", + "image": "1f9d8-1f3ff-200d-2642-fe0f.png", + "sheet_x": 51, + "sheet_y": 35, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false + "has_img_facebook": true } } }, { - "name": null, - "unified": "1F939-200D-2640-FE0F", - "non_qualified": "1F939-200D-2640", + "name": "PERSON IN LOTUS POSITION", + "unified": "1F9D8", + "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f939-200d-2640-fe0f.png", - "sheet_x": 40, - "sheet_y": 40, - "short_name": "woman-juggling", - "short_names": ["woman-juggling"], + "image": "1f9d8.png", + "sheet_x": 51, + "sheet_y": 36, + "short_name": "person_in_lotus_position", + "short_names": ["person_in_lotus_position"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 318, - "added_in": "9.0", + "category": "People & Body", + "subcategory": "person-resting", + "sort_order": 482, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false, + "has_img_facebook": true, "skin_variations": { "1F3FB": { - "unified": "1F939-1F3FB-200D-2640-FE0F", - "non_qualified": "1F939-1F3FB-200D-2640", - "image": "1f939-1f3fb-200d-2640-fe0f.png", - "sheet_x": 40, - "sheet_y": 41, - "added_in": "9.0", + "unified": "1F9D8-1F3FB", + "non_qualified": null, + "image": "1f9d8-1f3fb.png", + "sheet_x": 51, + "sheet_y": 37, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false + "has_img_facebook": true, + "obsoleted_by": "1F9D8-1F3FB-200D-2640-FE0F" }, "1F3FC": { - "unified": "1F939-1F3FC-200D-2640-FE0F", - "non_qualified": "1F939-1F3FC-200D-2640", - "image": "1f939-1f3fc-200d-2640-fe0f.png", - "sheet_x": 40, - "sheet_y": 42, - "added_in": "9.0", + "unified": "1F9D8-1F3FC", + "non_qualified": null, + "image": "1f9d8-1f3fc.png", + "sheet_x": 51, + "sheet_y": 38, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false + "has_img_facebook": true, + "obsoleted_by": "1F9D8-1F3FC-200D-2640-FE0F" }, "1F3FD": { - "unified": "1F939-1F3FD-200D-2640-FE0F", - "non_qualified": "1F939-1F3FD-200D-2640", - "image": "1f939-1f3fd-200d-2640-fe0f.png", - "sheet_x": 40, - "sheet_y": 43, - "added_in": "9.0", + "unified": "1F9D8-1F3FD", + "non_qualified": null, + "image": "1f9d8-1f3fd.png", + "sheet_x": 51, + "sheet_y": 39, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false + "has_img_facebook": true, + "obsoleted_by": "1F9D8-1F3FD-200D-2640-FE0F" }, "1F3FE": { - "unified": "1F939-1F3FE-200D-2640-FE0F", - "non_qualified": "1F939-1F3FE-200D-2640", - "image": "1f939-1f3fe-200d-2640-fe0f.png", - "sheet_x": 40, - "sheet_y": 44, - "added_in": "9.0", + "unified": "1F9D8-1F3FE", + "non_qualified": null, + "image": "1f9d8-1f3fe.png", + "sheet_x": 51, + "sheet_y": 40, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false + "has_img_facebook": true, + "obsoleted_by": "1F9D8-1F3FE-200D-2640-FE0F" }, "1F3FF": { - "unified": "1F939-1F3FF-200D-2640-FE0F", - "non_qualified": "1F939-1F3FF-200D-2640", - "image": "1f939-1f3ff-200d-2640-fe0f.png", - "sheet_x": 40, - "sheet_y": 45, - "added_in": "9.0", + "unified": "1F9D8-1F3FF", + "non_qualified": null, + "image": "1f9d8-1f3ff.png", + "sheet_x": 51, + "sheet_y": 41, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false + "has_img_facebook": true, + "obsoleted_by": "1F9D8-1F3FF-200D-2640-FE0F" } - } + }, + "obsoleted_by": "1F9D8-200D-2640-FE0F" }, { - "name": null, - "unified": "1F939-200D-2642-FE0F", - "non_qualified": "1F939-200D-2642", + "name": "WOMAN MAGE", + "unified": "1F9D9-200D-2640-FE0F", + "non_qualified": "1F9D9-200D-2640", "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f939-200d-2642-fe0f.png", - "sheet_x": 40, - "sheet_y": 46, - "short_name": "man-juggling", - "short_names": ["man-juggling"], + "image": "1f9d9-200d-2640-fe0f.png", + "sheet_x": 51, + "sheet_y": 42, + "short_name": "female_mage", + "short_names": ["female_mage"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 317, - "added_in": "9.0", + "category": "People & Body", + "subcategory": "person-fantasy", + "sort_order": 380, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false, + "has_img_facebook": true, "skin_variations": { "1F3FB": { - "unified": "1F939-1F3FB-200D-2642-FE0F", - "non_qualified": "1F939-1F3FB-200D-2642", - "image": "1f939-1f3fb-200d-2642-fe0f.png", - "sheet_x": 40, - "sheet_y": 47, - "added_in": "9.0", + "unified": "1F9D9-1F3FB-200D-2640-FE0F", + "non_qualified": "1F9D9-1F3FB-200D-2640", + "image": "1f9d9-1f3fb-200d-2640-fe0f.png", + "sheet_x": 51, + "sheet_y": 43, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false + "has_img_facebook": true, + "obsoletes": "1F9D9-1F3FB" }, "1F3FC": { - "unified": "1F939-1F3FC-200D-2642-FE0F", - "non_qualified": "1F939-1F3FC-200D-2642", - "image": "1f939-1f3fc-200d-2642-fe0f.png", - "sheet_x": 40, - "sheet_y": 48, - "added_in": "9.0", + "unified": "1F9D9-1F3FC-200D-2640-FE0F", + "non_qualified": "1F9D9-1F3FC-200D-2640", + "image": "1f9d9-1f3fc-200d-2640-fe0f.png", + "sheet_x": 51, + "sheet_y": 44, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false + "has_img_facebook": true, + "obsoletes": "1F9D9-1F3FC" }, "1F3FD": { - "unified": "1F939-1F3FD-200D-2642-FE0F", - "non_qualified": "1F939-1F3FD-200D-2642", - "image": "1f939-1f3fd-200d-2642-fe0f.png", - "sheet_x": 40, - "sheet_y": 49, - "added_in": "9.0", + "unified": "1F9D9-1F3FD-200D-2640-FE0F", + "non_qualified": "1F9D9-1F3FD-200D-2640", + "image": "1f9d9-1f3fd-200d-2640-fe0f.png", + "sheet_x": 51, + "sheet_y": 45, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false + "has_img_facebook": true, + "obsoletes": "1F9D9-1F3FD" }, "1F3FE": { - "unified": "1F939-1F3FE-200D-2642-FE0F", - "non_qualified": "1F939-1F3FE-200D-2642", - "image": "1f939-1f3fe-200d-2642-fe0f.png", - "sheet_x": 40, - "sheet_y": 50, - "added_in": "9.0", + "unified": "1F9D9-1F3FE-200D-2640-FE0F", + "non_qualified": "1F9D9-1F3FE-200D-2640", + "image": "1f9d9-1f3fe-200d-2640-fe0f.png", + "sheet_x": 51, + "sheet_y": 46, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false + "has_img_facebook": true, + "obsoletes": "1F9D9-1F3FE" }, "1F3FF": { - "unified": "1F939-1F3FF-200D-2642-FE0F", - "non_qualified": "1F939-1F3FF-200D-2642", - "image": "1f939-1f3ff-200d-2642-fe0f.png", - "sheet_x": 40, - "sheet_y": 51, - "added_in": "9.0", + "unified": "1F9D9-1F3FF-200D-2640-FE0F", + "non_qualified": "1F9D9-1F3FF-200D-2640", + "image": "1f9d9-1f3ff-200d-2640-fe0f.png", + "sheet_x": 51, + "sheet_y": 47, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false + "has_img_facebook": true, + "obsoletes": "1F9D9-1F3FF" } - } + }, + "obsoletes": "1F9D9" }, { - "name": "JUGGLING", - "unified": "1F939", - "non_qualified": null, + "name": "MAN MAGE", + "unified": "1F9D9-200D-2642-FE0F", + "non_qualified": "1F9D9-200D-2642", "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f939.png", - "sheet_x": 40, - "sheet_y": 52, - "short_name": "juggling", - "short_names": ["juggling"], + "image": "1f9d9-200d-2642-fe0f.png", + "sheet_x": 51, + "sheet_y": 48, + "short_name": "male_mage", + "short_names": ["male_mage"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 316, - "added_in": "9.0", + "category": "People & Body", + "subcategory": "person-fantasy", + "sort_order": 379, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true, - "has_img_messenger": false, "skin_variations": { "1F3FB": { - "unified": "1F939-1F3FB", - "non_qualified": null, - "image": "1f939-1f3fb.png", - "sheet_x": 41, - "sheet_y": 0, - "added_in": "9.0", + "unified": "1F9D9-1F3FB-200D-2642-FE0F", + "non_qualified": "1F9D9-1F3FB-200D-2642", + "image": "1f9d9-1f3fb-200d-2642-fe0f.png", + "sheet_x": 51, + "sheet_y": 49, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, "1F3FC": { - "unified": "1F939-1F3FC", - "non_qualified": null, - "image": "1f939-1f3fc.png", - "sheet_x": 41, - "sheet_y": 1, - "added_in": "9.0", + "unified": "1F9D9-1F3FC-200D-2642-FE0F", + "non_qualified": "1F9D9-1F3FC-200D-2642", + "image": "1f9d9-1f3fc-200d-2642-fe0f.png", + "sheet_x": 51, + "sheet_y": 50, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, "1F3FD": { - "unified": "1F939-1F3FD", - "non_qualified": null, - "image": "1f939-1f3fd.png", - "sheet_x": 41, - "sheet_y": 2, - "added_in": "9.0", + "unified": "1F9D9-1F3FD-200D-2642-FE0F", + "non_qualified": "1F9D9-1F3FD-200D-2642", + "image": "1f9d9-1f3fd-200d-2642-fe0f.png", + "sheet_x": 51, + "sheet_y": 51, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, "1F3FE": { - "unified": "1F939-1F3FE", - "non_qualified": null, - "image": "1f939-1f3fe.png", - "sheet_x": 41, - "sheet_y": 3, - "added_in": "9.0", + "unified": "1F9D9-1F3FE-200D-2642-FE0F", + "non_qualified": "1F9D9-1F3FE-200D-2642", + "image": "1f9d9-1f3fe-200d-2642-fe0f.png", + "sheet_x": 51, + "sheet_y": 52, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, "1F3FF": { - "unified": "1F939-1F3FF", - "non_qualified": null, - "image": "1f939-1f3ff.png", - "sheet_x": 41, - "sheet_y": 4, - "added_in": "9.0", + "unified": "1F9D9-1F3FF-200D-2642-FE0F", + "non_qualified": "1F9D9-1F3FF-200D-2642", + "image": "1f9d9-1f3ff-200d-2642-fe0f.png", + "sheet_x": 51, + "sheet_y": 53, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true } } }, { - "name": "FENCER", - "unified": "1F93A", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f93a.png", - "sheet_x": 41, - "sheet_y": 5, - "short_name": "fencer", - "short_names": ["fencer"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 274, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - { - "name": null, - "unified": "1F93C-200D-2640-FE0F", - "non_qualified": "1F93C-200D-2640", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f93c-200d-2640-fe0f.png", - "sheet_x": 41, - "sheet_y": 6, - "short_name": "woman-wrestling", - "short_names": ["woman-wrestling"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 309, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - { - "name": null, - "unified": "1F93C-200D-2642-FE0F", - "non_qualified": "1F93C-200D-2642", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f93c-200d-2642-fe0f.png", - "sheet_x": 41, - "sheet_y": 7, - "short_name": "man-wrestling", - "short_names": ["man-wrestling"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 308, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - { - "name": "WRESTLERS", - "unified": "1F93C", + "name": "MAGE", + "unified": "1F9D9", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f93c.png", - "sheet_x": 41, - "sheet_y": 8, - "short_name": "wrestlers", - "short_names": ["wrestlers"], - "text": null, - "texts": null, - "category": "Smileys & People", - "sort_order": 307, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - { - "name": null, - "unified": "1F93D-200D-2640-FE0F", - "non_qualified": "1F93D-200D-2640", - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f93d-200d-2640-fe0f.png", - "sheet_x": 41, - "sheet_y": 9, - "short_name": "woman-playing-water-polo", - "short_names": ["woman-playing-water-polo"], + "image": "1f9d9.png", + "sheet_x": 51, + "sheet_y": 54, + "short_name": "mage", + "short_names": ["mage"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 312, - "added_in": "9.0", + "category": "People & Body", + "subcategory": "person-fantasy", + "sort_order": 378, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true, - "has_img_messenger": false, "skin_variations": { "1F3FB": { - "unified": "1F93D-1F3FB-200D-2640-FE0F", - "non_qualified": "1F93D-1F3FB-200D-2640", - "image": "1f93d-1f3fb-200d-2640-fe0f.png", - "sheet_x": 41, - "sheet_y": 10, - "added_in": "9.0", + "unified": "1F9D9-1F3FB", + "non_qualified": null, + "image": "1f9d9-1f3fb.png", + "sheet_x": 51, + "sheet_y": 55, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false + "has_img_facebook": true, + "obsoleted_by": "1F9D9-1F3FB-200D-2640-FE0F" }, "1F3FC": { - "unified": "1F93D-1F3FC-200D-2640-FE0F", - "non_qualified": "1F93D-1F3FC-200D-2640", - "image": "1f93d-1f3fc-200d-2640-fe0f.png", - "sheet_x": 41, - "sheet_y": 11, - "added_in": "9.0", + "unified": "1F9D9-1F3FC", + "non_qualified": null, + "image": "1f9d9-1f3fc.png", + "sheet_x": 51, + "sheet_y": 56, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false + "has_img_facebook": true, + "obsoleted_by": "1F9D9-1F3FC-200D-2640-FE0F" }, "1F3FD": { - "unified": "1F93D-1F3FD-200D-2640-FE0F", - "non_qualified": "1F93D-1F3FD-200D-2640", - "image": "1f93d-1f3fd-200d-2640-fe0f.png", - "sheet_x": 41, - "sheet_y": 12, - "added_in": "9.0", + "unified": "1F9D9-1F3FD", + "non_qualified": null, + "image": "1f9d9-1f3fd.png", + "sheet_x": 51, + "sheet_y": 57, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false + "has_img_facebook": true, + "obsoleted_by": "1F9D9-1F3FD-200D-2640-FE0F" }, "1F3FE": { - "unified": "1F93D-1F3FE-200D-2640-FE0F", - "non_qualified": "1F93D-1F3FE-200D-2640", - "image": "1f93d-1f3fe-200d-2640-fe0f.png", - "sheet_x": 41, - "sheet_y": 13, - "added_in": "9.0", + "unified": "1F9D9-1F3FE", + "non_qualified": null, + "image": "1f9d9-1f3fe.png", + "sheet_x": 51, + "sheet_y": 58, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false + "has_img_facebook": true, + "obsoleted_by": "1F9D9-1F3FE-200D-2640-FE0F" }, "1F3FF": { - "unified": "1F93D-1F3FF-200D-2640-FE0F", - "non_qualified": "1F93D-1F3FF-200D-2640", - "image": "1f93d-1f3ff-200d-2640-fe0f.png", - "sheet_x": 41, - "sheet_y": 14, - "added_in": "9.0", + "unified": "1F9D9-1F3FF", + "non_qualified": null, + "image": "1f9d9-1f3ff.png", + "sheet_x": 51, + "sheet_y": 59, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false + "has_img_facebook": true, + "obsoleted_by": "1F9D9-1F3FF-200D-2640-FE0F" } - } + }, + "obsoleted_by": "1F9D9-200D-2640-FE0F" }, { - "name": null, - "unified": "1F93D-200D-2642-FE0F", - "non_qualified": "1F93D-200D-2642", + "name": "WOMAN FAIRY", + "unified": "1F9DA-200D-2640-FE0F", + "non_qualified": "1F9DA-200D-2640", "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f93d-200d-2642-fe0f.png", - "sheet_x": 41, - "sheet_y": 15, - "short_name": "man-playing-water-polo", - "short_names": ["man-playing-water-polo"], + "image": "1f9da-200d-2640-fe0f.png", + "sheet_x": 51, + "sheet_y": 60, + "short_name": "female_fairy", + "short_names": ["female_fairy"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 311, - "added_in": "9.0", + "category": "People & Body", + "subcategory": "person-fantasy", + "sort_order": 383, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true, - "has_img_messenger": false, "skin_variations": { "1F3FB": { - "unified": "1F93D-1F3FB-200D-2642-FE0F", - "non_qualified": "1F93D-1F3FB-200D-2642", - "image": "1f93d-1f3fb-200d-2642-fe0f.png", - "sheet_x": 41, - "sheet_y": 16, - "added_in": "9.0", + "unified": "1F9DA-1F3FB-200D-2640-FE0F", + "non_qualified": "1F9DA-1F3FB-200D-2640", + "image": "1f9da-1f3fb-200d-2640-fe0f.png", + "sheet_x": 52, + "sheet_y": 0, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false + "has_img_facebook": true, + "obsoletes": "1F9DA-1F3FB" }, "1F3FC": { - "unified": "1F93D-1F3FC-200D-2642-FE0F", - "non_qualified": "1F93D-1F3FC-200D-2642", - "image": "1f93d-1f3fc-200d-2642-fe0f.png", - "sheet_x": 41, - "sheet_y": 17, - "added_in": "9.0", + "unified": "1F9DA-1F3FC-200D-2640-FE0F", + "non_qualified": "1F9DA-1F3FC-200D-2640", + "image": "1f9da-1f3fc-200d-2640-fe0f.png", + "sheet_x": 52, + "sheet_y": 1, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false + "has_img_facebook": true, + "obsoletes": "1F9DA-1F3FC" }, "1F3FD": { - "unified": "1F93D-1F3FD-200D-2642-FE0F", - "non_qualified": "1F93D-1F3FD-200D-2642", - "image": "1f93d-1f3fd-200d-2642-fe0f.png", - "sheet_x": 41, - "sheet_y": 18, - "added_in": "9.0", + "unified": "1F9DA-1F3FD-200D-2640-FE0F", + "non_qualified": "1F9DA-1F3FD-200D-2640", + "image": "1f9da-1f3fd-200d-2640-fe0f.png", + "sheet_x": 52, + "sheet_y": 2, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false + "has_img_facebook": true, + "obsoletes": "1F9DA-1F3FD" }, "1F3FE": { - "unified": "1F93D-1F3FE-200D-2642-FE0F", - "non_qualified": "1F93D-1F3FE-200D-2642", - "image": "1f93d-1f3fe-200d-2642-fe0f.png", - "sheet_x": 41, - "sheet_y": 19, - "added_in": "9.0", + "unified": "1F9DA-1F3FE-200D-2640-FE0F", + "non_qualified": "1F9DA-1F3FE-200D-2640", + "image": "1f9da-1f3fe-200d-2640-fe0f.png", + "sheet_x": 52, + "sheet_y": 3, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false + "has_img_facebook": true, + "obsoletes": "1F9DA-1F3FE" }, "1F3FF": { - "unified": "1F93D-1F3FF-200D-2642-FE0F", - "non_qualified": "1F93D-1F3FF-200D-2642", - "image": "1f93d-1f3ff-200d-2642-fe0f.png", - "sheet_x": 41, - "sheet_y": 20, - "added_in": "9.0", + "unified": "1F9DA-1F3FF-200D-2640-FE0F", + "non_qualified": "1F9DA-1F3FF-200D-2640", + "image": "1f9da-1f3ff-200d-2640-fe0f.png", + "sheet_x": 52, + "sheet_y": 4, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false + "has_img_facebook": true, + "obsoletes": "1F9DA-1F3FF" } - } + }, + "obsoletes": "1F9DA" }, { - "name": "WATER POLO", - "unified": "1F93D", - "non_qualified": null, + "name": "MAN FAIRY", + "unified": "1F9DA-200D-2642-FE0F", + "non_qualified": "1F9DA-200D-2642", "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f93d.png", - "sheet_x": 41, - "sheet_y": 21, - "short_name": "water_polo", - "short_names": ["water_polo"], + "image": "1f9da-200d-2642-fe0f.png", + "sheet_x": 52, + "sheet_y": 5, + "short_name": "male_fairy", + "short_names": ["male_fairy"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 310, - "added_in": "9.0", + "category": "People & Body", + "subcategory": "person-fantasy", + "sort_order": 382, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false, + "has_img_facebook": true, "skin_variations": { "1F3FB": { - "unified": "1F93D-1F3FB", - "non_qualified": null, - "image": "1f93d-1f3fb.png", - "sheet_x": 41, - "sheet_y": 22, - "added_in": "9.0", + "unified": "1F9DA-1F3FB-200D-2642-FE0F", + "non_qualified": "1F9DA-1F3FB-200D-2642", + "image": "1f9da-1f3fb-200d-2642-fe0f.png", + "sheet_x": 52, + "sheet_y": 6, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false + "has_img_facebook": true }, "1F3FC": { - "unified": "1F93D-1F3FC", - "non_qualified": null, - "image": "1f93d-1f3fc.png", - "sheet_x": 41, - "sheet_y": 23, - "added_in": "9.0", + "unified": "1F9DA-1F3FC-200D-2642-FE0F", + "non_qualified": "1F9DA-1F3FC-200D-2642", + "image": "1f9da-1f3fc-200d-2642-fe0f.png", + "sheet_x": 52, + "sheet_y": 7, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false + "has_img_facebook": true }, "1F3FD": { - "unified": "1F93D-1F3FD", - "non_qualified": null, - "image": "1f93d-1f3fd.png", - "sheet_x": 41, - "sheet_y": 24, - "added_in": "9.0", + "unified": "1F9DA-1F3FD-200D-2642-FE0F", + "non_qualified": "1F9DA-1F3FD-200D-2642", + "image": "1f9da-1f3fd-200d-2642-fe0f.png", + "sheet_x": 52, + "sheet_y": 8, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false + "has_img_facebook": true }, "1F3FE": { - "unified": "1F93D-1F3FE", - "non_qualified": null, - "image": "1f93d-1f3fe.png", - "sheet_x": 41, - "sheet_y": 25, - "added_in": "9.0", + "unified": "1F9DA-1F3FE-200D-2642-FE0F", + "non_qualified": "1F9DA-1F3FE-200D-2642", + "image": "1f9da-1f3fe-200d-2642-fe0f.png", + "sheet_x": 52, + "sheet_y": 9, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false + "has_img_facebook": true }, "1F3FF": { - "unified": "1F93D-1F3FF", - "non_qualified": null, - "image": "1f93d-1f3ff.png", - "sheet_x": 41, - "sheet_y": 26, - "added_in": "9.0", + "unified": "1F9DA-1F3FF-200D-2642-FE0F", + "non_qualified": "1F9DA-1F3FF-200D-2642", + "image": "1f9da-1f3ff-200d-2642-fe0f.png", + "sheet_x": 52, + "sheet_y": 10, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false + "has_img_facebook": true } } }, { - "name": null, - "unified": "1F93E-200D-2640-FE0F", - "non_qualified": "1F93E-200D-2640", + "name": "FAIRY", + "unified": "1F9DA", + "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f93e-200d-2640-fe0f.png", - "sheet_x": 41, - "sheet_y": 27, - "short_name": "woman-playing-handball", - "short_names": ["woman-playing-handball"], + "image": "1f9da.png", + "sheet_x": 52, + "sheet_y": 11, + "short_name": "fairy", + "short_names": ["fairy"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 315, - "added_in": "9.0", + "category": "People & Body", + "subcategory": "person-fantasy", + "sort_order": 381, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true, - "has_img_messenger": false, "skin_variations": { "1F3FB": { - "unified": "1F93E-1F3FB-200D-2640-FE0F", - "non_qualified": "1F93E-1F3FB-200D-2640", - "image": "1f93e-1f3fb-200d-2640-fe0f.png", - "sheet_x": 41, - "sheet_y": 28, - "added_in": "9.0", + "unified": "1F9DA-1F3FB", + "non_qualified": null, + "image": "1f9da-1f3fb.png", + "sheet_x": 52, + "sheet_y": 12, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false + "has_img_facebook": true, + "obsoleted_by": "1F9DA-1F3FB-200D-2640-FE0F" }, "1F3FC": { - "unified": "1F93E-1F3FC-200D-2640-FE0F", - "non_qualified": "1F93E-1F3FC-200D-2640", - "image": "1f93e-1f3fc-200d-2640-fe0f.png", - "sheet_x": 41, - "sheet_y": 29, - "added_in": "9.0", + "unified": "1F9DA-1F3FC", + "non_qualified": null, + "image": "1f9da-1f3fc.png", + "sheet_x": 52, + "sheet_y": 13, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false + "has_img_facebook": true, + "obsoleted_by": "1F9DA-1F3FC-200D-2640-FE0F" }, "1F3FD": { - "unified": "1F93E-1F3FD-200D-2640-FE0F", - "non_qualified": "1F93E-1F3FD-200D-2640", - "image": "1f93e-1f3fd-200d-2640-fe0f.png", - "sheet_x": 41, - "sheet_y": 30, - "added_in": "9.0", + "unified": "1F9DA-1F3FD", + "non_qualified": null, + "image": "1f9da-1f3fd.png", + "sheet_x": 52, + "sheet_y": 14, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false + "has_img_facebook": true, + "obsoleted_by": "1F9DA-1F3FD-200D-2640-FE0F" }, "1F3FE": { - "unified": "1F93E-1F3FE-200D-2640-FE0F", - "non_qualified": "1F93E-1F3FE-200D-2640", - "image": "1f93e-1f3fe-200d-2640-fe0f.png", - "sheet_x": 41, - "sheet_y": 31, - "added_in": "9.0", + "unified": "1F9DA-1F3FE", + "non_qualified": null, + "image": "1f9da-1f3fe.png", + "sheet_x": 52, + "sheet_y": 15, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false + "has_img_facebook": true, + "obsoleted_by": "1F9DA-1F3FE-200D-2640-FE0F" }, "1F3FF": { - "unified": "1F93E-1F3FF-200D-2640-FE0F", - "non_qualified": "1F93E-1F3FF-200D-2640", - "image": "1f93e-1f3ff-200d-2640-fe0f.png", - "sheet_x": 41, - "sheet_y": 32, - "added_in": "9.0", + "unified": "1F9DA-1F3FF", + "non_qualified": null, + "image": "1f9da-1f3ff.png", + "sheet_x": 52, + "sheet_y": 16, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false + "has_img_facebook": true, + "obsoleted_by": "1F9DA-1F3FF-200D-2640-FE0F" } - } + }, + "obsoleted_by": "1F9DA-200D-2640-FE0F" }, { - "name": null, - "unified": "1F93E-200D-2642-FE0F", - "non_qualified": "1F93E-200D-2642", + "name": "WOMAN VAMPIRE", + "unified": "1F9DB-200D-2640-FE0F", + "non_qualified": "1F9DB-200D-2640", "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f93e-200d-2642-fe0f.png", - "sheet_x": 41, - "sheet_y": 33, - "short_name": "man-playing-handball", - "short_names": ["man-playing-handball"], + "image": "1f9db-200d-2640-fe0f.png", + "sheet_x": 52, + "sheet_y": 17, + "short_name": "female_vampire", + "short_names": ["female_vampire"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 314, - "added_in": "9.0", + "category": "People & Body", + "subcategory": "person-fantasy", + "sort_order": 386, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true, - "has_img_messenger": false, "skin_variations": { "1F3FB": { - "unified": "1F93E-1F3FB-200D-2642-FE0F", - "non_qualified": "1F93E-1F3FB-200D-2642", - "image": "1f93e-1f3fb-200d-2642-fe0f.png", - "sheet_x": 41, - "sheet_y": 34, - "added_in": "9.0", + "unified": "1F9DB-1F3FB-200D-2640-FE0F", + "non_qualified": "1F9DB-1F3FB-200D-2640", + "image": "1f9db-1f3fb-200d-2640-fe0f.png", + "sheet_x": 52, + "sheet_y": 18, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false + "has_img_facebook": true, + "obsoletes": "1F9DB-1F3FB" }, "1F3FC": { - "unified": "1F93E-1F3FC-200D-2642-FE0F", - "non_qualified": "1F93E-1F3FC-200D-2642", - "image": "1f93e-1f3fc-200d-2642-fe0f.png", - "sheet_x": 41, - "sheet_y": 35, - "added_in": "9.0", + "unified": "1F9DB-1F3FC-200D-2640-FE0F", + "non_qualified": "1F9DB-1F3FC-200D-2640", + "image": "1f9db-1f3fc-200d-2640-fe0f.png", + "sheet_x": 52, + "sheet_y": 19, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false + "has_img_facebook": true, + "obsoletes": "1F9DB-1F3FC" }, "1F3FD": { - "unified": "1F93E-1F3FD-200D-2642-FE0F", - "non_qualified": "1F93E-1F3FD-200D-2642", - "image": "1f93e-1f3fd-200d-2642-fe0f.png", - "sheet_x": 41, - "sheet_y": 36, - "added_in": "9.0", + "unified": "1F9DB-1F3FD-200D-2640-FE0F", + "non_qualified": "1F9DB-1F3FD-200D-2640", + "image": "1f9db-1f3fd-200d-2640-fe0f.png", + "sheet_x": 52, + "sheet_y": 20, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false + "has_img_facebook": true, + "obsoletes": "1F9DB-1F3FD" }, "1F3FE": { - "unified": "1F93E-1F3FE-200D-2642-FE0F", - "non_qualified": "1F93E-1F3FE-200D-2642", - "image": "1f93e-1f3fe-200d-2642-fe0f.png", - "sheet_x": 41, - "sheet_y": 37, - "added_in": "9.0", + "unified": "1F9DB-1F3FE-200D-2640-FE0F", + "non_qualified": "1F9DB-1F3FE-200D-2640", + "image": "1f9db-1f3fe-200d-2640-fe0f.png", + "sheet_x": 52, + "sheet_y": 21, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false + "has_img_facebook": true, + "obsoletes": "1F9DB-1F3FE" }, "1F3FF": { - "unified": "1F93E-1F3FF-200D-2642-FE0F", - "non_qualified": "1F93E-1F3FF-200D-2642", - "image": "1f93e-1f3ff-200d-2642-fe0f.png", - "sheet_x": 41, - "sheet_y": 38, - "added_in": "9.0", + "unified": "1F9DB-1F3FF-200D-2640-FE0F", + "non_qualified": "1F9DB-1F3FF-200D-2640", + "image": "1f9db-1f3ff-200d-2640-fe0f.png", + "sheet_x": 52, + "sheet_y": 22, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false + "has_img_facebook": true, + "obsoletes": "1F9DB-1F3FF" } - } + }, + "obsoletes": "1F9DB" }, { - "name": "HANDBALL", - "unified": "1F93E", - "non_qualified": null, + "name": "MAN VAMPIRE", + "unified": "1F9DB-200D-2642-FE0F", + "non_qualified": "1F9DB-200D-2642", "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f93e.png", - "sheet_x": 41, - "sheet_y": 39, - "short_name": "handball", - "short_names": ["handball"], + "image": "1f9db-200d-2642-fe0f.png", + "sheet_x": 52, + "sheet_y": 23, + "short_name": "male_vampire", + "short_names": ["male_vampire"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 313, - "added_in": "9.0", + "category": "People & Body", + "subcategory": "person-fantasy", + "sort_order": 385, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false, + "has_img_facebook": true, "skin_variations": { "1F3FB": { - "unified": "1F93E-1F3FB", - "non_qualified": null, - "image": "1f93e-1f3fb.png", - "sheet_x": 41, - "sheet_y": 40, - "added_in": "9.0", + "unified": "1F9DB-1F3FB-200D-2642-FE0F", + "non_qualified": "1F9DB-1F3FB-200D-2642", + "image": "1f9db-1f3fb-200d-2642-fe0f.png", + "sheet_x": 52, + "sheet_y": 24, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false + "has_img_facebook": true }, "1F3FC": { - "unified": "1F93E-1F3FC", - "non_qualified": null, - "image": "1f93e-1f3fc.png", - "sheet_x": 41, - "sheet_y": 41, - "added_in": "9.0", + "unified": "1F9DB-1F3FC-200D-2642-FE0F", + "non_qualified": "1F9DB-1F3FC-200D-2642", + "image": "1f9db-1f3fc-200d-2642-fe0f.png", + "sheet_x": 52, + "sheet_y": 25, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false + "has_img_facebook": true }, "1F3FD": { - "unified": "1F93E-1F3FD", - "non_qualified": null, - "image": "1f93e-1f3fd.png", - "sheet_x": 41, - "sheet_y": 42, - "added_in": "9.0", + "unified": "1F9DB-1F3FD-200D-2642-FE0F", + "non_qualified": "1F9DB-1F3FD-200D-2642", + "image": "1f9db-1f3fd-200d-2642-fe0f.png", + "sheet_x": 52, + "sheet_y": 26, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false + "has_img_facebook": true }, "1F3FE": { - "unified": "1F93E-1F3FE", - "non_qualified": null, - "image": "1f93e-1f3fe.png", - "sheet_x": 41, - "sheet_y": 43, - "added_in": "9.0", + "unified": "1F9DB-1F3FE-200D-2642-FE0F", + "non_qualified": "1F9DB-1F3FE-200D-2642", + "image": "1f9db-1f3fe-200d-2642-fe0f.png", + "sheet_x": 52, + "sheet_y": 27, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false + "has_img_facebook": true }, "1F3FF": { - "unified": "1F93E-1F3FF", - "non_qualified": null, - "image": "1f93e-1f3ff.png", - "sheet_x": 41, - "sheet_y": 44, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - } - } - }, - { - "name": "WILTED FLOWER", - "unified": "1F940", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f940.png", - "sheet_x": 41, - "sheet_y": 45, - "short_name": "wilted_flower", - "short_names": ["wilted_flower"], - "text": null, - "texts": null, - "category": "Animals & Nature", - "sort_order": 108, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - { - "name": "DRUM WITH DRUMSTICKS", - "unified": "1F941", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f941.png", - "sheet_x": 41, - "sheet_y": 46, - "short_name": "drum_with_drumsticks", - "short_names": ["drum_with_drumsticks"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 24, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - { - "name": "CLINKING GLASSES", - "unified": "1F942", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f942.png", - "sheet_x": 41, - "sheet_y": 47, - "short_name": "clinking_glasses", - "short_names": ["clinking_glasses"], - "text": null, - "texts": null, - "category": "Food & Drink", - "sort_order": 100, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - { - "name": "TUMBLER GLASS", - "unified": "1F943", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f943.png", - "sheet_x": 41, - "sheet_y": 48, - "short_name": "tumbler_glass", - "short_names": ["tumbler_glass"], - "text": null, - "texts": null, - "category": "Food & Drink", - "sort_order": 101, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - { - "name": "SPOON", - "unified": "1F944", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f944.png", - "sheet_x": 41, - "sheet_y": 49, - "short_name": "spoon", - "short_names": ["spoon"], - "text": null, - "texts": null, - "category": "Food & Drink", - "sort_order": 106, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - { - "name": "GOAL NET", - "unified": "1F945", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f945.png", - "sheet_x": 41, - "sheet_y": 50, - "short_name": "goal_net", - "short_names": ["goal_net"], - "text": null, - "texts": null, - "category": "Activities", - "sort_order": 46, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - { - "name": "FIRST PLACE MEDAL", - "unified": "1F947", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f947.png", - "sheet_x": 41, - "sheet_y": 51, - "short_name": "first_place_medal", - "short_names": ["first_place_medal"], - "text": null, - "texts": null, - "category": "Activities", - "sort_order": 25, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - { - "name": "SECOND PLACE MEDAL", - "unified": "1F948", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f948.png", - "sheet_x": 41, - "sheet_y": 52, - "short_name": "second_place_medal", - "short_names": ["second_place_medal"], - "text": null, - "texts": null, - "category": "Activities", - "sort_order": 26, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - { - "name": "THIRD PLACE MEDAL", - "unified": "1F949", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f949.png", - "sheet_x": 42, - "sheet_y": 0, - "short_name": "third_place_medal", - "short_names": ["third_place_medal"], - "text": null, - "texts": null, - "category": "Activities", - "sort_order": 27, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - { - "name": "BOXING GLOVE", - "unified": "1F94A", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f94a.png", - "sheet_x": 42, - "sheet_y": 1, - "short_name": "boxing_glove", - "short_names": ["boxing_glove"], - "text": null, - "texts": null, - "category": "Activities", - "sort_order": 44, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - { - "name": "MARTIAL ARTS UNIFORM", - "unified": "1F94B", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f94b.png", - "sheet_x": 42, - "sheet_y": 2, - "short_name": "martial_arts_uniform", - "short_names": ["martial_arts_uniform"], - "text": null, - "texts": null, - "category": "Activities", - "sort_order": 45, - "added_in": "9.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "unified": "1F9DB-1F3FF-200D-2642-FE0F", + "non_qualified": "1F9DB-1F3FF-200D-2642", + "image": "1f9db-1f3ff-200d-2642-fe0f.png", + "sheet_x": 52, + "sheet_y": 28, + "added_in": "5.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + } + } }, { - "name": "CURLING STONE", - "unified": "1F94C", + "name": "VAMPIRE", + "unified": "1F9DB", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f94c.png", - "sheet_x": 42, - "sheet_y": 3, - "short_name": "curling_stone", - "short_names": ["curling_stone"], + "image": "1f9db.png", + "sheet_x": 52, + "sheet_y": 29, + "short_name": "vampire", + "short_names": ["vampire"], "text": null, "texts": null, - "category": "Activities", - "sort_order": 53, - "added_in": "10.0", + "category": "People & Body", + "subcategory": "person-fantasy", + "sort_order": 384, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true, - "has_img_messenger": false + "skin_variations": { + "1F3FB": { + "unified": "1F9DB-1F3FB", + "non_qualified": null, + "image": "1f9db-1f3fb.png", + "sheet_x": 52, + "sheet_y": 30, + "added_in": "5.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true, + "obsoleted_by": "1F9DB-1F3FB-200D-2640-FE0F" + }, + "1F3FC": { + "unified": "1F9DB-1F3FC", + "non_qualified": null, + "image": "1f9db-1f3fc.png", + "sheet_x": 52, + "sheet_y": 31, + "added_in": "5.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true, + "obsoleted_by": "1F9DB-1F3FC-200D-2640-FE0F" + }, + "1F3FD": { + "unified": "1F9DB-1F3FD", + "non_qualified": null, + "image": "1f9db-1f3fd.png", + "sheet_x": 52, + "sheet_y": 32, + "added_in": "5.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true, + "obsoleted_by": "1F9DB-1F3FD-200D-2640-FE0F" + }, + "1F3FE": { + "unified": "1F9DB-1F3FE", + "non_qualified": null, + "image": "1f9db-1f3fe.png", + "sheet_x": 52, + "sheet_y": 33, + "added_in": "5.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true, + "obsoleted_by": "1F9DB-1F3FE-200D-2640-FE0F" + }, + "1F3FF": { + "unified": "1F9DB-1F3FF", + "non_qualified": null, + "image": "1f9db-1f3ff.png", + "sheet_x": 52, + "sheet_y": 34, + "added_in": "5.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true, + "obsoleted_by": "1F9DB-1F3FF-200D-2640-FE0F" + } + }, + "obsoleted_by": "1F9DB-200D-2640-FE0F" }, { - "name": "LACROSSE STICK AND BALL", - "unified": "1F94D", - "non_qualified": null, + "name": "MERMAID", + "unified": "1F9DC-200D-2640-FE0F", + "non_qualified": "1F9DC-200D-2640", "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f94d.png", - "sheet_x": 42, - "sheet_y": 4, - "short_name": "lacrosse", - "short_names": ["lacrosse"], + "image": "1f9dc-200d-2640-fe0f.png", + "sheet_x": 52, + "sheet_y": 35, + "short_name": "mermaid", + "short_names": ["mermaid"], "text": null, "texts": null, - "category": "Activities", - "sort_order": 41, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false + "category": "People & Body", + "subcategory": "person-fantasy", + "sort_order": 389, + "added_in": "5.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true, + "skin_variations": { + "1F3FB": { + "unified": "1F9DC-1F3FB-200D-2640-FE0F", + "non_qualified": "1F9DC-1F3FB-200D-2640", + "image": "1f9dc-1f3fb-200d-2640-fe0f.png", + "sheet_x": 52, + "sheet_y": 36, + "added_in": "5.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FC": { + "unified": "1F9DC-1F3FC-200D-2640-FE0F", + "non_qualified": "1F9DC-1F3FC-200D-2640", + "image": "1f9dc-1f3fc-200d-2640-fe0f.png", + "sheet_x": 52, + "sheet_y": 37, + "added_in": "5.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FD": { + "unified": "1F9DC-1F3FD-200D-2640-FE0F", + "non_qualified": "1F9DC-1F3FD-200D-2640", + "image": "1f9dc-1f3fd-200d-2640-fe0f.png", + "sheet_x": 52, + "sheet_y": 38, + "added_in": "5.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FE": { + "unified": "1F9DC-1F3FE-200D-2640-FE0F", + "non_qualified": "1F9DC-1F3FE-200D-2640", + "image": "1f9dc-1f3fe-200d-2640-fe0f.png", + "sheet_x": 52, + "sheet_y": 39, + "added_in": "5.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FF": { + "unified": "1F9DC-1F3FF-200D-2640-FE0F", + "non_qualified": "1F9DC-1F3FF-200D-2640", + "image": "1f9dc-1f3ff-200d-2640-fe0f.png", + "sheet_x": 52, + "sheet_y": 40, + "added_in": "5.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + } + } }, { - "name": "SOFTBALL", - "unified": "1F94E", - "non_qualified": null, + "name": "MERMAN", + "unified": "1F9DC-200D-2642-FE0F", + "non_qualified": "1F9DC-200D-2642", "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f94e.png", - "sheet_x": 42, - "sheet_y": 5, - "short_name": "softball", - "short_names": ["softball"], + "image": "1f9dc-200d-2642-fe0f.png", + "sheet_x": 52, + "sheet_y": 41, + "short_name": "merman", + "short_names": ["merman"], "text": null, "texts": null, - "category": "Activities", - "sort_order": 30, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false + "category": "People & Body", + "subcategory": "person-fantasy", + "sort_order": 388, + "added_in": "5.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true, + "skin_variations": { + "1F3FB": { + "unified": "1F9DC-1F3FB-200D-2642-FE0F", + "non_qualified": "1F9DC-1F3FB-200D-2642", + "image": "1f9dc-1f3fb-200d-2642-fe0f.png", + "sheet_x": 52, + "sheet_y": 42, + "added_in": "5.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true, + "obsoletes": "1F9DC-1F3FB" + }, + "1F3FC": { + "unified": "1F9DC-1F3FC-200D-2642-FE0F", + "non_qualified": "1F9DC-1F3FC-200D-2642", + "image": "1f9dc-1f3fc-200d-2642-fe0f.png", + "sheet_x": 52, + "sheet_y": 43, + "added_in": "5.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true, + "obsoletes": "1F9DC-1F3FC" + }, + "1F3FD": { + "unified": "1F9DC-1F3FD-200D-2642-FE0F", + "non_qualified": "1F9DC-1F3FD-200D-2642", + "image": "1f9dc-1f3fd-200d-2642-fe0f.png", + "sheet_x": 52, + "sheet_y": 44, + "added_in": "5.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true, + "obsoletes": "1F9DC-1F3FD" + }, + "1F3FE": { + "unified": "1F9DC-1F3FE-200D-2642-FE0F", + "non_qualified": "1F9DC-1F3FE-200D-2642", + "image": "1f9dc-1f3fe-200d-2642-fe0f.png", + "sheet_x": 52, + "sheet_y": 45, + "added_in": "5.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true, + "obsoletes": "1F9DC-1F3FE" + }, + "1F3FF": { + "unified": "1F9DC-1F3FF-200D-2642-FE0F", + "non_qualified": "1F9DC-1F3FF-200D-2642", + "image": "1f9dc-1f3ff-200d-2642-fe0f.png", + "sheet_x": 52, + "sheet_y": 46, + "added_in": "5.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true, + "obsoletes": "1F9DC-1F3FF" + } + }, + "obsoletes": "1F9DC" }, { - "name": "FLYING DISC", - "unified": "1F94F", + "name": "MERPERSON", + "unified": "1F9DC", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f94f.png", - "sheet_x": 42, - "sheet_y": 6, - "short_name": "flying_disc", - "short_names": ["flying_disc"], + "image": "1f9dc.png", + "sheet_x": 52, + "sheet_y": 47, + "short_name": "merperson", + "short_names": ["merperson"], "text": null, "texts": null, - "category": "Activities", - "sort_order": 36, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false + "category": "People & Body", + "subcategory": "person-fantasy", + "sort_order": 387, + "added_in": "5.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true, + "skin_variations": { + "1F3FB": { + "unified": "1F9DC-1F3FB", + "non_qualified": null, + "image": "1f9dc-1f3fb.png", + "sheet_x": 52, + "sheet_y": 48, + "added_in": "5.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true, + "obsoleted_by": "1F9DC-1F3FB-200D-2642-FE0F" + }, + "1F3FC": { + "unified": "1F9DC-1F3FC", + "non_qualified": null, + "image": "1f9dc-1f3fc.png", + "sheet_x": 52, + "sheet_y": 49, + "added_in": "5.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true, + "obsoleted_by": "1F9DC-1F3FC-200D-2642-FE0F" + }, + "1F3FD": { + "unified": "1F9DC-1F3FD", + "non_qualified": null, + "image": "1f9dc-1f3fd.png", + "sheet_x": 52, + "sheet_y": 50, + "added_in": "5.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true, + "obsoleted_by": "1F9DC-1F3FD-200D-2642-FE0F" + }, + "1F3FE": { + "unified": "1F9DC-1F3FE", + "non_qualified": null, + "image": "1f9dc-1f3fe.png", + "sheet_x": 52, + "sheet_y": 51, + "added_in": "5.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true, + "obsoleted_by": "1F9DC-1F3FE-200D-2642-FE0F" + }, + "1F3FF": { + "unified": "1F9DC-1F3FF", + "non_qualified": null, + "image": "1f9dc-1f3ff.png", + "sheet_x": 52, + "sheet_y": 52, + "added_in": "5.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true, + "obsoleted_by": "1F9DC-1F3FF-200D-2642-FE0F" + } + }, + "obsoleted_by": "1F9DC-200D-2642-FE0F" }, { - "name": "CROISSANT", - "unified": "1F950", - "non_qualified": null, + "name": "WOMAN ELF", + "unified": "1F9DD-200D-2640-FE0F", + "non_qualified": "1F9DD-200D-2640", "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f950.png", - "sheet_x": 42, - "sheet_y": 7, - "short_name": "croissant", - "short_names": ["croissant"], + "image": "1f9dd-200d-2640-fe0f.png", + "sheet_x": 52, + "sheet_y": 53, + "short_name": "female_elf", + "short_names": ["female_elf"], "text": null, "texts": null, - "category": "Food & Drink", - "sort_order": 31, - "added_in": "9.0", + "category": "People & Body", + "subcategory": "person-fantasy", + "sort_order": 392, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true, - "has_img_messenger": false + "skin_variations": { + "1F3FB": { + "unified": "1F9DD-1F3FB-200D-2640-FE0F", + "non_qualified": "1F9DD-1F3FB-200D-2640", + "image": "1f9dd-1f3fb-200d-2640-fe0f.png", + "sheet_x": 52, + "sheet_y": 54, + "added_in": "5.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FC": { + "unified": "1F9DD-1F3FC-200D-2640-FE0F", + "non_qualified": "1F9DD-1F3FC-200D-2640", + "image": "1f9dd-1f3fc-200d-2640-fe0f.png", + "sheet_x": 52, + "sheet_y": 55, + "added_in": "5.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FD": { + "unified": "1F9DD-1F3FD-200D-2640-FE0F", + "non_qualified": "1F9DD-1F3FD-200D-2640", + "image": "1f9dd-1f3fd-200d-2640-fe0f.png", + "sheet_x": 52, + "sheet_y": 56, + "added_in": "5.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FE": { + "unified": "1F9DD-1F3FE-200D-2640-FE0F", + "non_qualified": "1F9DD-1F3FE-200D-2640", + "image": "1f9dd-1f3fe-200d-2640-fe0f.png", + "sheet_x": 52, + "sheet_y": 57, + "added_in": "5.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FF": { + "unified": "1F9DD-1F3FF-200D-2640-FE0F", + "non_qualified": "1F9DD-1F3FF-200D-2640", + "image": "1f9dd-1f3ff-200d-2640-fe0f.png", + "sheet_x": 52, + "sheet_y": 58, + "added_in": "5.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + } + } }, { - "name": "AVOCADO", - "unified": "1F951", - "non_qualified": null, + "name": "MAN ELF", + "unified": "1F9DD-200D-2642-FE0F", + "non_qualified": "1F9DD-200D-2642", "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f951.png", - "sheet_x": 42, - "sheet_y": 8, - "short_name": "avocado", - "short_names": ["avocado"], + "image": "1f9dd-200d-2642-fe0f.png", + "sheet_x": 52, + "sheet_y": 59, + "short_name": "male_elf", + "short_names": ["male_elf"], "text": null, "texts": null, - "category": "Food & Drink", - "sort_order": 18, - "added_in": "9.0", + "category": "People & Body", + "subcategory": "person-fantasy", + "sort_order": 391, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true, - "has_img_messenger": false + "skin_variations": { + "1F3FB": { + "unified": "1F9DD-1F3FB-200D-2642-FE0F", + "non_qualified": "1F9DD-1F3FB-200D-2642", + "image": "1f9dd-1f3fb-200d-2642-fe0f.png", + "sheet_x": 52, + "sheet_y": 60, + "added_in": "5.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true, + "obsoletes": "1F9DD-1F3FB" + }, + "1F3FC": { + "unified": "1F9DD-1F3FC-200D-2642-FE0F", + "non_qualified": "1F9DD-1F3FC-200D-2642", + "image": "1f9dd-1f3fc-200d-2642-fe0f.png", + "sheet_x": 53, + "sheet_y": 0, + "added_in": "5.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true, + "obsoletes": "1F9DD-1F3FC" + }, + "1F3FD": { + "unified": "1F9DD-1F3FD-200D-2642-FE0F", + "non_qualified": "1F9DD-1F3FD-200D-2642", + "image": "1f9dd-1f3fd-200d-2642-fe0f.png", + "sheet_x": 53, + "sheet_y": 1, + "added_in": "5.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true, + "obsoletes": "1F9DD-1F3FD" + }, + "1F3FE": { + "unified": "1F9DD-1F3FE-200D-2642-FE0F", + "non_qualified": "1F9DD-1F3FE-200D-2642", + "image": "1f9dd-1f3fe-200d-2642-fe0f.png", + "sheet_x": 53, + "sheet_y": 2, + "added_in": "5.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true, + "obsoletes": "1F9DD-1F3FE" + }, + "1F3FF": { + "unified": "1F9DD-1F3FF-200D-2642-FE0F", + "non_qualified": "1F9DD-1F3FF-200D-2642", + "image": "1f9dd-1f3ff-200d-2642-fe0f.png", + "sheet_x": 53, + "sheet_y": 3, + "added_in": "5.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true, + "obsoletes": "1F9DD-1F3FF" + } + }, + "obsoletes": "1F9DD" }, { - "name": "CUCUMBER", - "unified": "1F952", + "name": "ELF", + "unified": "1F9DD", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f952.png", - "sheet_x": 42, - "sheet_y": 9, - "short_name": "cucumber", - "short_names": ["cucumber"], + "image": "1f9dd.png", + "sheet_x": 53, + "sheet_y": 4, + "short_name": "elf", + "short_names": ["elf"], "text": null, "texts": null, - "category": "Food & Drink", - "sort_order": 24, - "added_in": "9.0", + "category": "People & Body", + "subcategory": "person-fantasy", + "sort_order": 390, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true, - "has_img_messenger": false + "skin_variations": { + "1F3FB": { + "unified": "1F9DD-1F3FB", + "non_qualified": null, + "image": "1f9dd-1f3fb.png", + "sheet_x": 53, + "sheet_y": 5, + "added_in": "5.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true, + "obsoleted_by": "1F9DD-1F3FB-200D-2642-FE0F" + }, + "1F3FC": { + "unified": "1F9DD-1F3FC", + "non_qualified": null, + "image": "1f9dd-1f3fc.png", + "sheet_x": 53, + "sheet_y": 6, + "added_in": "5.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true, + "obsoleted_by": "1F9DD-1F3FC-200D-2642-FE0F" + }, + "1F3FD": { + "unified": "1F9DD-1F3FD", + "non_qualified": null, + "image": "1f9dd-1f3fd.png", + "sheet_x": 53, + "sheet_y": 7, + "added_in": "5.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true, + "obsoleted_by": "1F9DD-1F3FD-200D-2642-FE0F" + }, + "1F3FE": { + "unified": "1F9DD-1F3FE", + "non_qualified": null, + "image": "1f9dd-1f3fe.png", + "sheet_x": 53, + "sheet_y": 8, + "added_in": "5.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true, + "obsoleted_by": "1F9DD-1F3FE-200D-2642-FE0F" + }, + "1F3FF": { + "unified": "1F9DD-1F3FF", + "non_qualified": null, + "image": "1f9dd-1f3ff.png", + "sheet_x": 53, + "sheet_y": 9, + "added_in": "5.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true, + "obsoleted_by": "1F9DD-1F3FF-200D-2642-FE0F" + } + }, + "obsoleted_by": "1F9DD-200D-2642-FE0F" }, { - "name": "BACON", - "unified": "1F953", - "non_qualified": null, + "name": "WOMAN GENIE", + "unified": "1F9DE-200D-2640-FE0F", + "non_qualified": "1F9DE-200D-2640", "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f953.png", - "sheet_x": 42, + "image": "1f9de-200d-2640-fe0f.png", + "sheet_x": 53, "sheet_y": 10, - "short_name": "bacon", - "short_names": ["bacon"], + "short_name": "female_genie", + "short_names": ["female_genie"], "text": null, "texts": null, - "category": "Food & Drink", - "sort_order": 40, - "added_in": "9.0", + "category": "People & Body", + "subcategory": "person-fantasy", + "sort_order": 395, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, { - "name": "POTATO", - "unified": "1F954", - "non_qualified": null, + "name": "MAN GENIE", + "unified": "1F9DE-200D-2642-FE0F", + "non_qualified": "1F9DE-200D-2642", "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f954.png", - "sheet_x": 42, + "image": "1f9de-200d-2642-fe0f.png", + "sheet_x": 53, "sheet_y": 11, - "short_name": "potato", - "short_names": ["potato"], + "short_name": "male_genie", + "short_names": ["male_genie"], "text": null, "texts": null, - "category": "Food & Drink", - "sort_order": 20, - "added_in": "9.0", + "category": "People & Body", + "subcategory": "person-fantasy", + "sort_order": 394, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true, - "has_img_messenger": false + "obsoletes": "1F9DE" }, { - "name": "CARROT", - "unified": "1F955", + "name": "GENIE", + "unified": "1F9DE", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f955.png", - "sheet_x": 42, + "image": "1f9de.png", + "sheet_x": 53, "sheet_y": 12, - "short_name": "carrot", - "short_names": ["carrot"], + "short_name": "genie", + "short_names": ["genie"], "text": null, "texts": null, - "category": "Food & Drink", - "sort_order": 21, - "added_in": "9.0", + "category": "People & Body", + "subcategory": "person-fantasy", + "sort_order": 393, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true, - "has_img_messenger": false + "obsoleted_by": "1F9DE-200D-2642-FE0F" }, { - "name": "BAGUETTE BREAD", - "unified": "1F956", - "non_qualified": null, + "name": "WOMAN ZOMBIE", + "unified": "1F9DF-200D-2640-FE0F", + "non_qualified": "1F9DF-200D-2640", "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f956.png", - "sheet_x": 42, + "image": "1f9df-200d-2640-fe0f.png", + "sheet_x": 53, "sheet_y": 13, - "short_name": "baguette_bread", - "short_names": ["baguette_bread"], + "short_name": "female_zombie", + "short_names": ["female_zombie"], "text": null, "texts": null, - "category": "Food & Drink", - "sort_order": 32, - "added_in": "9.0", + "category": "People & Body", + "subcategory": "person-fantasy", + "sort_order": 398, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, { - "name": "GREEN SALAD", - "unified": "1F957", - "non_qualified": null, + "name": "MAN ZOMBIE", + "unified": "1F9DF-200D-2642-FE0F", + "non_qualified": "1F9DF-200D-2642", "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f957.png", - "sheet_x": 42, + "image": "1f9df-200d-2642-fe0f.png", + "sheet_x": 53, "sheet_y": 14, - "short_name": "green_salad", - "short_names": ["green_salad"], + "short_name": "male_zombie", + "short_names": ["male_zombie"], "text": null, "texts": null, - "category": "Food & Drink", - "sort_order": 54, - "added_in": "9.0", + "category": "People & Body", + "subcategory": "person-fantasy", + "sort_order": 397, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true, - "has_img_messenger": false + "obsoletes": "1F9DF" }, { - "name": "SHALLOW PAN OF FOOD", - "unified": "1F958", + "name": "ZOMBIE", + "unified": "1F9DF", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f958.png", - "sheet_x": 42, + "image": "1f9df.png", + "sheet_x": 53, "sheet_y": 15, - "short_name": "shallow_pan_of_food", - "short_names": ["shallow_pan_of_food"], + "short_name": "zombie", + "short_names": ["zombie"], "text": null, "texts": null, - "category": "Food & Drink", - "sort_order": 51, - "added_in": "9.0", + "category": "People & Body", + "subcategory": "person-fantasy", + "sort_order": 396, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true, - "has_img_messenger": false + "obsoleted_by": "1F9DF-200D-2642-FE0F" }, { - "name": "STUFFED FLATBREAD", - "unified": "1F959", + "name": "BRAIN", + "unified": "1F9E0", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f959.png", - "sheet_x": 42, + "image": "1f9e0.png", + "sheet_x": 53, "sheet_y": 16, - "short_name": "stuffed_flatbread", - "short_names": ["stuffed_flatbread"], + "short_name": "brain", + "short_names": ["brain"], "text": null, "texts": null, - "category": "Food & Drink", - "sort_order": 48, - "added_in": "9.0", + "category": "People & Body", + "subcategory": "body-parts", + "sort_order": 218, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, { - "name": "EGG", - "unified": "1F95A", + "name": "ORANGE HEART", + "unified": "1F9E1", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f95a.png", - "sheet_x": 42, + "image": "1f9e1.png", + "sheet_x": 53, "sheet_y": 17, - "short_name": "egg", - "short_names": ["egg"], + "short_name": "orange_heart", + "short_names": ["orange_heart"], "text": null, "texts": null, - "category": "Food & Drink", - "sort_order": 49, - "added_in": "9.0", + "category": "Smileys & Emotion", + "subcategory": "heart", + "sort_order": 143, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, { - "name": "GLASS OF MILK", - "unified": "1F95B", + "name": "BILLED CAP", + "unified": "1F9E2", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f95b.png", - "sheet_x": 42, + "image": "1f9e2.png", + "sheet_x": 53, "sheet_y": 18, - "short_name": "glass_of_milk", - "short_names": ["glass_of_milk"], + "short_name": "billed_cap", + "short_names": ["billed_cap"], "text": null, "texts": null, - "category": "Food & Drink", - "sort_order": 90, - "added_in": "9.0", + "category": "Objects", + "subcategory": "clothing", + "sort_order": 1163, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, { - "name": "PEANUTS", - "unified": "1F95C", + "name": "SCARF", + "unified": "1F9E3", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f95c.png", - "sheet_x": 42, + "image": "1f9e3.png", + "sheet_x": 53, "sheet_y": 19, - "short_name": "peanuts", - "short_names": ["peanuts"], + "short_name": "scarf", + "short_names": ["scarf"], "text": null, "texts": null, - "category": "Food & Drink", - "sort_order": 28, - "added_in": "9.0", + "category": "Objects", + "subcategory": "clothing", + "sort_order": 1131, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, { - "name": "KIWIFRUIT", - "unified": "1F95D", + "name": "GLOVES", + "unified": "1F9E4", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f95d.png", - "sheet_x": 42, + "image": "1f9e4.png", + "sheet_x": 53, "sheet_y": 20, - "short_name": "kiwifruit", - "short_names": ["kiwifruit"], + "short_name": "gloves", + "short_names": ["gloves"], "text": null, "texts": null, - "category": "Food & Drink", - "sort_order": 15, - "added_in": "9.0", + "category": "Objects", + "subcategory": "clothing", + "sort_order": 1132, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, { - "name": "PANCAKES", - "unified": "1F95E", + "name": "COAT", + "unified": "1F9E5", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f95e.png", - "sheet_x": 42, + "image": "1f9e5.png", + "sheet_x": 53, "sheet_y": 21, - "short_name": "pancakes", - "short_names": ["pancakes"], + "short_name": "coat", + "short_names": ["coat"], "text": null, "texts": null, - "category": "Food & Drink", - "sort_order": 35, - "added_in": "9.0", + "category": "Objects", + "subcategory": "clothing", + "sort_order": 1133, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, { - "name": "DUMPLING", - "unified": "1F95F", + "name": "SOCKS", + "unified": "1F9E6", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f95f.png", - "sheet_x": 42, + "image": "1f9e6.png", + "sheet_x": 53, "sheet_y": 22, - "short_name": "dumpling", - "short_names": ["dumpling"], + "short_name": "socks", + "short_names": ["socks"], "text": null, "texts": null, - "category": "Food & Drink", - "sort_order": 72, - "added_in": "10.0", + "category": "Objects", + "subcategory": "clothing", + "sort_order": 1134, + "added_in": "5.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, { - "name": "FORTUNE COOKIE", - "unified": "1F960", + "name": "RED GIFT ENVELOPE", + "unified": "1F9E7", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f960.png", - "sheet_x": 42, + "image": "1f9e7.png", + "sheet_x": 53, "sheet_y": 23, - "short_name": "fortune_cookie", - "short_names": ["fortune_cookie"], + "short_name": "red_envelope", + "short_names": ["red_envelope"], "text": null, "texts": null, - "category": "Food & Drink", - "sort_order": 73, - "added_in": "10.0", + "category": "Activities", + "subcategory": "event", + "sort_order": 1053, + "added_in": "11.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, { - "name": "TAKEOUT BOX", - "unified": "1F961", + "name": "FIRECRACKER", + "unified": "1F9E8", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f961.png", - "sheet_x": 42, + "image": "1f9e8.png", + "sheet_x": 53, "sheet_y": 24, - "short_name": "takeout_box", - "short_names": ["takeout_box"], + "short_name": "firecracker", + "short_names": ["firecracker"], "text": null, "texts": null, - "category": "Food & Drink", - "sort_order": 74, - "added_in": "10.0", + "category": "Activities", + "subcategory": "event", + "sort_order": 1042, + "added_in": "11.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, { - "name": "CHOPSTICKS", - "unified": "1F962", + "name": "JIGSAW PUZZLE PIECE", + "unified": "1F9E9", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f962.png", - "sheet_x": 42, + "image": "1f9e9.png", + "sheet_x": 53, "sheet_y": 25, - "short_name": "chopsticks", - "short_names": ["chopsticks"], + "short_name": "jigsaw", + "short_names": ["jigsaw"], "text": null, "texts": null, - "category": "Food & Drink", - "sort_order": 103, - "added_in": "10.0", + "category": "Activities", + "subcategory": "game", + "sort_order": 1103, + "added_in": "11.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, { - "name": "BOWL WITH SPOON", - "unified": "1F963", + "name": "TEST TUBE", + "unified": "1F9EA", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f963.png", - "sheet_x": 42, + "image": "1f9ea.png", + "sheet_x": 53, "sheet_y": 26, - "short_name": "bowl_with_spoon", - "short_names": ["bowl_with_spoon"], + "short_name": "test_tube", + "short_names": ["test_tube"], "text": null, "texts": null, - "category": "Food & Drink", - "sort_order": 53, - "added_in": "10.0", + "category": "Objects", + "subcategory": "science", + "sort_order": 1337, + "added_in": "11.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, { - "name": "CUP WITH STRAW", - "unified": "1F964", + "name": "PETRI DISH", + "unified": "1F9EB", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f964.png", - "sheet_x": 42, + "image": "1f9eb.png", + "sheet_x": 53, "sheet_y": 27, - "short_name": "cup_with_straw", - "short_names": ["cup_with_straw"], + "short_name": "petri_dish", + "short_names": ["petri_dish"], "text": null, "texts": null, - "category": "Food & Drink", - "sort_order": 102, - "added_in": "10.0", + "category": "Objects", + "subcategory": "science", + "sort_order": 1338, + "added_in": "11.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, { - "name": "COCONUT", - "unified": "1F965", + "name": "DNA DOUBLE HELIX", + "unified": "1F9EC", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f965.png", - "sheet_x": 42, + "image": "1f9ec.png", + "sheet_x": 53, "sheet_y": 28, - "short_name": "coconut", - "short_names": ["coconut"], + "short_name": "dna", + "short_names": ["dna"], "text": null, "texts": null, - "category": "Food & Drink", - "sort_order": 17, - "added_in": "10.0", + "category": "Objects", + "subcategory": "science", + "sort_order": 1339, + "added_in": "11.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, { - "name": "BROCCOLI", - "unified": "1F966", + "name": "COMPASS", + "unified": "1F9ED", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f966.png", - "sheet_x": 42, + "image": "1f9ed.png", + "sheet_x": 53, "sheet_y": 29, - "short_name": "broccoli", - "short_names": ["broccoli"], + "short_name": "compass", + "short_names": ["compass"], "text": null, "texts": null, - "category": "Food & Drink", - "sort_order": 26, - "added_in": "10.0", + "category": "Travel & Places", + "subcategory": "place-map", + "sort_order": 826, + "added_in": "11.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, { - "name": "PIE", - "unified": "1F967", + "name": "ABACUS", + "unified": "1F9EE", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f967.png", - "sheet_x": 42, + "image": "1f9ee.png", + "sheet_x": 53, "sheet_y": 30, - "short_name": "pie", - "short_names": ["pie"], + "short_name": "abacus", + "short_names": ["abacus"], "text": null, "texts": null, - "category": "Food & Drink", - "sort_order": 83, - "added_in": "10.0", + "category": "Objects", + "subcategory": "computer", + "sort_order": 1218, + "added_in": "11.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, { - "name": "PRETZEL", - "unified": "1F968", + "name": "FIRE EXTINGUISHER", + "unified": "1F9EF", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f968.png", - "sheet_x": 42, + "image": "1f9ef.png", + "sheet_x": 53, "sheet_y": 31, - "short_name": "pretzel", - "short_names": ["pretzel"], - "text": null, - "texts": null, - "category": "Food & Drink", - "sort_order": 33, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - { - "name": "CUT OF MEAT", - "unified": "1F969", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f969.png", - "sheet_x": 42, - "sheet_y": 32, - "short_name": "cut_of_meat", - "short_names": ["cut_of_meat"], - "text": null, - "texts": null, - "category": "Food & Drink", - "sort_order": 39, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - { - "name": "SANDWICH", - "unified": "1F96A", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f96a.png", - "sheet_x": 42, - "sheet_y": 33, - "short_name": "sandwich", - "short_names": ["sandwich"], - "text": null, - "texts": null, - "category": "Food & Drink", - "sort_order": 45, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - { - "name": "CANNED FOOD", - "unified": "1F96B", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f96b.png", - "sheet_x": 42, - "sheet_y": 34, - "short_name": "canned_food", - "short_names": ["canned_food"], + "short_name": "fire_extinguisher", + "short_names": ["fire_extinguisher"], "text": null, "texts": null, - "category": "Food & Drink", - "sort_order": 57, - "added_in": "10.0", + "category": "Objects", + "subcategory": "household", + "sort_order": 1373, + "added_in": "11.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - { - "name": "LEAFY GREEN", - "unified": "1F96C", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f96c.png", - "sheet_x": 42, - "sheet_y": 35, - "short_name": "leafy_green", - "short_names": ["leafy_green"], - "text": null, - "texts": null, - "category": "Food & Drink", - "sort_order": 25, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - }, - { - "name": "MANGO", - "unified": "1F96D", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f96d.png", - "sheet_x": 42, - "sheet_y": 36, - "short_name": "mango", - "short_names": ["mango"], - "text": null, - "texts": null, - "category": "Food & Drink", - "sort_order": 8, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - }, - { - "name": "MOON CAKE", - "unified": "1F96E", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f96e.png", - "sheet_x": 42, - "sheet_y": 37, - "short_name": "moon_cake", - "short_names": ["moon_cake"], - "text": null, - "texts": null, - "category": "Food & Drink", - "sort_order": 70, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - }, - { - "name": "BAGEL", - "unified": "1F96F", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f96f.png", - "sheet_x": 42, - "sheet_y": 38, - "short_name": "bagel", - "short_names": ["bagel"], - "text": null, - "texts": null, - "category": "Food & Drink", - "sort_order": 34, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false + "has_img_facebook": true }, { - "name": "SMILING FACE WITH SMILING EYES AND THREE HEARTS", - "unified": "1F970", + "name": "TOOLBOX", + "unified": "1F9F0", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f970.png", - "sheet_x": 42, - "sheet_y": 39, - "short_name": "smiling_face_with_3_hearts", - "short_names": ["smiling_face_with_3_hearts"], + "image": "1f9f0.png", + "sheet_x": 53, + "sheet_y": 32, + "short_name": "toolbox", + "short_names": ["toolbox"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 15, + "category": "Objects", + "subcategory": "tool", + "sort_order": 1333, "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, { - "name": "FACE WITH PARTY HORN AND PARTY HAT", - "unified": "1F973", + "name": "BRICK", + "unified": "1F9F1", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f973.png", - "sheet_x": 42, - "sheet_y": 40, - "short_name": "partying_face", - "short_names": ["partying_face"], + "image": "1f9f1.png", + "sheet_x": 53, + "sheet_y": 33, + "short_name": "bricks", + "short_names": ["bricks"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 82, + "category": "Travel & Places", + "subcategory": "place-building", + "sort_order": 839, "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, { - "name": "FACE WITH UNEVEN EYES AND WAVY MOUTH", - "unified": "1F974", + "name": "MAGNET", + "unified": "1F9F2", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f974.png", - "sheet_x": 42, - "sheet_y": 41, - "short_name": "woozy_face", - "short_names": ["woozy_face"], + "image": "1f9f2.png", + "sheet_x": 53, + "sheet_y": 34, + "short_name": "magnet", + "short_names": ["magnet"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 83, + "category": "Objects", + "subcategory": "tool", + "sort_order": 1334, "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, { - "name": "OVERHEATED FACE", - "unified": "1F975", + "name": "LUGGAGE", + "unified": "1F9F3", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f975.png", - "sheet_x": 42, - "sheet_y": 42, - "short_name": "hot_face", - "short_names": ["hot_face"], + "image": "1f9f3.png", + "sheet_x": 53, + "sheet_y": 35, + "short_name": "luggage", + "short_names": ["luggage"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 66, + "category": "Travel & Places", + "subcategory": "hotel", + "sort_order": 959, "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, { - "name": "FREEZING FACE", - "unified": "1F976", + "name": "LOTION BOTTLE", + "unified": "1F9F4", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f976.png", - "sheet_x": 42, - "sheet_y": 43, - "short_name": "cold_face", - "short_names": ["cold_face"], + "image": "1f9f4.png", + "sheet_x": 53, + "sheet_y": 36, + "short_name": "lotion_bottle", + "short_names": ["lotion_bottle"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 67, + "category": "Objects", + "subcategory": "household", + "sort_order": 1363, "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, { - "name": "FACE WITH PLEADING EYES", - "unified": "1F97A", + "name": "SPOOL OF THREAD", + "unified": "1F9F5", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f97a.png", - "sheet_x": 42, - "sheet_y": 44, - "short_name": "pleading_face", - "short_names": ["pleading_face"], + "image": "1f9f5.png", + "sheet_x": 53, + "sheet_y": 37, + "short_name": "thread", + "short_names": ["thread"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 84, + "category": "Activities", + "subcategory": "arts & crafts", + "sort_order": 1119, "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, { - "name": "LAB COAT", - "unified": "1F97C", + "name": "BALL OF YARN", + "unified": "1F9F6", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f97c.png", - "sheet_x": 42, - "sheet_y": 45, - "short_name": "lab_coat", - "short_names": ["lab_coat"], + "image": "1f9f6.png", + "sheet_x": 53, + "sheet_y": 38, + "short_name": "yarn", + "short_names": ["yarn"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 436, + "category": "Activities", + "subcategory": "arts & crafts", + "sort_order": 1121, "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, { - "name": "GOGGLES", - "unified": "1F97D", + "name": "SAFETY PIN", + "unified": "1F9F7", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f97d.png", - "sheet_x": 42, - "sheet_y": 46, - "short_name": "goggles", - "short_names": ["goggles"], + "image": "1f9f7.png", + "sheet_x": 53, + "sheet_y": 39, + "short_name": "safety_pin", + "short_names": ["safety_pin"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 435, + "category": "Objects", + "subcategory": "household", + "sort_order": 1364, "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, { - "name": "HIKING BOOT", - "unified": "1F97E", + "name": "TEDDY BEAR", + "unified": "1F9F8", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f97e.png", - "sheet_x": 42, - "sheet_y": 47, - "short_name": "hiking_boot", - "short_names": ["hiking_boot"], + "image": "1f9f8.png", + "sheet_x": 53, + "sheet_y": 40, + "short_name": "teddy_bear", + "short_names": ["teddy_bear"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 455, + "category": "Activities", + "subcategory": "game", + "sort_order": 1104, "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, { - "name": "FLAT SHOE", - "unified": "1F97F", + "name": "BROOM", + "unified": "1F9F9", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f97f.png", - "sheet_x": 42, - "sheet_y": 48, - "short_name": "woman\u2019s_flat_shoe", - "short_names": ["woman\u2019s_flat_shoe"], + "image": "1f9f9.png", + "sheet_x": 53, + "sheet_y": 41, + "short_name": "broom", + "short_names": ["broom"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 456, + "category": "Objects", + "subcategory": "household", + "sort_order": 1365, "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, { - "name": "CRAB", - "unified": "1F980", + "name": "BASKET", + "unified": "1F9FA", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f980.png", - "sheet_x": 42, - "sheet_y": 49, - "short_name": "crab", - "short_names": ["crab"], + "image": "1f9fa.png", + "sheet_x": 53, + "sheet_y": 42, + "short_name": "basket", + "short_names": ["basket"], "text": null, "texts": null, - "category": "Animals & Nature", - "sort_order": 87, - "added_in": "8.0", + "category": "Objects", + "subcategory": "household", + "sort_order": 1366, + "added_in": "11.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, { - "name": "LION FACE", - "unified": "1F981", + "name": "ROLL OF PAPER", + "unified": "1F9FB", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f981.png", - "sheet_x": 42, - "sheet_y": 50, - "short_name": "lion_face", - "short_names": ["lion_face"], + "image": "1f9fb.png", + "sheet_x": 53, + "sheet_y": 43, + "short_name": "roll_of_paper", + "short_names": ["roll_of_paper"], "text": null, "texts": null, - "category": "Animals & Nature", - "sort_order": 12, - "added_in": "8.0", + "category": "Objects", + "subcategory": "household", + "sort_order": 1367, + "added_in": "11.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, { - "name": "SCORPION", - "unified": "1F982", + "name": "BAR OF SOAP", + "unified": "1F9FC", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f982.png", - "sheet_x": 42, - "sheet_y": 51, - "short_name": "scorpion", - "short_names": ["scorpion"], + "image": "1f9fc.png", + "sheet_x": 53, + "sheet_y": 44, + "short_name": "soap", + "short_names": ["soap"], "text": null, "texts": null, - "category": "Animals & Nature", - "sort_order": 100, - "added_in": "8.0", + "category": "Objects", + "subcategory": "household", + "sort_order": 1369, + "added_in": "11.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, { - "name": "TURKEY", - "unified": "1F983", + "name": "SPONGE", + "unified": "1F9FD", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f983.png", - "sheet_x": 42, - "sheet_y": 52, - "short_name": "turkey", - "short_names": ["turkey"], + "image": "1f9fd.png", + "sheet_x": 53, + "sheet_y": 45, + "short_name": "sponge", + "short_names": ["sponge"], "text": null, "texts": null, - "category": "Animals & Nature", - "sort_order": 54, - "added_in": "8.0", + "category": "Objects", + "subcategory": "household", + "sort_order": 1372, + "added_in": "11.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, { - "name": "UNICORN FACE", - "unified": "1F984", + "name": "RECEIPT", + "unified": "1F9FE", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f984.png", - "sheet_x": 43, - "sheet_y": 0, - "short_name": "unicorn_face", - "short_names": ["unicorn_face"], + "image": "1f9fe.png", + "sheet_x": 53, + "sheet_y": 46, + "short_name": "receipt", + "short_names": ["receipt"], "text": null, "texts": null, - "category": "Animals & Nature", - "sort_order": 18, - "added_in": "8.0", + "category": "Objects", + "subcategory": "money", + "sort_order": 1260, + "added_in": "11.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, { - "name": "EAGLE", - "unified": "1F985", + "name": "NAZAR AMULET", + "unified": "1F9FF", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f985.png", - "sheet_x": 43, - "sheet_y": 1, - "short_name": "eagle", - "short_names": ["eagle"], + "image": "1f9ff.png", + "sheet_x": 53, + "sheet_y": 47, + "short_name": "nazar_amulet", + "short_names": ["nazar_amulet"], "text": null, "texts": null, - "category": "Animals & Nature", - "sort_order": 63, - "added_in": "9.0", + "category": "Objects", + "subcategory": "other-object", + "sort_order": 1379, + "added_in": "11.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, { - "name": "DUCK", - "unified": "1F986", + "name": "BALLET SHOES", + "unified": "1FA70", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f986.png", - "sheet_x": 43, - "sheet_y": 2, - "short_name": "duck", - "short_names": ["duck"], + "image": "1fa70.png", + "sheet_x": 53, + "sheet_y": 48, + "short_name": "ballet_shoes", + "short_names": ["ballet_shoes"], "text": null, "texts": null, - "category": "Animals & Nature", - "sort_order": 64, - "added_in": "9.0", + "category": "Objects", + "subcategory": "clothing", + "sort_order": 1156, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, { - "name": "BAT", - "unified": "1F987", + "name": "ONE-PIECE SWIMSUIT", + "unified": "1FA71", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f987.png", - "sheet_x": 43, - "sheet_y": 3, - "short_name": "bat", - "short_names": ["bat"], + "image": "1fa71.png", + "sheet_x": 53, + "sheet_y": 49, + "short_name": "one-piece_swimsuit", + "short_names": ["one-piece_swimsuit"], "text": null, "texts": null, - "category": "Animals & Nature", - "sort_order": 47, - "added_in": "9.0", + "category": "Objects", + "subcategory": "clothing", + "sort_order": 1138, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, { - "name": "SHARK", - "unified": "1F988", + "name": "BRIEFS", + "unified": "1FA72", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f988.png", - "sheet_x": 43, - "sheet_y": 4, - "short_name": "shark", - "short_names": ["shark"], + "image": "1fa72.png", + "sheet_x": 53, + "sheet_y": 50, + "short_name": "briefs", + "short_names": ["briefs"], "text": null, "texts": null, - "category": "Animals & Nature", - "sort_order": 84, - "added_in": "9.0", + "category": "Objects", + "subcategory": "clothing", + "sort_order": 1139, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, { - "name": "OWL", - "unified": "1F989", + "name": "SHORTS", + "unified": "1FA73", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f989.png", - "sheet_x": 43, - "sheet_y": 5, - "short_name": "owl", - "short_names": ["owl"], + "image": "1fa73.png", + "sheet_x": 53, + "sheet_y": 51, + "short_name": "shorts", + "short_names": ["shorts"], "text": null, "texts": null, - "category": "Animals & Nature", - "sort_order": 66, - "added_in": "9.0", + "category": "Objects", + "subcategory": "clothing", + "sort_order": 1140, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, { - "name": "FOX FACE", - "unified": "1F98A", + "name": "THONG SANDAL", + "unified": "1FA74", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f98a.png", - "sheet_x": 43, - "sheet_y": 6, - "short_name": "fox_face", - "short_names": ["fox_face"], + "image": "1fa74.png", + "sheet_x": 53, + "sheet_y": 52, + "short_name": "thong_sandal", + "short_names": ["thong_sandal"], "text": null, "texts": null, - "category": "Animals & Nature", - "sort_order": 8, - "added_in": "9.0", + "category": "Objects", + "subcategory": "clothing", + "sort_order": 1149, + "added_in": "13.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, { - "name": "BUTTERFLY", - "unified": "1F98B", + "name": "LIGHT BLUE HEART", + "unified": "1FA75", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f98b.png", - "sheet_x": 43, - "sheet_y": 7, - "short_name": "butterfly", - "short_names": ["butterfly"], + "image": "1fa75.png", + "sheet_x": 53, + "sheet_y": 53, + "short_name": "light_blue_heart", + "short_names": ["light_blue_heart"], "text": null, "texts": null, - "category": "Animals & Nature", - "sort_order": 92, - "added_in": "9.0", + "category": "Smileys & Emotion", + "subcategory": "heart", + "sort_order": 147, + "added_in": "15.0", "has_img_apple": true, "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_twitter": false, + "has_img_facebook": false }, { - "name": "DEER", - "unified": "1F98C", + "name": "GREY HEART", + "unified": "1FA76", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f98c.png", - "sheet_x": 43, - "sheet_y": 8, - "short_name": "deer", - "short_names": ["deer"], + "image": "1fa76.png", + "sheet_x": 53, + "sheet_y": 54, + "short_name": "grey_heart", + "short_names": ["grey_heart"], "text": null, "texts": null, - "category": "Animals & Nature", - "sort_order": 20, - "added_in": "9.0", + "category": "Smileys & Emotion", + "subcategory": "heart", + "sort_order": 151, + "added_in": "15.0", "has_img_apple": true, "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_twitter": false, + "has_img_facebook": false }, { - "name": "GORILLA", - "unified": "1F98D", + "name": "PINK HEART", + "unified": "1FA77", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f98d.png", - "sheet_x": 43, - "sheet_y": 9, - "short_name": "gorilla", - "short_names": ["gorilla"], + "image": "1fa77.png", + "sheet_x": 53, + "sheet_y": 55, + "short_name": "pink_heart", + "short_names": ["pink_heart"], "text": null, "texts": null, - "category": "Animals & Nature", - "sort_order": 3, - "added_in": "9.0", + "category": "Smileys & Emotion", + "subcategory": "heart", + "sort_order": 142, + "added_in": "15.0", "has_img_apple": true, "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_twitter": false, + "has_img_facebook": false }, { - "name": "LIZARD", - "unified": "1F98E", + "name": "DROP OF BLOOD", + "unified": "1FA78", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f98e.png", - "sheet_x": 43, - "sheet_y": 10, - "short_name": "lizard", - "short_names": ["lizard"], + "image": "1fa78.png", + "sheet_x": 53, + "sheet_y": 56, + "short_name": "drop_of_blood", + "short_names": ["drop_of_blood"], "text": null, "texts": null, - "category": "Animals & Nature", - "sort_order": 72, - "added_in": "9.0", + "category": "Objects", + "subcategory": "medical", + "sort_order": 1344, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, { - "name": "RHINOCEROS", - "unified": "1F98F", + "name": "ADHESIVE BANDAGE", + "unified": "1FA79", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f98f.png", - "sheet_x": 43, - "sheet_y": 11, - "short_name": "rhinoceros", - "short_names": ["rhinoceros"], + "image": "1fa79.png", + "sheet_x": 53, + "sheet_y": 57, + "short_name": "adhesive_bandage", + "short_names": ["adhesive_bandage"], "text": null, "texts": null, - "category": "Animals & Nature", - "sort_order": 37, - "added_in": "9.0", + "category": "Objects", + "subcategory": "medical", + "sort_order": 1346, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, { - "name": "SHRIMP", - "unified": "1F990", + "name": "STETHOSCOPE", + "unified": "1FA7A", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f990.png", - "sheet_x": 43, - "sheet_y": 12, - "short_name": "shrimp", - "short_names": ["shrimp"], + "image": "1fa7a.png", + "sheet_x": 53, + "sheet_y": 58, + "short_name": "stethoscope", + "short_names": ["stethoscope"], "text": null, "texts": null, - "category": "Animals & Nature", - "sort_order": 89, - "added_in": "9.0", + "category": "Objects", + "subcategory": "medical", + "sort_order": 1348, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, { - "name": "SQUID", - "unified": "1F991", + "name": "X-RAY", + "unified": "1FA7B", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f991.png", - "sheet_x": 43, - "sheet_y": 13, - "short_name": "squid", - "short_names": ["squid"], + "image": "1fa7b.png", + "sheet_x": 53, + "sheet_y": 59, + "short_name": "x-ray", + "short_names": ["x-ray"], "text": null, "texts": null, - "category": "Animals & Nature", - "sort_order": 90, - "added_in": "9.0", + "category": "Objects", + "subcategory": "medical", + "sort_order": 1349, + "added_in": "14.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, { - "name": "GIRAFFE FACE", - "unified": "1F992", + "name": "CRUTCH", + "unified": "1FA7C", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f992.png", - "sheet_x": 43, - "sheet_y": 14, - "short_name": "giraffe_face", - "short_names": ["giraffe_face"], + "image": "1fa7c.png", + "sheet_x": 53, + "sheet_y": 60, + "short_name": "crutch", + "short_names": ["crutch"], "text": null, "texts": null, - "category": "Animals & Nature", - "sort_order": 35, - "added_in": "10.0", + "category": "Objects", + "subcategory": "medical", + "sort_order": 1347, + "added_in": "14.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, { - "name": "ZEBRA FACE", - "unified": "1F993", + "name": "YO-YO", + "unified": "1FA80", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f993.png", - "sheet_x": 43, - "sheet_y": 15, - "short_name": "zebra_face", - "short_names": ["zebra_face"], + "image": "1fa80.png", + "sheet_x": 54, + "sheet_y": 0, + "short_name": "yo-yo", + "short_names": ["yo-yo"], "text": null, "texts": null, - "category": "Animals & Nature", - "sort_order": 19, - "added_in": "10.0", + "category": "Activities", + "subcategory": "game", + "sort_order": 1093, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, { - "name": "HEDGEHOG", - "unified": "1F994", + "name": "KITE", + "unified": "1FA81", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f994.png", - "sheet_x": 43, - "sheet_y": 16, - "short_name": "hedgehog", - "short_names": ["hedgehog"], + "image": "1fa81.png", + "sheet_x": 54, + "sheet_y": 1, + "short_name": "kite", + "short_names": ["kite"], "text": null, "texts": null, - "category": "Animals & Nature", - "sort_order": 46, - "added_in": "10.0", + "category": "Activities", + "subcategory": "game", + "sort_order": 1094, + "added_in": "12.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, { - "name": "SAUROPOD", - "unified": "1F995", + "name": "PARACHUTE", + "unified": "1FA82", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f995.png", - "sheet_x": 43, - "sheet_y": 17, - "short_name": "sauropod", - "short_names": ["sauropod"], + "image": "1fa82.png", + "sheet_x": 54, + "sheet_y": 2, + "short_name": "parachute", + "short_names": ["parachute"], + "text": null, + "texts": null, + "category": "Travel & Places", + "subcategory": "transport-air", + "sort_order": 949, + "added_in": "12.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + { + "name": "BOOMERANG", + "unified": "1FA83", + "non_qualified": null, + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1fa83.png", + "sheet_x": 54, + "sheet_y": 3, + "short_name": "boomerang", + "short_names": ["boomerang"], "text": null, "texts": null, - "category": "Animals & Nature", - "sort_order": 76, - "added_in": "10.0", + "category": "Objects", + "subcategory": "tool", + "sort_order": 1319, + "added_in": "13.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, { - "name": "T-REX", - "unified": "1F996", + "name": "MAGIC WAND", + "unified": "1FA84", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f996.png", - "sheet_x": 43, - "sheet_y": 18, - "short_name": "t-rex", - "short_names": ["t-rex"], + "image": "1fa84.png", + "sheet_x": 54, + "sheet_y": 4, + "short_name": "magic_wand", + "short_names": ["magic_wand"], "text": null, "texts": null, - "category": "Animals & Nature", - "sort_order": 77, - "added_in": "10.0", + "category": "Activities", + "subcategory": "game", + "sort_order": 1098, + "added_in": "13.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, { - "name": "CRICKET", - "unified": "1F997", + "name": "PINATA", + "unified": "1FA85", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f997.png", - "sheet_x": 43, - "sheet_y": 19, - "short_name": "cricket", - "short_names": ["cricket"], + "image": "1fa85.png", + "sheet_x": 54, + "sheet_y": 5, + "short_name": "pinata", + "short_names": ["pinata"], "text": null, "texts": null, - "category": "Animals & Nature", - "sort_order": 97, - "added_in": "10.0", + "category": "Activities", + "subcategory": "game", + "sort_order": 1105, + "added_in": "13.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, { - "name": "KANGAROO", - "unified": "1F998", + "name": "NESTING DOLLS", + "unified": "1FA86", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f998.png", - "sheet_x": 43, - "sheet_y": 20, - "short_name": "kangaroo", - "short_names": ["kangaroo"], + "image": "1fa86.png", + "sheet_x": 54, + "sheet_y": 6, + "short_name": "nesting_dolls", + "short_names": ["nesting_dolls"], "text": null, "texts": null, - "category": "Animals & Nature", - "sort_order": 51, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false + "category": "Activities", + "subcategory": "game", + "sort_order": 1107, + "added_in": "13.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, { - "name": "LLAMA", - "unified": "1F999", + "name": "MARACAS", + "unified": "1FA87", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f999.png", - "sheet_x": 43, - "sheet_y": 21, - "short_name": "llama", - "short_names": ["llama"], + "image": "1fa87.png", + "sheet_x": 54, + "sheet_y": 7, + "short_name": "maracas", + "short_names": ["maracas"], "text": null, "texts": null, - "category": "Animals & Nature", - "sort_order": 34, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, + "category": "Objects", + "subcategory": "musical-instrument", + "sort_order": 1197, + "added_in": "15.0", + "has_img_apple": true, + "has_img_google": true, "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false + "has_img_facebook": false }, { - "name": "PEACOCK", - "unified": "1F99A", + "name": "FLUTE", + "unified": "1FA88", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f99a.png", - "sheet_x": 43, - "sheet_y": 22, - "short_name": "peacock", - "short_names": ["peacock"], + "image": "1fa88.png", + "sheet_x": 54, + "sheet_y": 8, + "short_name": "flute", + "short_names": ["flute"], "text": null, "texts": null, - "category": "Animals & Nature", - "sort_order": 67, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, + "category": "Objects", + "subcategory": "musical-instrument", + "sort_order": 1198, + "added_in": "15.0", + "has_img_apple": true, + "has_img_google": true, "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false + "has_img_facebook": false }, { - "name": "HIPPOPOTAMUS", - "unified": "1F99B", + "name": "RINGED PLANET", + "unified": "1FA90", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f99b.png", - "sheet_x": 43, - "sheet_y": 23, - "short_name": "hippopotamus", - "short_names": ["hippopotamus"], + "image": "1fa90.png", + "sheet_x": 54, + "sheet_y": 9, + "short_name": "ringed_planet", + "short_names": ["ringed_planet"], "text": null, "texts": null, - "category": "Animals & Nature", - "sort_order": 38, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false + "category": "Travel & Places", + "subcategory": "sky & weather", + "sort_order": 1007, + "added_in": "12.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, { - "name": "PARROT", - "unified": "1F99C", + "name": "CHAIR", + "unified": "1FA91", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f99c.png", - "sheet_x": 43, - "sheet_y": 24, - "short_name": "parrot", - "short_names": ["parrot"], + "image": "1fa91.png", + "sheet_x": 54, + "sheet_y": 10, + "short_name": "chair", + "short_names": ["chair"], "text": null, "texts": null, - "category": "Animals & Nature", - "sort_order": 68, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false + "category": "Objects", + "subcategory": "household", + "sort_order": 1356, + "added_in": "12.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, { - "name": "RACCOON", - "unified": "1F99D", + "name": "RAZOR", + "unified": "1FA92", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f99d.png", - "sheet_x": 43, - "sheet_y": 25, - "short_name": "raccoon", - "short_names": ["raccoon"], + "image": "1fa92.png", + "sheet_x": 54, + "sheet_y": 11, + "short_name": "razor", + "short_names": ["razor"], "text": null, "texts": null, - "category": "Animals & Nature", - "sort_order": 9, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false + "category": "Objects", + "subcategory": "household", + "sort_order": 1362, + "added_in": "12.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, { - "name": "LOBSTER", - "unified": "1F99E", + "name": "AXE", + "unified": "1FA93", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f99e.png", - "sheet_x": 43, - "sheet_y": 26, - "short_name": "lobster", - "short_names": ["lobster"], + "image": "1fa93.png", + "sheet_x": 54, + "sheet_y": 12, + "short_name": "axe", + "short_names": ["axe"], "text": null, "texts": null, - "category": "Animals & Nature", - "sort_order": 88, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false + "category": "Objects", + "subcategory": "tool", + "sort_order": 1312, + "added_in": "12.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, { - "name": "MOSQUITO", - "unified": "1F99F", + "name": "DIYA LAMP", + "unified": "1FA94", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f99f.png", - "sheet_x": 43, - "sheet_y": 27, - "short_name": "mosquito", - "short_names": ["mosquito"], + "image": "1fa94.png", + "sheet_x": 54, + "sheet_y": 13, + "short_name": "diya_lamp", + "short_names": ["diya_lamp"], "text": null, "texts": null, - "category": "Animals & Nature", - "sort_order": 101, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false + "category": "Objects", + "subcategory": "light & video", + "sort_order": 1234, + "added_in": "12.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, { - "name": "MICROBE", - "unified": "1F9A0", + "name": "BANJO", + "unified": "1FA95", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f9a0.png", - "sheet_x": 43, - "sheet_y": 28, - "short_name": "microbe", - "short_names": ["microbe"], + "image": "1fa95.png", + "sheet_x": 54, + "sheet_y": 14, + "short_name": "banjo", + "short_names": ["banjo"], "text": null, "texts": null, - "category": "Animals & Nature", - "sort_order": 102, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false + "category": "Objects", + "subcategory": "musical-instrument", + "sort_order": 1194, + "added_in": "12.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, { - "name": "BADGER", - "unified": "1F9A1", + "name": "MILITARY HELMET", + "unified": "1FA96", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f9a1.png", - "sheet_x": 43, - "sheet_y": 29, - "short_name": "badger", - "short_names": ["badger"], + "image": "1fa96.png", + "sheet_x": 54, + "sheet_y": 15, + "short_name": "military_helmet", + "short_names": ["military_helmet"], "text": null, "texts": null, - "category": "Animals & Nature", - "sort_order": 52, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false + "category": "Objects", + "subcategory": "clothing", + "sort_order": 1164, + "added_in": "13.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, { - "name": "SWAN", - "unified": "1F9A2", + "name": "ACCORDION", + "unified": "1FA97", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f9a2.png", - "sheet_x": 43, - "sheet_y": 30, - "short_name": "swan", - "short_names": ["swan"], + "image": "1fa97.png", + "sheet_x": 54, + "sheet_y": 16, + "short_name": "accordion", + "short_names": ["accordion"], "text": null, "texts": null, - "category": "Animals & Nature", - "sort_order": 65, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false + "category": "Objects", + "subcategory": "musical-instrument", + "sort_order": 1189, + "added_in": "13.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, { - "name": "BONE", - "unified": "1F9B4", + "name": "LONG DRUM", + "unified": "1FA98", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f9b4.png", - "sheet_x": 43, - "sheet_y": 31, - "short_name": "bone", - "short_names": ["bone"], + "image": "1fa98.png", + "sheet_x": 54, + "sheet_y": 17, + "short_name": "long_drum", + "short_names": ["long_drum"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 398, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false + "category": "Objects", + "subcategory": "musical-instrument", + "sort_order": 1196, + "added_in": "13.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, { - "name": "LEG", - "unified": "1F9B5", + "name": "COIN", + "unified": "1FA99", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f9b5.png", - "sheet_x": 43, - "sheet_y": 32, - "short_name": "leg", - "short_names": ["leg"], + "image": "1fa99.png", + "sheet_x": 54, + "sheet_y": 18, + "short_name": "coin", + "short_names": ["coin"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 358, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F9B5-1F3FB", - "non_qualified": null, - "image": "1f9b5-1f3fb.png", - "sheet_x": 43, - "sheet_y": 33, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F9B5-1F3FC", - "non_qualified": null, - "image": "1f9b5-1f3fc.png", - "sheet_x": 43, - "sheet_y": 34, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F9B5-1F3FD", - "non_qualified": null, - "image": "1f9b5-1f3fd.png", - "sheet_x": 43, - "sheet_y": 35, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F9B5-1F3FE", - "non_qualified": null, - "image": "1f9b5-1f3fe.png", - "sheet_x": 43, - "sheet_y": 36, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F9B5-1F3FF", - "non_qualified": null, - "image": "1f9b5-1f3ff.png", - "sheet_x": 43, - "sheet_y": 37, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - } - } + "category": "Objects", + "subcategory": "money", + "sort_order": 1253, + "added_in": "13.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, { - "name": "FOOT", - "unified": "1F9B6", + "name": "CARPENTRY SAW", + "unified": "1FA9A", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f9b6.png", - "sheet_x": 43, - "sheet_y": 38, - "short_name": "foot", - "short_names": ["foot"], + "image": "1fa9a.png", + "sheet_x": 54, + "sheet_y": 19, + "short_name": "carpentry_saw", + "short_names": ["carpentry_saw"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 359, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F9B6-1F3FB", - "non_qualified": null, - "image": "1f9b6-1f3fb.png", - "sheet_x": 43, - "sheet_y": 39, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F9B6-1F3FC", - "non_qualified": null, - "image": "1f9b6-1f3fc.png", - "sheet_x": 43, - "sheet_y": 40, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F9B6-1F3FD", - "non_qualified": null, - "image": "1f9b6-1f3fd.png", - "sheet_x": 43, - "sheet_y": 41, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F9B6-1F3FE", - "non_qualified": null, - "image": "1f9b6-1f3fe.png", - "sheet_x": 43, - "sheet_y": 42, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F9B6-1F3FF", - "non_qualified": null, - "image": "1f9b6-1f3ff.png", - "sheet_x": 43, - "sheet_y": 43, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - } - } + "category": "Objects", + "subcategory": "tool", + "sort_order": 1322, + "added_in": "13.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, { - "name": "TOOTH", - "unified": "1F9B7", + "name": "SCREWDRIVER", + "unified": "1FA9B", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f9b7.png", - "sheet_x": 43, - "sheet_y": 44, - "short_name": "tooth", - "short_names": ["tooth"], + "image": "1fa9b.png", + "sheet_x": 54, + "sheet_y": 20, + "short_name": "screwdriver", + "short_names": ["screwdriver"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 399, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false + "category": "Objects", + "subcategory": "tool", + "sort_order": 1324, + "added_in": "13.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, { - "name": null, - "unified": "1F9B8-200D-1F468", + "name": "LADDER", + "unified": "1FA9C", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f9b8-200d-1f468.png", - "sheet_x": 43, - "sheet_y": 45, - "short_name": "man_superhero", - "short_names": ["man_superhero"], + "image": "1fa9c.png", + "sheet_x": 54, + "sheet_y": 21, + "short_name": "ladder", + "short_names": ["ladder"], "text": null, "texts": null, - "category": null, - "sort_order": null, - "added_in": null, - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F9B8-1F3FB-200D-1F468", - "non_qualified": null, - "image": "1f9b8-1f3fb-200d-1f468.png", - "sheet_x": 43, - "sheet_y": 46, - "added_in": null, - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F9B8-1F3FC-200D-1F468", - "non_qualified": null, - "image": "1f9b8-1f3fc-200d-1f468.png", - "sheet_x": 43, - "sheet_y": 47, - "added_in": null, - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F9B8-1F3FD-200D-1F468", - "non_qualified": null, - "image": "1f9b8-1f3fd-200d-1f468.png", - "sheet_x": 43, - "sheet_y": 48, - "added_in": null, - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F9B8-1F3FE-200D-1F468", - "non_qualified": null, - "image": "1f9b8-1f3fe-200d-1f468.png", - "sheet_x": 43, - "sheet_y": 49, - "added_in": null, - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F9B8-1F3FF-200D-1F468", - "non_qualified": null, - "image": "1f9b8-1f3ff-200d-1f468.png", - "sheet_x": 43, - "sheet_y": 50, - "added_in": null, - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - } - } + "category": "Objects", + "subcategory": "tool", + "sort_order": 1335, + "added_in": "13.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, { - "name": null, - "unified": "1F9B8-200D-1F469", + "name": "HOOK", + "unified": "1FA9D", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f9b8-200d-1f469.png", - "sheet_x": 43, - "sheet_y": 51, - "short_name": "woman_superhero", - "short_names": ["woman_superhero"], + "image": "1fa9d.png", + "sheet_x": 54, + "sheet_y": 22, + "short_name": "hook", + "short_names": ["hook"], "text": null, "texts": null, - "category": null, - "sort_order": null, - "added_in": null, - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F9B8-1F3FB-200D-1F469", - "non_qualified": null, - "image": "1f9b8-1f3fb-200d-1f469.png", - "sheet_x": 43, - "sheet_y": 52, - "added_in": null, - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F9B8-1F3FC-200D-1F469", - "non_qualified": null, - "image": "1f9b8-1f3fc-200d-1f469.png", - "sheet_x": 44, - "sheet_y": 0, - "added_in": null, - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F9B8-1F3FD-200D-1F469", - "non_qualified": null, - "image": "1f9b8-1f3fd-200d-1f469.png", - "sheet_x": 44, - "sheet_y": 1, - "added_in": null, - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F9B8-1F3FE-200D-1F469", - "non_qualified": null, - "image": "1f9b8-1f3fe-200d-1f469.png", - "sheet_x": 44, - "sheet_y": 2, - "added_in": null, - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F9B8-1F3FF-200D-1F469", - "non_qualified": null, - "image": "1f9b8-1f3ff-200d-1f469.png", - "sheet_x": 44, - "sheet_y": 3, - "added_in": null, - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - } - } + "category": "Objects", + "subcategory": "tool", + "sort_order": 1332, + "added_in": "13.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, { - "name": null, - "unified": "1F9B9-200D-1F468", + "name": "MIRROR", + "unified": "1FA9E", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f9b9-200d-1f468.png", - "sheet_x": 44, - "sheet_y": 4, - "short_name": "man_supervillain", - "short_names": ["man_supervillain"], - "text": null, - "texts": null, - "category": null, - "sort_order": null, - "added_in": null, - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F9B9-1F3FB-200D-1F468", - "non_qualified": null, - "image": "1f9b9-1f3fb-200d-1f468.png", - "sheet_x": 44, - "sheet_y": 5, - "added_in": null, - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F9B9-1F3FC-200D-1F468", - "non_qualified": null, - "image": "1f9b9-1f3fc-200d-1f468.png", - "sheet_x": 44, - "sheet_y": 6, - "added_in": null, - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F9B9-1F3FD-200D-1F468", - "non_qualified": null, - "image": "1f9b9-1f3fd-200d-1f468.png", - "sheet_x": 44, - "sheet_y": 7, - "added_in": null, - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F9B9-1F3FE-200D-1F468", - "non_qualified": null, - "image": "1f9b9-1f3fe-200d-1f468.png", - "sheet_x": 44, - "sheet_y": 8, - "added_in": null, - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F9B9-1F3FF-200D-1F468", - "non_qualified": null, - "image": "1f9b9-1f3ff-200d-1f468.png", - "sheet_x": 44, - "sheet_y": 9, - "added_in": null, - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - } - } + "image": "1fa9e.png", + "sheet_x": 54, + "sheet_y": 23, + "short_name": "mirror", + "short_names": ["mirror"], + "text": null, + "texts": null, + "category": "Objects", + "subcategory": "household", + "sort_order": 1352, + "added_in": "13.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, { - "name": null, - "unified": "1F9B9-200D-1F469", + "name": "WINDOW", + "unified": "1FA9F", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f9b9-200d-1f469.png", - "sheet_x": 44, - "sheet_y": 10, - "short_name": "woman_supervillain", - "short_names": ["woman_supervillain"], + "image": "1fa9f.png", + "sheet_x": 54, + "sheet_y": 24, + "short_name": "window", + "short_names": ["window"], "text": null, "texts": null, - "category": null, - "sort_order": null, - "added_in": null, - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F9B9-1F3FB-200D-1F469", - "non_qualified": null, - "image": "1f9b9-1f3fb-200d-1f469.png", - "sheet_x": 44, - "sheet_y": 11, - "added_in": null, - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F9B9-1F3FC-200D-1F469", - "non_qualified": null, - "image": "1f9b9-1f3fc-200d-1f469.png", - "sheet_x": 44, - "sheet_y": 12, - "added_in": null, - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F9B9-1F3FD-200D-1F469", - "non_qualified": null, - "image": "1f9b9-1f3fd-200d-1f469.png", - "sheet_x": 44, - "sheet_y": 13, - "added_in": null, - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F9B9-1F3FE-200D-1F469", - "non_qualified": null, - "image": "1f9b9-1f3fe-200d-1f469.png", - "sheet_x": 44, - "sheet_y": 14, - "added_in": null, - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F9B9-1F3FF-200D-1F469", - "non_qualified": null, - "image": "1f9b9-1f3ff-200d-1f469.png", - "sheet_x": 44, - "sheet_y": 15, - "added_in": null, - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - } - } + "category": "Objects", + "subcategory": "household", + "sort_order": 1353, + "added_in": "13.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, { - "name": "CHEESE WEDGE", - "unified": "1F9C0", + "name": "PLUNGER", + "unified": "1FAA0", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f9c0.png", - "sheet_x": 44, - "sheet_y": 16, - "short_name": "cheese_wedge", - "short_names": ["cheese_wedge"], + "image": "1faa0.png", + "sheet_x": 54, + "sheet_y": 25, + "short_name": "plunger", + "short_names": ["plunger"], "text": null, "texts": null, - "category": "Food & Drink", - "sort_order": 36, - "added_in": "8.0", + "category": "Objects", + "subcategory": "household", + "sort_order": 1358, + "added_in": "13.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, { - "name": "CUPCAKE", - "unified": "1F9C1", + "name": "SEWING NEEDLE", + "unified": "1FAA1", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f9c1.png", - "sheet_x": 44, - "sheet_y": 17, - "short_name": "cupcake", - "short_names": ["cupcake"], + "image": "1faa1.png", + "sheet_x": 54, + "sheet_y": 26, + "short_name": "sewing_needle", + "short_names": ["sewing_needle"], "text": null, "texts": null, - "category": "Food & Drink", - "sort_order": 82, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false + "category": "Activities", + "subcategory": "arts & crafts", + "sort_order": 1120, + "added_in": "13.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, { - "name": "SALT SHAKER", - "unified": "1F9C2", + "name": "KNOT", + "unified": "1FAA2", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f9c2.png", - "sheet_x": 44, - "sheet_y": 18, - "short_name": "salt", - "short_names": ["salt"], + "image": "1faa2.png", + "sheet_x": 54, + "sheet_y": 27, + "short_name": "knot", + "short_names": ["knot"], "text": null, "texts": null, - "category": "Food & Drink", - "sort_order": 56, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false + "category": "Activities", + "subcategory": "arts & crafts", + "sort_order": 1122, + "added_in": "13.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, { - "name": "FACE WITH MONOCLE", - "unified": "1F9D0", + "name": "BUCKET", + "unified": "1FAA3", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f9d0.png", - "sheet_x": 44, - "sheet_y": 19, - "short_name": "face_with_monocle", - "short_names": ["face_with_monocle"], + "image": "1faa3.png", + "sheet_x": 54, + "sheet_y": 28, + "short_name": "bucket", + "short_names": ["bucket"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 88, - "added_in": "10.0", + "category": "Objects", + "subcategory": "household", + "sort_order": 1368, + "added_in": "13.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, { - "name": "ADULT", - "unified": "1F9D1", + "name": "MOUSE TRAP", + "unified": "1FAA4", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f9d1.png", - "sheet_x": 44, - "sheet_y": 20, - "short_name": "adult", - "short_names": ["adult"], + "image": "1faa4.png", + "sheet_x": 54, + "sheet_y": 29, + "short_name": "mouse_trap", + "short_names": ["mouse_trap"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 118, - "added_in": "10.0", + "category": "Objects", + "subcategory": "household", + "sort_order": 1361, + "added_in": "13.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F9D1-1F3FB", - "non_qualified": null, - "image": "1f9d1-1f3fb.png", - "sheet_x": 44, - "sheet_y": 21, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F9D1-1F3FC", - "non_qualified": null, - "image": "1f9d1-1f3fc.png", - "sheet_x": 44, - "sheet_y": 22, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F9D1-1F3FD", - "non_qualified": null, - "image": "1f9d1-1f3fd.png", - "sheet_x": 44, - "sheet_y": 23, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F9D1-1F3FE", - "non_qualified": null, - "image": "1f9d1-1f3fe.png", - "sheet_x": 44, - "sheet_y": 24, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F9D1-1F3FF", - "non_qualified": null, - "image": "1f9d1-1f3ff.png", - "sheet_x": 44, - "sheet_y": 25, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - } + "has_img_facebook": true }, { - "name": "CHILD", - "unified": "1F9D2", + "name": "TOOTHBRUSH", + "unified": "1FAA5", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f9d2.png", - "sheet_x": 44, - "sheet_y": 26, - "short_name": "child", - "short_names": ["child"], + "image": "1faa5.png", + "sheet_x": 54, + "sheet_y": 30, + "short_name": "toothbrush", + "short_names": ["toothbrush"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 115, - "added_in": "10.0", + "category": "Objects", + "subcategory": "household", + "sort_order": 1371, + "added_in": "13.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F9D2-1F3FB", - "non_qualified": null, - "image": "1f9d2-1f3fb.png", - "sheet_x": 44, - "sheet_y": 27, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F9D2-1F3FC", - "non_qualified": null, - "image": "1f9d2-1f3fc.png", - "sheet_x": 44, - "sheet_y": 28, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F9D2-1F3FD", - "non_qualified": null, - "image": "1f9d2-1f3fd.png", - "sheet_x": 44, - "sheet_y": 29, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F9D2-1F3FE", - "non_qualified": null, - "image": "1f9d2-1f3fe.png", - "sheet_x": 44, - "sheet_y": 30, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F9D2-1F3FF", - "non_qualified": null, - "image": "1f9d2-1f3ff.png", - "sheet_x": 44, - "sheet_y": 31, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - } + "has_img_facebook": true }, { - "name": "OLDER ADULT", - "unified": "1F9D3", + "name": "HEADSTONE", + "unified": "1FAA6", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f9d3.png", - "sheet_x": 44, - "sheet_y": 32, - "short_name": "older_adult", - "short_names": ["older_adult"], + "image": "1faa6.png", + "sheet_x": 54, + "sheet_y": 31, + "short_name": "headstone", + "short_names": ["headstone"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 121, - "added_in": "10.0", + "category": "Objects", + "subcategory": "other-object", + "sort_order": 1377, + "added_in": "13.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F9D3-1F3FB", - "non_qualified": null, - "image": "1f9d3-1f3fb.png", - "sheet_x": 44, - "sheet_y": 33, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F9D3-1F3FC", - "non_qualified": null, - "image": "1f9d3-1f3fc.png", - "sheet_x": 44, - "sheet_y": 34, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F9D3-1F3FD", - "non_qualified": null, - "image": "1f9d3-1f3fd.png", - "sheet_x": 44, - "sheet_y": 35, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F9D3-1F3FE", - "non_qualified": null, - "image": "1f9d3-1f3fe.png", - "sheet_x": 44, - "sheet_y": 36, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F9D3-1F3FF", - "non_qualified": null, - "image": "1f9d3-1f3ff.png", - "sheet_x": 44, - "sheet_y": 37, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - } + "has_img_facebook": true }, { - "name": "BEARDED PERSON", - "unified": "1F9D4", + "name": "PLACARD", + "unified": "1FAA7", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f9d4.png", - "sheet_x": 44, - "sheet_y": 38, - "short_name": "bearded_person", - "short_names": ["bearded_person"], + "image": "1faa7.png", + "sheet_x": 54, + "sheet_y": 32, + "short_name": "placard", + "short_names": ["placard"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 175, - "added_in": "10.0", + "category": "Objects", + "subcategory": "other-object", + "sort_order": 1382, + "added_in": "13.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F9D4-1F3FB", - "non_qualified": null, - "image": "1f9d4-1f3fb.png", - "sheet_x": 44, - "sheet_y": 39, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F9D4-1F3FC", - "non_qualified": null, - "image": "1f9d4-1f3fc.png", - "sheet_x": 44, - "sheet_y": 40, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F9D4-1F3FD", - "non_qualified": null, - "image": "1f9d4-1f3fd.png", - "sheet_x": 44, - "sheet_y": 41, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F9D4-1F3FE", - "non_qualified": null, - "image": "1f9d4-1f3fe.png", - "sheet_x": 44, - "sheet_y": 42, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F9D4-1F3FF", - "non_qualified": null, - "image": "1f9d4-1f3ff.png", - "sheet_x": 44, - "sheet_y": 43, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - } + "has_img_facebook": true }, { - "name": "PERSON WITH HEADSCARF", - "unified": "1F9D5", + "name": "ROCK", + "unified": "1FAA8", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f9d5.png", - "sheet_x": 44, - "sheet_y": 44, - "short_name": "person_with_headscarf", - "short_names": ["person_with_headscarf"], + "image": "1faa8.png", + "sheet_x": 54, + "sheet_y": 33, + "short_name": "rock", + "short_names": ["rock"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 174, - "added_in": "10.0", + "category": "Travel & Places", + "subcategory": "place-building", + "sort_order": 840, + "added_in": "13.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F9D5-1F3FB", - "non_qualified": null, - "image": "1f9d5-1f3fb.png", - "sheet_x": 44, - "sheet_y": 45, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F9D5-1F3FC", - "non_qualified": null, - "image": "1f9d5-1f3fc.png", - "sheet_x": 44, - "sheet_y": 46, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F9D5-1F3FD", - "non_qualified": null, - "image": "1f9d5-1f3fd.png", - "sheet_x": 44, - "sheet_y": 47, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F9D5-1F3FE", - "non_qualified": null, - "image": "1f9d5-1f3fe.png", - "sheet_x": 44, - "sheet_y": 48, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F9D5-1F3FF", - "non_qualified": null, - "image": "1f9d5-1f3ff.png", - "sheet_x": 44, - "sheet_y": 49, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - } - } + "has_img_facebook": true }, { - "name": null, - "unified": "1F9D6-200D-2640-FE0F", - "non_qualified": "1F9D6-200D-2640", + "name": "MIRROR BALL", + "unified": "1FAA9", + "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f9d6-200d-2640-fe0f.png", - "sheet_x": 44, - "sheet_y": 50, - "short_name": "woman_in_steamy_room", - "short_names": ["woman_in_steamy_room"], + "image": "1faa9.png", + "sheet_x": 54, + "sheet_y": 34, + "short_name": "mirror_ball", + "short_names": ["mirror_ball"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 260, - "added_in": "10.0", + "category": "Activities", + "subcategory": "game", + "sort_order": 1106, + "added_in": "14.0", "has_img_apple": true, "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F9D6-1F3FB-200D-2640-FE0F", - "non_qualified": "1F9D6-1F3FB-200D-2640", - "image": "1f9d6-1f3fb-200d-2640-fe0f.png", - "sheet_x": 44, - "sheet_y": 51, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F9D6-1F3FC-200D-2640-FE0F", - "non_qualified": "1F9D6-1F3FC-200D-2640", - "image": "1f9d6-1f3fc-200d-2640-fe0f.png", - "sheet_x": 44, - "sheet_y": 52, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F9D6-1F3FD-200D-2640-FE0F", - "non_qualified": "1F9D6-1F3FD-200D-2640", - "image": "1f9d6-1f3fd-200d-2640-fe0f.png", - "sheet_x": 45, - "sheet_y": 0, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F9D6-1F3FE-200D-2640-FE0F", - "non_qualified": "1F9D6-1F3FE-200D-2640", - "image": "1f9d6-1f3fe-200d-2640-fe0f.png", - "sheet_x": 45, - "sheet_y": 1, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F9D6-1F3FF-200D-2640-FE0F", - "non_qualified": "1F9D6-1F3FF-200D-2640", - "image": "1f9d6-1f3ff-200d-2640-fe0f.png", - "sheet_x": 45, - "sheet_y": 2, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - } - } + "has_img_twitter": true, + "has_img_facebook": true }, { - "name": null, - "unified": "1F9D6-200D-2642-FE0F", - "non_qualified": "1F9D6-200D-2642", + "name": "IDENTIFICATION CARD", + "unified": "1FAAA", + "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f9d6-200d-2642-fe0f.png", - "sheet_x": 45, - "sheet_y": 3, - "short_name": "man_in_steamy_room", - "short_names": ["man_in_steamy_room"], + "image": "1faaa.png", + "sheet_x": 54, + "sheet_y": 35, + "short_name": "identification_card", + "short_names": ["identification_card"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 261, - "added_in": "10.0", + "category": "Objects", + "subcategory": "other-object", + "sort_order": 1383, + "added_in": "14.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F9D6-1F3FB-200D-2642-FE0F", - "non_qualified": "1F9D6-1F3FB-200D-2642", - "image": "1f9d6-1f3fb-200d-2642-fe0f.png", - "sheet_x": 45, - "sheet_y": 4, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false, - "obsoletes": "1F9D6-1F3FB" - }, - "1F3FC": { - "unified": "1F9D6-1F3FC-200D-2642-FE0F", - "non_qualified": "1F9D6-1F3FC-200D-2642", - "image": "1f9d6-1f3fc-200d-2642-fe0f.png", - "sheet_x": 45, - "sheet_y": 5, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false, - "obsoletes": "1F9D6-1F3FC" - }, - "1F3FD": { - "unified": "1F9D6-1F3FD-200D-2642-FE0F", - "non_qualified": "1F9D6-1F3FD-200D-2642", - "image": "1f9d6-1f3fd-200d-2642-fe0f.png", - "sheet_x": 45, - "sheet_y": 6, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false, - "obsoletes": "1F9D6-1F3FD" - }, - "1F3FE": { - "unified": "1F9D6-1F3FE-200D-2642-FE0F", - "non_qualified": "1F9D6-1F3FE-200D-2642", - "image": "1f9d6-1f3fe-200d-2642-fe0f.png", - "sheet_x": 45, - "sheet_y": 7, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false, - "obsoletes": "1F9D6-1F3FE" - }, - "1F3FF": { - "unified": "1F9D6-1F3FF-200D-2642-FE0F", - "non_qualified": "1F9D6-1F3FF-200D-2642", - "image": "1f9d6-1f3ff-200d-2642-fe0f.png", - "sheet_x": 45, - "sheet_y": 8, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false, - "obsoletes": "1F9D6-1F3FF" - } - }, - "obsoletes": "1F9D6" + "has_img_facebook": true }, { - "name": "PERSON IN STEAMY ROOM", - "unified": "1F9D6", + "name": "LOW BATTERY", + "unified": "1FAAB", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f9d6.png", - "sheet_x": 45, - "sheet_y": 9, - "short_name": "person_in_steamy_room", - "short_names": ["person_in_steamy_room"], + "image": "1faab.png", + "sheet_x": 54, + "sheet_y": 36, + "short_name": "low_battery", + "short_names": ["low_battery"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 259, - "added_in": "10.0", + "category": "Objects", + "subcategory": "computer", + "sort_order": 1206, + "added_in": "14.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F9D6-1F3FB", - "non_qualified": null, - "image": "1f9d6-1f3fb.png", - "sheet_x": 45, - "sheet_y": 10, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "obsoleted_by": "1F9D6-1F3FB-200D-2642-FE0F" - }, - "1F3FC": { - "unified": "1F9D6-1F3FC", - "non_qualified": null, - "image": "1f9d6-1f3fc.png", - "sheet_x": 45, - "sheet_y": 11, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "obsoleted_by": "1F9D6-1F3FC-200D-2642-FE0F" - }, - "1F3FD": { - "unified": "1F9D6-1F3FD", - "non_qualified": null, - "image": "1f9d6-1f3fd.png", - "sheet_x": 45, - "sheet_y": 12, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "obsoleted_by": "1F9D6-1F3FD-200D-2642-FE0F" - }, - "1F3FE": { - "unified": "1F9D6-1F3FE", - "non_qualified": null, - "image": "1f9d6-1f3fe.png", - "sheet_x": 45, - "sheet_y": 13, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "obsoleted_by": "1F9D6-1F3FE-200D-2642-FE0F" - }, - "1F3FF": { - "unified": "1F9D6-1F3FF", - "non_qualified": null, - "image": "1f9d6-1f3ff.png", - "sheet_x": 45, - "sheet_y": 14, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "obsoleted_by": "1F9D6-1F3FF-200D-2642-FE0F" - } - }, - "obsoleted_by": "1F9D6-200D-2642-FE0F" + "has_img_facebook": true }, { - "name": null, - "unified": "1F9D7-200D-2640-FE0F", - "non_qualified": "1F9D7-200D-2640", + "name": "HAMSA", + "unified": "1FAAC", + "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f9d7-200d-2640-fe0f.png", - "sheet_x": 45, - "sheet_y": 15, - "short_name": "woman_climbing", - "short_names": ["woman_climbing"], + "image": "1faac.png", + "sheet_x": 54, + "sheet_y": 37, + "short_name": "hamsa", + "short_names": ["hamsa"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 263, - "added_in": "10.0", + "category": "Objects", + "subcategory": "other-object", + "sort_order": 1380, + "added_in": "14.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F9D7-1F3FB-200D-2640-FE0F", - "non_qualified": "1F9D7-1F3FB-200D-2640", - "image": "1f9d7-1f3fb-200d-2640-fe0f.png", - "sheet_x": 45, - "sheet_y": 16, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false, - "obsoletes": "1F9D7-1F3FB" - }, - "1F3FC": { - "unified": "1F9D7-1F3FC-200D-2640-FE0F", - "non_qualified": "1F9D7-1F3FC-200D-2640", - "image": "1f9d7-1f3fc-200d-2640-fe0f.png", - "sheet_x": 45, - "sheet_y": 17, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false, - "obsoletes": "1F9D7-1F3FC" - }, - "1F3FD": { - "unified": "1F9D7-1F3FD-200D-2640-FE0F", - "non_qualified": "1F9D7-1F3FD-200D-2640", - "image": "1f9d7-1f3fd-200d-2640-fe0f.png", - "sheet_x": 45, - "sheet_y": 18, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false, - "obsoletes": "1F9D7-1F3FD" - }, - "1F3FE": { - "unified": "1F9D7-1F3FE-200D-2640-FE0F", - "non_qualified": "1F9D7-1F3FE-200D-2640", - "image": "1f9d7-1f3fe-200d-2640-fe0f.png", - "sheet_x": 45, - "sheet_y": 19, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false, - "obsoletes": "1F9D7-1F3FE" - }, - "1F3FF": { - "unified": "1F9D7-1F3FF-200D-2640-FE0F", - "non_qualified": "1F9D7-1F3FF-200D-2640", - "image": "1f9d7-1f3ff-200d-2640-fe0f.png", - "sheet_x": 45, - "sheet_y": 20, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false, - "obsoletes": "1F9D7-1F3FF" - } - }, - "obsoletes": "1F9D7" + "has_img_facebook": true }, { - "name": null, - "unified": "1F9D7-200D-2642-FE0F", - "non_qualified": "1F9D7-200D-2642", + "name": "FOLDING HAND FAN", + "unified": "1FAAD", + "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f9d7-200d-2642-fe0f.png", - "sheet_x": 45, - "sheet_y": 21, - "short_name": "man_climbing", - "short_names": ["man_climbing"], + "image": "1faad.png", + "sheet_x": 54, + "sheet_y": 38, + "short_name": "folding_hand_fan", + "short_names": ["folding_hand_fan"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 264, - "added_in": "10.0", + "category": "Objects", + "subcategory": "clothing", + "sort_order": 1143, + "added_in": "15.0", "has_img_apple": true, "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F9D7-1F3FB-200D-2642-FE0F", - "non_qualified": "1F9D7-1F3FB-200D-2642", - "image": "1f9d7-1f3fb-200d-2642-fe0f.png", - "sheet_x": 45, - "sheet_y": 22, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F9D7-1F3FC-200D-2642-FE0F", - "non_qualified": "1F9D7-1F3FC-200D-2642", - "image": "1f9d7-1f3fc-200d-2642-fe0f.png", - "sheet_x": 45, - "sheet_y": 23, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F9D7-1F3FD-200D-2642-FE0F", - "non_qualified": "1F9D7-1F3FD-200D-2642", - "image": "1f9d7-1f3fd-200d-2642-fe0f.png", - "sheet_x": 45, - "sheet_y": 24, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F9D7-1F3FE-200D-2642-FE0F", - "non_qualified": "1F9D7-1F3FE-200D-2642", - "image": "1f9d7-1f3fe-200d-2642-fe0f.png", - "sheet_x": 45, - "sheet_y": 25, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F9D7-1F3FF-200D-2642-FE0F", - "non_qualified": "1F9D7-1F3FF-200D-2642", - "image": "1f9d7-1f3ff-200d-2642-fe0f.png", - "sheet_x": 45, - "sheet_y": 26, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - } - } + "has_img_twitter": false, + "has_img_facebook": false }, { - "name": "PERSON CLIMBING", - "unified": "1F9D7", + "name": "HAIR PICK", + "unified": "1FAAE", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f9d7.png", - "sheet_x": 45, - "sheet_y": 27, - "short_name": "person_climbing", - "short_names": ["person_climbing"], + "image": "1faae.png", + "sheet_x": 54, + "sheet_y": 39, + "short_name": "hair_pick", + "short_names": ["hair_pick"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 262, - "added_in": "10.0", + "category": "Objects", + "subcategory": "clothing", + "sort_order": 1158, + "added_in": "15.0", "has_img_apple": true, "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F9D7-1F3FB", - "non_qualified": null, - "image": "1f9d7-1f3fb.png", - "sheet_x": 45, - "sheet_y": 28, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "obsoleted_by": "1F9D7-1F3FB-200D-2640-FE0F" - }, - "1F3FC": { - "unified": "1F9D7-1F3FC", - "non_qualified": null, - "image": "1f9d7-1f3fc.png", - "sheet_x": 45, - "sheet_y": 29, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "obsoleted_by": "1F9D7-1F3FC-200D-2640-FE0F" - }, - "1F3FD": { - "unified": "1F9D7-1F3FD", - "non_qualified": null, - "image": "1f9d7-1f3fd.png", - "sheet_x": 45, - "sheet_y": 30, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "obsoleted_by": "1F9D7-1F3FD-200D-2640-FE0F" - }, - "1F3FE": { - "unified": "1F9D7-1F3FE", - "non_qualified": null, - "image": "1f9d7-1f3fe.png", - "sheet_x": 45, - "sheet_y": 31, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "obsoleted_by": "1F9D7-1F3FE-200D-2640-FE0F" - }, - "1F3FF": { - "unified": "1F9D7-1F3FF", - "non_qualified": null, - "image": "1f9d7-1f3ff.png", - "sheet_x": 45, - "sheet_y": 32, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "obsoleted_by": "1F9D7-1F3FF-200D-2640-FE0F" - } - }, - "obsoleted_by": "1F9D7-200D-2640-FE0F" + "has_img_twitter": false, + "has_img_facebook": false }, { - "name": null, - "unified": "1F9D8-200D-2640-FE0F", - "non_qualified": "1F9D8-200D-2640", + "name": "KHANDA", + "unified": "1FAAF", + "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f9d8-200d-2640-fe0f.png", - "sheet_x": 45, - "sheet_y": 33, - "short_name": "woman_in_lotus_position", - "short_names": ["woman_in_lotus_position"], + "image": "1faaf.png", + "sheet_x": 54, + "sheet_y": 40, + "short_name": "khanda", + "short_names": ["khanda"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 266, - "added_in": "10.0", + "category": "Symbols", + "subcategory": "religion", + "sort_order": 1443, + "added_in": "15.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": false, + "has_img_facebook": false + }, + { + "name": "FLY", + "unified": "1FAB0", + "non_qualified": null, + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1fab0.png", + "sheet_x": 54, + "sheet_y": 41, + "short_name": "fly", + "short_names": ["fly"], + "text": null, + "texts": null, + "category": "Animals & Nature", + "subcategory": "animal-bug", + "sort_order": 656, + "added_in": "13.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F9D8-1F3FB-200D-2640-FE0F", - "non_qualified": "1F9D8-1F3FB-200D-2640", - "image": "1f9d8-1f3fb-200d-2640-fe0f.png", - "sheet_x": 45, - "sheet_y": 34, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false, - "obsoletes": "1F9D8-1F3FB" - }, - "1F3FC": { - "unified": "1F9D8-1F3FC-200D-2640-FE0F", - "non_qualified": "1F9D8-1F3FC-200D-2640", - "image": "1f9d8-1f3fc-200d-2640-fe0f.png", - "sheet_x": 45, - "sheet_y": 35, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false, - "obsoletes": "1F9D8-1F3FC" - }, - "1F3FD": { - "unified": "1F9D8-1F3FD-200D-2640-FE0F", - "non_qualified": "1F9D8-1F3FD-200D-2640", - "image": "1f9d8-1f3fd-200d-2640-fe0f.png", - "sheet_x": 45, - "sheet_y": 36, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false, - "obsoletes": "1F9D8-1F3FD" - }, - "1F3FE": { - "unified": "1F9D8-1F3FE-200D-2640-FE0F", - "non_qualified": "1F9D8-1F3FE-200D-2640", - "image": "1f9d8-1f3fe-200d-2640-fe0f.png", - "sheet_x": 45, - "sheet_y": 37, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false, - "obsoletes": "1F9D8-1F3FE" - }, - "1F3FF": { - "unified": "1F9D8-1F3FF-200D-2640-FE0F", - "non_qualified": "1F9D8-1F3FF-200D-2640", - "image": "1f9d8-1f3ff-200d-2640-fe0f.png", - "sheet_x": 45, - "sheet_y": 38, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false, - "obsoletes": "1F9D8-1F3FF" - } - }, - "obsoletes": "1F9D8" + "has_img_facebook": true }, { - "name": null, - "unified": "1F9D8-200D-2642-FE0F", - "non_qualified": "1F9D8-200D-2642", + "name": "WORM", + "unified": "1FAB1", + "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f9d8-200d-2642-fe0f.png", - "sheet_x": 45, - "sheet_y": 39, - "short_name": "man_in_lotus_position", - "short_names": ["man_in_lotus_position"], + "image": "1fab1.png", + "sheet_x": 54, + "sheet_y": 42, + "short_name": "worm", + "short_names": ["worm"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 267, - "added_in": "10.0", + "category": "Animals & Nature", + "subcategory": "animal-bug", + "sort_order": 657, + "added_in": "13.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F9D8-1F3FB-200D-2642-FE0F", - "non_qualified": "1F9D8-1F3FB-200D-2642", - "image": "1f9d8-1f3fb-200d-2642-fe0f.png", - "sheet_x": 45, - "sheet_y": 40, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F9D8-1F3FC-200D-2642-FE0F", - "non_qualified": "1F9D8-1F3FC-200D-2642", - "image": "1f9d8-1f3fc-200d-2642-fe0f.png", - "sheet_x": 45, - "sheet_y": 41, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F9D8-1F3FD-200D-2642-FE0F", - "non_qualified": "1F9D8-1F3FD-200D-2642", - "image": "1f9d8-1f3fd-200d-2642-fe0f.png", - "sheet_x": 45, - "sheet_y": 42, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F9D8-1F3FE-200D-2642-FE0F", - "non_qualified": "1F9D8-1F3FE-200D-2642", - "image": "1f9d8-1f3fe-200d-2642-fe0f.png", - "sheet_x": 45, - "sheet_y": 43, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F9D8-1F3FF-200D-2642-FE0F", - "non_qualified": "1F9D8-1F3FF-200D-2642", - "image": "1f9d8-1f3ff-200d-2642-fe0f.png", - "sheet_x": 45, - "sheet_y": 44, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - } - } + "has_img_facebook": true + }, + { + "name": "BEETLE", + "unified": "1FAB2", + "non_qualified": null, + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1fab2.png", + "sheet_x": 54, + "sheet_y": 43, + "short_name": "beetle", + "short_names": ["beetle"], + "text": null, + "texts": null, + "category": "Animals & Nature", + "subcategory": "animal-bug", + "sort_order": 648, + "added_in": "13.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, { - "name": "PERSON IN LOTUS POSITION", - "unified": "1F9D8", + "name": "COCKROACH", + "unified": "1FAB3", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f9d8.png", - "sheet_x": 45, + "image": "1fab3.png", + "sheet_x": 54, + "sheet_y": 44, + "short_name": "cockroach", + "short_names": ["cockroach"], + "text": null, + "texts": null, + "category": "Animals & Nature", + "subcategory": "animal-bug", + "sort_order": 651, + "added_in": "13.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + { + "name": "POTTED PLANT", + "unified": "1FAB4", + "non_qualified": null, + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1fab4.png", + "sheet_x": 54, "sheet_y": 45, - "short_name": "person_in_lotus_position", - "short_names": ["person_in_lotus_position"], + "short_name": "potted_plant", + "short_names": ["potted_plant"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 265, - "added_in": "10.0", + "category": "Animals & Nature", + "subcategory": "plant-other", + "sort_order": 672, + "added_in": "13.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F9D8-1F3FB", - "non_qualified": null, - "image": "1f9d8-1f3fb.png", - "sheet_x": 45, - "sheet_y": 46, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "obsoleted_by": "1F9D8-1F3FB-200D-2640-FE0F" - }, - "1F3FC": { - "unified": "1F9D8-1F3FC", - "non_qualified": null, - "image": "1f9d8-1f3fc.png", - "sheet_x": 45, - "sheet_y": 47, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "obsoleted_by": "1F9D8-1F3FC-200D-2640-FE0F" - }, - "1F3FD": { - "unified": "1F9D8-1F3FD", - "non_qualified": null, - "image": "1f9d8-1f3fd.png", - "sheet_x": 45, - "sheet_y": 48, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "obsoleted_by": "1F9D8-1F3FD-200D-2640-FE0F" - }, - "1F3FE": { - "unified": "1F9D8-1F3FE", - "non_qualified": null, - "image": "1f9d8-1f3fe.png", - "sheet_x": 45, - "sheet_y": 49, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "obsoleted_by": "1F9D8-1F3FE-200D-2640-FE0F" - }, - "1F3FF": { - "unified": "1F9D8-1F3FF", - "non_qualified": null, - "image": "1f9d8-1f3ff.png", - "sheet_x": 45, - "sheet_y": 50, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "obsoleted_by": "1F9D8-1F3FF-200D-2640-FE0F" - } - }, - "obsoleted_by": "1F9D8-200D-2640-FE0F" + "has_img_facebook": true }, { - "name": null, - "unified": "1F9D9-200D-2640-FE0F", - "non_qualified": "1F9D9-200D-2640", + "name": "WOOD", + "unified": "1FAB5", + "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f9d9-200d-2640-fe0f.png", - "sheet_x": 45, - "sheet_y": 51, - "short_name": "female_mage", - "short_names": ["female_mage"], + "image": "1fab5.png", + "sheet_x": 54, + "sheet_y": 46, + "short_name": "wood", + "short_names": ["wood"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 195, - "added_in": "10.0", + "category": "Travel & Places", + "subcategory": "place-building", + "sort_order": 841, + "added_in": "13.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F9D9-1F3FB-200D-2640-FE0F", - "non_qualified": "1F9D9-1F3FB-200D-2640", - "image": "1f9d9-1f3fb-200d-2640-fe0f.png", - "sheet_x": 45, - "sheet_y": 52, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false, - "obsoletes": "1F9D9-1F3FB" - }, - "1F3FC": { - "unified": "1F9D9-1F3FC-200D-2640-FE0F", - "non_qualified": "1F9D9-1F3FC-200D-2640", - "image": "1f9d9-1f3fc-200d-2640-fe0f.png", - "sheet_x": 46, - "sheet_y": 0, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false, - "obsoletes": "1F9D9-1F3FC" - }, - "1F3FD": { - "unified": "1F9D9-1F3FD-200D-2640-FE0F", - "non_qualified": "1F9D9-1F3FD-200D-2640", - "image": "1f9d9-1f3fd-200d-2640-fe0f.png", - "sheet_x": 46, - "sheet_y": 1, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false, - "obsoletes": "1F9D9-1F3FD" - }, - "1F3FE": { - "unified": "1F9D9-1F3FE-200D-2640-FE0F", - "non_qualified": "1F9D9-1F3FE-200D-2640", - "image": "1f9d9-1f3fe-200d-2640-fe0f.png", - "sheet_x": 46, - "sheet_y": 2, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false, - "obsoletes": "1F9D9-1F3FE" - }, - "1F3FF": { - "unified": "1F9D9-1F3FF-200D-2640-FE0F", - "non_qualified": "1F9D9-1F3FF-200D-2640", - "image": "1f9d9-1f3ff-200d-2640-fe0f.png", - "sheet_x": 46, - "sheet_y": 3, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false, - "obsoletes": "1F9D9-1F3FF" - } - }, - "obsoletes": "1F9D9" + "has_img_facebook": true }, { - "name": null, - "unified": "1F9D9-200D-2642-FE0F", - "non_qualified": "1F9D9-200D-2642", + "name": "FEATHER", + "unified": "1FAB6", + "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f9d9-200d-2642-fe0f.png", - "sheet_x": 46, - "sheet_y": 4, - "short_name": "male_mage", - "short_names": ["male_mage"], + "image": "1fab6.png", + "sheet_x": 54, + "sheet_y": 47, + "short_name": "feather", + "short_names": ["feather"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 196, - "added_in": "10.0", + "category": "Animals & Nature", + "subcategory": "animal-bird", + "sort_order": 615, + "added_in": "13.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F9D9-1F3FB-200D-2642-FE0F", - "non_qualified": "1F9D9-1F3FB-200D-2642", - "image": "1f9d9-1f3fb-200d-2642-fe0f.png", - "sheet_x": 46, - "sheet_y": 5, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F9D9-1F3FC-200D-2642-FE0F", - "non_qualified": "1F9D9-1F3FC-200D-2642", - "image": "1f9d9-1f3fc-200d-2642-fe0f.png", - "sheet_x": 46, - "sheet_y": 6, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F9D9-1F3FD-200D-2642-FE0F", - "non_qualified": "1F9D9-1F3FD-200D-2642", - "image": "1f9d9-1f3fd-200d-2642-fe0f.png", - "sheet_x": 46, - "sheet_y": 7, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F9D9-1F3FE-200D-2642-FE0F", - "non_qualified": "1F9D9-1F3FE-200D-2642", - "image": "1f9d9-1f3fe-200d-2642-fe0f.png", - "sheet_x": 46, - "sheet_y": 8, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F9D9-1F3FF-200D-2642-FE0F", - "non_qualified": "1F9D9-1F3FF-200D-2642", - "image": "1f9d9-1f3ff-200d-2642-fe0f.png", - "sheet_x": 46, - "sheet_y": 9, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - } - } + "has_img_facebook": true }, { - "name": "MAGE", - "unified": "1F9D9", + "name": "LOTUS", + "unified": "1FAB7", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f9d9.png", - "sheet_x": 46, - "sheet_y": 10, - "short_name": "mage", - "short_names": ["mage"], + "image": "1fab7.png", + "sheet_x": 54, + "sheet_y": 48, + "short_name": "lotus", + "short_names": ["lotus"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 194, - "added_in": "10.0", + "category": "Animals & Nature", + "subcategory": "plant-flower", + "sort_order": 662, + "added_in": "14.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F9D9-1F3FB", - "non_qualified": null, - "image": "1f9d9-1f3fb.png", - "sheet_x": 46, - "sheet_y": 11, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "obsoleted_by": "1F9D9-1F3FB-200D-2640-FE0F" - }, - "1F3FC": { - "unified": "1F9D9-1F3FC", - "non_qualified": null, - "image": "1f9d9-1f3fc.png", - "sheet_x": 46, - "sheet_y": 12, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "obsoleted_by": "1F9D9-1F3FC-200D-2640-FE0F" - }, - "1F3FD": { - "unified": "1F9D9-1F3FD", - "non_qualified": null, - "image": "1f9d9-1f3fd.png", - "sheet_x": 46, - "sheet_y": 13, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "obsoleted_by": "1F9D9-1F3FD-200D-2640-FE0F" - }, - "1F3FE": { - "unified": "1F9D9-1F3FE", - "non_qualified": null, - "image": "1f9d9-1f3fe.png", - "sheet_x": 46, - "sheet_y": 14, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "obsoleted_by": "1F9D9-1F3FE-200D-2640-FE0F" - }, - "1F3FF": { - "unified": "1F9D9-1F3FF", - "non_qualified": null, - "image": "1f9d9-1f3ff.png", - "sheet_x": 46, - "sheet_y": 15, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "obsoleted_by": "1F9D9-1F3FF-200D-2640-FE0F" - } - }, - "obsoleted_by": "1F9D9-200D-2640-FE0F" + "has_img_facebook": true }, { - "name": null, - "unified": "1F9DA-200D-2640-FE0F", - "non_qualified": "1F9DA-200D-2640", + "name": "CORAL", + "unified": "1FAB8", + "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f9da-200d-2640-fe0f.png", - "sheet_x": 46, - "sheet_y": 16, - "short_name": "female_fairy", - "short_names": ["female_fairy"], + "image": "1fab8.png", + "sheet_x": 54, + "sheet_y": 49, + "short_name": "coral", + "short_names": ["coral"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 198, - "added_in": "10.0", + "category": "Animals & Nature", + "subcategory": "animal-marine", + "sort_order": 641, + "added_in": "14.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F9DA-1F3FB-200D-2640-FE0F", - "non_qualified": "1F9DA-1F3FB-200D-2640", - "image": "1f9da-1f3fb-200d-2640-fe0f.png", - "sheet_x": 46, - "sheet_y": 17, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false, - "obsoletes": "1F9DA-1F3FB" - }, - "1F3FC": { - "unified": "1F9DA-1F3FC-200D-2640-FE0F", - "non_qualified": "1F9DA-1F3FC-200D-2640", - "image": "1f9da-1f3fc-200d-2640-fe0f.png", - "sheet_x": 46, - "sheet_y": 18, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false, - "obsoletes": "1F9DA-1F3FC" - }, - "1F3FD": { - "unified": "1F9DA-1F3FD-200D-2640-FE0F", - "non_qualified": "1F9DA-1F3FD-200D-2640", - "image": "1f9da-1f3fd-200d-2640-fe0f.png", - "sheet_x": 46, - "sheet_y": 19, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false, - "obsoletes": "1F9DA-1F3FD" - }, - "1F3FE": { - "unified": "1F9DA-1F3FE-200D-2640-FE0F", - "non_qualified": "1F9DA-1F3FE-200D-2640", - "image": "1f9da-1f3fe-200d-2640-fe0f.png", - "sheet_x": 46, - "sheet_y": 20, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false, - "obsoletes": "1F9DA-1F3FE" - }, - "1F3FF": { - "unified": "1F9DA-1F3FF-200D-2640-FE0F", - "non_qualified": "1F9DA-1F3FF-200D-2640", - "image": "1f9da-1f3ff-200d-2640-fe0f.png", - "sheet_x": 46, - "sheet_y": 21, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false, - "obsoletes": "1F9DA-1F3FF" - } - }, - "obsoletes": "1F9DA" + "has_img_facebook": true }, { - "name": null, - "unified": "1F9DA-200D-2642-FE0F", - "non_qualified": "1F9DA-200D-2642", + "name": "EMPTY NEST", + "unified": "1FAB9", + "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f9da-200d-2642-fe0f.png", - "sheet_x": 46, - "sheet_y": 22, - "short_name": "male_fairy", - "short_names": ["male_fairy"], + "image": "1fab9.png", + "sheet_x": 54, + "sheet_y": 50, + "short_name": "empty_nest", + "short_names": ["empty_nest"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 199, - "added_in": "10.0", + "category": "Animals & Nature", + "subcategory": "plant-other", + "sort_order": 684, + "added_in": "14.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F9DA-1F3FB-200D-2642-FE0F", - "non_qualified": "1F9DA-1F3FB-200D-2642", - "image": "1f9da-1f3fb-200d-2642-fe0f.png", - "sheet_x": 46, - "sheet_y": 23, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F9DA-1F3FC-200D-2642-FE0F", - "non_qualified": "1F9DA-1F3FC-200D-2642", - "image": "1f9da-1f3fc-200d-2642-fe0f.png", - "sheet_x": 46, - "sheet_y": 24, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F9DA-1F3FD-200D-2642-FE0F", - "non_qualified": "1F9DA-1F3FD-200D-2642", - "image": "1f9da-1f3fd-200d-2642-fe0f.png", - "sheet_x": 46, - "sheet_y": 25, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F9DA-1F3FE-200D-2642-FE0F", - "non_qualified": "1F9DA-1F3FE-200D-2642", - "image": "1f9da-1f3fe-200d-2642-fe0f.png", - "sheet_x": 46, - "sheet_y": 26, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F9DA-1F3FF-200D-2642-FE0F", - "non_qualified": "1F9DA-1F3FF-200D-2642", - "image": "1f9da-1f3ff-200d-2642-fe0f.png", - "sheet_x": 46, - "sheet_y": 27, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - } - } + "has_img_facebook": true }, { - "name": "FAIRY", - "unified": "1F9DA", + "name": "NEST WITH EGGS", + "unified": "1FABA", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f9da.png", - "sheet_x": 46, - "sheet_y": 28, - "short_name": "fairy", - "short_names": ["fairy"], + "image": "1faba.png", + "sheet_x": 54, + "sheet_y": 51, + "short_name": "nest_with_eggs", + "short_names": ["nest_with_eggs"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 197, - "added_in": "10.0", + "category": "Animals & Nature", + "subcategory": "plant-other", + "sort_order": 685, + "added_in": "14.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F9DA-1F3FB", - "non_qualified": null, - "image": "1f9da-1f3fb.png", - "sheet_x": 46, - "sheet_y": 29, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false, - "obsoleted_by": "1F9DA-1F3FB-200D-2640-FE0F" - }, - "1F3FC": { - "unified": "1F9DA-1F3FC", - "non_qualified": null, - "image": "1f9da-1f3fc.png", - "sheet_x": 46, - "sheet_y": 30, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false, - "obsoleted_by": "1F9DA-1F3FC-200D-2640-FE0F" - }, - "1F3FD": { - "unified": "1F9DA-1F3FD", - "non_qualified": null, - "image": "1f9da-1f3fd.png", - "sheet_x": 46, - "sheet_y": 31, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false, - "obsoleted_by": "1F9DA-1F3FD-200D-2640-FE0F" - }, - "1F3FE": { - "unified": "1F9DA-1F3FE", - "non_qualified": null, - "image": "1f9da-1f3fe.png", - "sheet_x": 46, - "sheet_y": 32, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false, - "obsoleted_by": "1F9DA-1F3FE-200D-2640-FE0F" - }, - "1F3FF": { - "unified": "1F9DA-1F3FF", - "non_qualified": null, - "image": "1f9da-1f3ff.png", - "sheet_x": 46, - "sheet_y": 33, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false, - "obsoleted_by": "1F9DA-1F3FF-200D-2640-FE0F" - } - }, - "obsoleted_by": "1F9DA-200D-2640-FE0F" + "has_img_facebook": true + }, + { + "name": "HYACINTH", + "unified": "1FABB", + "non_qualified": null, + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1fabb.png", + "sheet_x": 54, + "sheet_y": 52, + "short_name": "hyacinth", + "short_names": ["hyacinth"], + "text": null, + "texts": null, + "category": "Animals & Nature", + "subcategory": "plant-flower", + "sort_order": 670, + "added_in": "15.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": false, + "has_img_facebook": false }, { - "name": null, - "unified": "1F9DB-200D-2640-FE0F", - "non_qualified": "1F9DB-200D-2640", + "name": "JELLYFISH", + "unified": "1FABC", + "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f9db-200d-2640-fe0f.png", - "sheet_x": 46, - "sheet_y": 34, - "short_name": "female_vampire", - "short_names": ["female_vampire"], + "image": "1fabc.png", + "sheet_x": 54, + "sheet_y": 53, + "short_name": "jellyfish", + "short_names": ["jellyfish"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 201, - "added_in": "10.0", + "category": "Animals & Nature", + "subcategory": "animal-marine", + "sort_order": 642, + "added_in": "15.0", "has_img_apple": true, "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F9DB-1F3FB-200D-2640-FE0F", - "non_qualified": "1F9DB-1F3FB-200D-2640", - "image": "1f9db-1f3fb-200d-2640-fe0f.png", - "sheet_x": 46, - "sheet_y": 35, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false, - "obsoletes": "1F9DB-1F3FB" - }, - "1F3FC": { - "unified": "1F9DB-1F3FC-200D-2640-FE0F", - "non_qualified": "1F9DB-1F3FC-200D-2640", - "image": "1f9db-1f3fc-200d-2640-fe0f.png", - "sheet_x": 46, - "sheet_y": 36, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false, - "obsoletes": "1F9DB-1F3FC" - }, - "1F3FD": { - "unified": "1F9DB-1F3FD-200D-2640-FE0F", - "non_qualified": "1F9DB-1F3FD-200D-2640", - "image": "1f9db-1f3fd-200d-2640-fe0f.png", - "sheet_x": 46, - "sheet_y": 37, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false, - "obsoletes": "1F9DB-1F3FD" - }, - "1F3FE": { - "unified": "1F9DB-1F3FE-200D-2640-FE0F", - "non_qualified": "1F9DB-1F3FE-200D-2640", - "image": "1f9db-1f3fe-200d-2640-fe0f.png", - "sheet_x": 46, - "sheet_y": 38, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false, - "obsoletes": "1F9DB-1F3FE" - }, - "1F3FF": { - "unified": "1F9DB-1F3FF-200D-2640-FE0F", - "non_qualified": "1F9DB-1F3FF-200D-2640", - "image": "1f9db-1f3ff-200d-2640-fe0f.png", - "sheet_x": 46, - "sheet_y": 39, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false, - "obsoletes": "1F9DB-1F3FF" - } - }, - "obsoletes": "1F9DB" + "has_img_twitter": false, + "has_img_facebook": false }, { - "name": null, - "unified": "1F9DB-200D-2642-FE0F", - "non_qualified": "1F9DB-200D-2642", + "name": "WING", + "unified": "1FABD", + "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f9db-200d-2642-fe0f.png", - "sheet_x": 46, - "sheet_y": 40, - "short_name": "male_vampire", - "short_names": ["male_vampire"], + "image": "1fabd.png", + "sheet_x": 54, + "sheet_y": 54, + "short_name": "wing", + "short_names": ["wing"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 202, - "added_in": "10.0", + "category": "Animals & Nature", + "subcategory": "animal-bird", + "sort_order": 619, + "added_in": "15.0", "has_img_apple": true, "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F9DB-1F3FB-200D-2642-FE0F", - "non_qualified": "1F9DB-1F3FB-200D-2642", - "image": "1f9db-1f3fb-200d-2642-fe0f.png", - "sheet_x": 46, - "sheet_y": 41, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F9DB-1F3FC-200D-2642-FE0F", - "non_qualified": "1F9DB-1F3FC-200D-2642", - "image": "1f9db-1f3fc-200d-2642-fe0f.png", - "sheet_x": 46, - "sheet_y": 42, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F9DB-1F3FD-200D-2642-FE0F", - "non_qualified": "1F9DB-1F3FD-200D-2642", - "image": "1f9db-1f3fd-200d-2642-fe0f.png", - "sheet_x": 46, - "sheet_y": 43, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F9DB-1F3FE-200D-2642-FE0F", - "non_qualified": "1F9DB-1F3FE-200D-2642", - "image": "1f9db-1f3fe-200d-2642-fe0f.png", - "sheet_x": 46, - "sheet_y": 44, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F9DB-1F3FF-200D-2642-FE0F", - "non_qualified": "1F9DB-1F3FF-200D-2642", - "image": "1f9db-1f3ff-200d-2642-fe0f.png", - "sheet_x": 46, - "sheet_y": 45, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - } - } + "has_img_twitter": false, + "has_img_facebook": false }, { - "name": "VAMPIRE", - "unified": "1F9DB", + "name": "GOOSE", + "unified": "1FABF", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f9db.png", - "sheet_x": 46, - "sheet_y": 46, - "short_name": "vampire", - "short_names": ["vampire"], + "image": "1fabf.png", + "sheet_x": 54, + "sheet_y": 55, + "short_name": "goose", + "short_names": ["goose"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 200, - "added_in": "10.0", + "category": "Animals & Nature", + "subcategory": "animal-bird", + "sort_order": 621, + "added_in": "15.0", "has_img_apple": true, "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F9DB-1F3FB", - "non_qualified": null, - "image": "1f9db-1f3fb.png", - "sheet_x": 46, - "sheet_y": 47, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false, - "obsoleted_by": "1F9DB-1F3FB-200D-2640-FE0F" - }, - "1F3FC": { - "unified": "1F9DB-1F3FC", - "non_qualified": null, - "image": "1f9db-1f3fc.png", - "sheet_x": 46, - "sheet_y": 48, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false, - "obsoleted_by": "1F9DB-1F3FC-200D-2640-FE0F" - }, - "1F3FD": { - "unified": "1F9DB-1F3FD", - "non_qualified": null, - "image": "1f9db-1f3fd.png", - "sheet_x": 46, - "sheet_y": 49, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false, - "obsoleted_by": "1F9DB-1F3FD-200D-2640-FE0F" - }, - "1F3FE": { - "unified": "1F9DB-1F3FE", - "non_qualified": null, - "image": "1f9db-1f3fe.png", - "sheet_x": 46, - "sheet_y": 50, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false, - "obsoleted_by": "1F9DB-1F3FE-200D-2640-FE0F" - }, - "1F3FF": { - "unified": "1F9DB-1F3FF", - "non_qualified": null, - "image": "1f9db-1f3ff.png", - "sheet_x": 46, - "sheet_y": 51, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false, - "obsoleted_by": "1F9DB-1F3FF-200D-2640-FE0F" - } - }, - "obsoleted_by": "1F9DB-200D-2640-FE0F" + "has_img_twitter": false, + "has_img_facebook": false }, { - "name": null, - "unified": "1F9DC-200D-2640-FE0F", - "non_qualified": "1F9DC-200D-2640", + "name": "ANATOMICAL HEART", + "unified": "1FAC0", + "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f9dc-200d-2640-fe0f.png", - "sheet_x": 46, - "sheet_y": 52, - "short_name": "mermaid", - "short_names": ["mermaid"], + "image": "1fac0.png", + "sheet_x": 54, + "sheet_y": 56, + "short_name": "anatomical_heart", + "short_names": ["anatomical_heart"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 204, - "added_in": "10.0", + "category": "People & Body", + "subcategory": "body-parts", + "sort_order": 219, + "added_in": "13.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F9DC-1F3FB-200D-2640-FE0F", - "non_qualified": "1F9DC-1F3FB-200D-2640", - "image": "1f9dc-1f3fb-200d-2640-fe0f.png", - "sheet_x": 47, - "sheet_y": 0, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FC": { - "unified": "1F9DC-1F3FC-200D-2640-FE0F", - "non_qualified": "1F9DC-1F3FC-200D-2640", - "image": "1f9dc-1f3fc-200d-2640-fe0f.png", - "sheet_x": 47, - "sheet_y": 1, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FD": { - "unified": "1F9DC-1F3FD-200D-2640-FE0F", - "non_qualified": "1F9DC-1F3FD-200D-2640", - "image": "1f9dc-1f3fd-200d-2640-fe0f.png", - "sheet_x": 47, - "sheet_y": 2, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FE": { - "unified": "1F9DC-1F3FE-200D-2640-FE0F", - "non_qualified": "1F9DC-1F3FE-200D-2640", - "image": "1f9dc-1f3fe-200d-2640-fe0f.png", - "sheet_x": 47, - "sheet_y": 3, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - }, - "1F3FF": { - "unified": "1F9DC-1F3FF-200D-2640-FE0F", - "non_qualified": "1F9DC-1F3FF-200D-2640", - "image": "1f9dc-1f3ff-200d-2640-fe0f.png", - "sheet_x": 47, - "sheet_y": 4, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false - } - } + "has_img_facebook": true }, { - "name": null, - "unified": "1F9DC-200D-2642-FE0F", - "non_qualified": "1F9DC-200D-2642", + "name": "LUNGS", + "unified": "1FAC1", + "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f9dc-200d-2642-fe0f.png", - "sheet_x": 47, - "sheet_y": 5, - "short_name": "merman", - "short_names": ["merman"], + "image": "1fac1.png", + "sheet_x": 54, + "sheet_y": 57, + "short_name": "lungs", + "short_names": ["lungs"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 205, - "added_in": "10.0", + "category": "People & Body", + "subcategory": "body-parts", + "sort_order": 220, + "added_in": "13.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F9DC-1F3FB-200D-2642-FE0F", - "non_qualified": "1F9DC-1F3FB-200D-2642", - "image": "1f9dc-1f3fb-200d-2642-fe0f.png", - "sheet_x": 47, - "sheet_y": 6, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false, - "obsoletes": "1F9DC-1F3FB" - }, - "1F3FC": { - "unified": "1F9DC-1F3FC-200D-2642-FE0F", - "non_qualified": "1F9DC-1F3FC-200D-2642", - "image": "1f9dc-1f3fc-200d-2642-fe0f.png", - "sheet_x": 47, - "sheet_y": 7, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false, - "obsoletes": "1F9DC-1F3FC" - }, - "1F3FD": { - "unified": "1F9DC-1F3FD-200D-2642-FE0F", - "non_qualified": "1F9DC-1F3FD-200D-2642", - "image": "1f9dc-1f3fd-200d-2642-fe0f.png", - "sheet_x": 47, - "sheet_y": 8, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false, - "obsoletes": "1F9DC-1F3FD" - }, - "1F3FE": { - "unified": "1F9DC-1F3FE-200D-2642-FE0F", - "non_qualified": "1F9DC-1F3FE-200D-2642", - "image": "1f9dc-1f3fe-200d-2642-fe0f.png", - "sheet_x": 47, - "sheet_y": 9, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false, - "obsoletes": "1F9DC-1F3FE" - }, - "1F3FF": { - "unified": "1F9DC-1F3FF-200D-2642-FE0F", - "non_qualified": "1F9DC-1F3FF-200D-2642", - "image": "1f9dc-1f3ff-200d-2642-fe0f.png", - "sheet_x": 47, - "sheet_y": 10, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false, - "obsoletes": "1F9DC-1F3FF" - } - }, - "obsoletes": "1F9DC" + "has_img_facebook": true }, { - "name": "MERPERSON", - "unified": "1F9DC", + "name": "PEOPLE HUGGING", + "unified": "1FAC2", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f9dc.png", - "sheet_x": 47, - "sheet_y": 11, - "short_name": "merperson", - "short_names": ["merperson"], + "image": "1fac2.png", + "sheet_x": 54, + "sheet_y": 58, + "short_name": "people_hugging", + "short_names": ["people_hugging"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 203, - "added_in": "10.0", + "category": "People & Body", + "subcategory": "person-symbol", + "sort_order": 528, + "added_in": "13.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "skin_variations": { - "1F3FB": { - "unified": "1F9DC-1F3FB", - "non_qualified": null, - "image": "1f9dc-1f3fb.png", - "sheet_x": 47, - "sheet_y": 12, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "obsoleted_by": "1F9DC-1F3FB-200D-2642-FE0F" - }, - "1F3FC": { - "unified": "1F9DC-1F3FC", - "non_qualified": null, - "image": "1f9dc-1f3fc.png", - "sheet_x": 47, - "sheet_y": 13, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "obsoleted_by": "1F9DC-1F3FC-200D-2642-FE0F" - }, - "1F3FD": { - "unified": "1F9DC-1F3FD", - "non_qualified": null, - "image": "1f9dc-1f3fd.png", - "sheet_x": 47, - "sheet_y": 14, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "obsoleted_by": "1F9DC-1F3FD-200D-2642-FE0F" - }, - "1F3FE": { - "unified": "1F9DC-1F3FE", - "non_qualified": null, - "image": "1f9dc-1f3fe.png", - "sheet_x": 47, - "sheet_y": 15, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "obsoleted_by": "1F9DC-1F3FE-200D-2642-FE0F" - }, - "1F3FF": { - "unified": "1F9DC-1F3FF", - "non_qualified": null, - "image": "1f9dc-1f3ff.png", - "sheet_x": 47, - "sheet_y": 16, - "added_in": "10.0", - "has_img_apple": true, - "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "obsoleted_by": "1F9DC-1F3FF-200D-2642-FE0F" - } - }, - "obsoleted_by": "1F9DC-200D-2642-FE0F" + "has_img_facebook": true }, { - "name": null, - "unified": "1F9DD-200D-2640-FE0F", - "non_qualified": "1F9DD-200D-2640", + "name": "PREGNANT MAN", + "unified": "1FAC3", + "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f9dd-200d-2640-fe0f.png", - "sheet_x": 47, - "sheet_y": 17, - "short_name": "female_elf", - "short_names": ["female_elf"], + "image": "1fac3.png", + "sheet_x": 54, + "sheet_y": 59, + "short_name": "pregnant_man", + "short_names": ["pregnant_man"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 207, - "added_in": "10.0", + "category": "People & Body", + "subcategory": "person-role", + "sort_order": 362, + "added_in": "14.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true, - "has_img_messenger": false, "skin_variations": { "1F3FB": { - "unified": "1F9DD-1F3FB-200D-2640-FE0F", - "non_qualified": "1F9DD-1F3FB-200D-2640", - "image": "1f9dd-1f3fb-200d-2640-fe0f.png", - "sheet_x": 47, - "sheet_y": 18, - "added_in": "10.0", + "unified": "1FAC3-1F3FB", + "non_qualified": null, + "image": "1fac3-1f3fb.png", + "sheet_x": 54, + "sheet_y": 60, + "added_in": "14.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false + "has_img_facebook": true }, "1F3FC": { - "unified": "1F9DD-1F3FC-200D-2640-FE0F", - "non_qualified": "1F9DD-1F3FC-200D-2640", - "image": "1f9dd-1f3fc-200d-2640-fe0f.png", - "sheet_x": 47, - "sheet_y": 19, - "added_in": "10.0", + "unified": "1FAC3-1F3FC", + "non_qualified": null, + "image": "1fac3-1f3fc.png", + "sheet_x": 55, + "sheet_y": 0, + "added_in": "14.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false + "has_img_facebook": true }, "1F3FD": { - "unified": "1F9DD-1F3FD-200D-2640-FE0F", - "non_qualified": "1F9DD-1F3FD-200D-2640", - "image": "1f9dd-1f3fd-200d-2640-fe0f.png", - "sheet_x": 47, - "sheet_y": 20, - "added_in": "10.0", + "unified": "1FAC3-1F3FD", + "non_qualified": null, + "image": "1fac3-1f3fd.png", + "sheet_x": 55, + "sheet_y": 1, + "added_in": "14.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false + "has_img_facebook": true }, "1F3FE": { - "unified": "1F9DD-1F3FE-200D-2640-FE0F", - "non_qualified": "1F9DD-1F3FE-200D-2640", - "image": "1f9dd-1f3fe-200d-2640-fe0f.png", - "sheet_x": 47, - "sheet_y": 21, - "added_in": "10.0", + "unified": "1FAC3-1F3FE", + "non_qualified": null, + "image": "1fac3-1f3fe.png", + "sheet_x": 55, + "sheet_y": 2, + "added_in": "14.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false + "has_img_facebook": true }, "1F3FF": { - "unified": "1F9DD-1F3FF-200D-2640-FE0F", - "non_qualified": "1F9DD-1F3FF-200D-2640", - "image": "1f9dd-1f3ff-200d-2640-fe0f.png", - "sheet_x": 47, - "sheet_y": 22, - "added_in": "10.0", + "unified": "1FAC3-1F3FF", + "non_qualified": null, + "image": "1fac3-1f3ff.png", + "sheet_x": 55, + "sheet_y": 3, + "added_in": "14.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false + "has_img_facebook": true } } }, { - "name": null, - "unified": "1F9DD-200D-2642-FE0F", - "non_qualified": "1F9DD-200D-2642", + "name": "PREGNANT PERSON", + "unified": "1FAC4", + "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f9dd-200d-2642-fe0f.png", - "sheet_x": 47, - "sheet_y": 23, - "short_name": "male_elf", - "short_names": ["male_elf"], + "image": "1fac4.png", + "sheet_x": 55, + "sheet_y": 4, + "short_name": "pregnant_person", + "short_names": ["pregnant_person"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 208, - "added_in": "10.0", + "category": "People & Body", + "subcategory": "person-role", + "sort_order": 363, + "added_in": "14.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true, - "has_img_messenger": false, "skin_variations": { "1F3FB": { - "unified": "1F9DD-1F3FB-200D-2642-FE0F", - "non_qualified": "1F9DD-1F3FB-200D-2642", - "image": "1f9dd-1f3fb-200d-2642-fe0f.png", - "sheet_x": 47, - "sheet_y": 24, - "added_in": "10.0", + "unified": "1FAC4-1F3FB", + "non_qualified": null, + "image": "1fac4-1f3fb.png", + "sheet_x": 55, + "sheet_y": 5, + "added_in": "14.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false, - "obsoletes": "1F9DD-1F3FB" + "has_img_facebook": true }, "1F3FC": { - "unified": "1F9DD-1F3FC-200D-2642-FE0F", - "non_qualified": "1F9DD-1F3FC-200D-2642", - "image": "1f9dd-1f3fc-200d-2642-fe0f.png", - "sheet_x": 47, - "sheet_y": 25, - "added_in": "10.0", + "unified": "1FAC4-1F3FC", + "non_qualified": null, + "image": "1fac4-1f3fc.png", + "sheet_x": 55, + "sheet_y": 6, + "added_in": "14.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false, - "obsoletes": "1F9DD-1F3FC" + "has_img_facebook": true }, "1F3FD": { - "unified": "1F9DD-1F3FD-200D-2642-FE0F", - "non_qualified": "1F9DD-1F3FD-200D-2642", - "image": "1f9dd-1f3fd-200d-2642-fe0f.png", - "sheet_x": 47, - "sheet_y": 26, - "added_in": "10.0", + "unified": "1FAC4-1F3FD", + "non_qualified": null, + "image": "1fac4-1f3fd.png", + "sheet_x": 55, + "sheet_y": 7, + "added_in": "14.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false, - "obsoletes": "1F9DD-1F3FD" + "has_img_facebook": true }, "1F3FE": { - "unified": "1F9DD-1F3FE-200D-2642-FE0F", - "non_qualified": "1F9DD-1F3FE-200D-2642", - "image": "1f9dd-1f3fe-200d-2642-fe0f.png", - "sheet_x": 47, - "sheet_y": 27, - "added_in": "10.0", + "unified": "1FAC4-1F3FE", + "non_qualified": null, + "image": "1fac4-1f3fe.png", + "sheet_x": 55, + "sheet_y": 8, + "added_in": "14.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false, - "obsoletes": "1F9DD-1F3FE" - }, - "1F3FF": { - "unified": "1F9DD-1F3FF-200D-2642-FE0F", - "non_qualified": "1F9DD-1F3FF-200D-2642", - "image": "1f9dd-1f3ff-200d-2642-fe0f.png", - "sheet_x": 47, - "sheet_y": 28, - "added_in": "10.0", + "has_img_facebook": true + }, + "1F3FF": { + "unified": "1FAC4-1F3FF", + "non_qualified": null, + "image": "1fac4-1f3ff.png", + "sheet_x": 55, + "sheet_y": 9, + "added_in": "14.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false, - "obsoletes": "1F9DD-1F3FF" + "has_img_facebook": true } - }, - "obsoletes": "1F9DD" + } }, { - "name": "ELF", - "unified": "1F9DD", + "name": "PERSON WITH CROWN", + "unified": "1FAC5", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f9dd.png", - "sheet_x": 47, - "sheet_y": 29, - "short_name": "elf", - "short_names": ["elf"], + "image": "1fac5.png", + "sheet_x": 55, + "sheet_y": 10, + "short_name": "person_with_crown", + "short_names": ["person_with_crown"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 206, - "added_in": "10.0", + "category": "People & Body", + "subcategory": "person-role", + "sort_order": 347, + "added_in": "14.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true, - "has_img_messenger": false, "skin_variations": { "1F3FB": { - "unified": "1F9DD-1F3FB", + "unified": "1FAC5-1F3FB", "non_qualified": null, - "image": "1f9dd-1f3fb.png", - "sheet_x": 47, - "sheet_y": 30, - "added_in": "10.0", + "image": "1fac5-1f3fb.png", + "sheet_x": 55, + "sheet_y": 11, + "added_in": "14.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "obsoleted_by": "1F9DD-1F3FB-200D-2642-FE0F" + "has_img_facebook": true }, "1F3FC": { - "unified": "1F9DD-1F3FC", + "unified": "1FAC5-1F3FC", "non_qualified": null, - "image": "1f9dd-1f3fc.png", - "sheet_x": 47, - "sheet_y": 31, - "added_in": "10.0", + "image": "1fac5-1f3fc.png", + "sheet_x": 55, + "sheet_y": 12, + "added_in": "14.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "obsoleted_by": "1F9DD-1F3FC-200D-2642-FE0F" + "has_img_facebook": true }, "1F3FD": { - "unified": "1F9DD-1F3FD", + "unified": "1FAC5-1F3FD", "non_qualified": null, - "image": "1f9dd-1f3fd.png", - "sheet_x": 47, - "sheet_y": 32, - "added_in": "10.0", + "image": "1fac5-1f3fd.png", + "sheet_x": 55, + "sheet_y": 13, + "added_in": "14.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "obsoleted_by": "1F9DD-1F3FD-200D-2642-FE0F" + "has_img_facebook": true }, "1F3FE": { - "unified": "1F9DD-1F3FE", + "unified": "1FAC5-1F3FE", "non_qualified": null, - "image": "1f9dd-1f3fe.png", - "sheet_x": 47, - "sheet_y": 33, - "added_in": "10.0", + "image": "1fac5-1f3fe.png", + "sheet_x": 55, + "sheet_y": 14, + "added_in": "14.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "obsoleted_by": "1F9DD-1F3FE-200D-2642-FE0F" + "has_img_facebook": true }, "1F3FF": { - "unified": "1F9DD-1F3FF", + "unified": "1FAC5-1F3FF", "non_qualified": null, - "image": "1f9dd-1f3ff.png", - "sheet_x": 47, - "sheet_y": 34, - "added_in": "10.0", + "image": "1fac5-1f3ff.png", + "sheet_x": 55, + "sheet_y": 15, + "added_in": "14.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "obsoleted_by": "1F9DD-1F3FF-200D-2642-FE0F" + "has_img_facebook": true } - }, - "obsoleted_by": "1F9DD-200D-2642-FE0F" + } }, { - "name": null, - "unified": "1F9DE-200D-2640-FE0F", - "non_qualified": "1F9DE-200D-2640", + "name": "MOOSE", + "unified": "1FACE", + "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f9de-200d-2640-fe0f.png", - "sheet_x": 47, - "sheet_y": 35, - "short_name": "female_genie", - "short_names": ["female_genie"], + "image": "1face.png", + "sheet_x": 55, + "sheet_y": 16, + "short_name": "moose", + "short_names": ["moose"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 210, - "added_in": "10.0", + "category": "Animals & Nature", + "subcategory": "animal-mammal", + "sort_order": 555, + "added_in": "15.0", "has_img_apple": true, "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_twitter": false, + "has_img_facebook": false }, { - "name": null, - "unified": "1F9DE-200D-2642-FE0F", - "non_qualified": "1F9DE-200D-2642", + "name": "DONKEY", + "unified": "1FACF", + "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f9de-200d-2642-fe0f.png", - "sheet_x": 47, - "sheet_y": 36, - "short_name": "male_genie", - "short_names": ["male_genie"], + "image": "1facf.png", + "sheet_x": 55, + "sheet_y": 17, + "short_name": "donkey", + "short_names": ["donkey"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 211, - "added_in": "10.0", + "category": "Animals & Nature", + "subcategory": "animal-mammal", + "sort_order": 556, + "added_in": "15.0", "has_img_apple": true, "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "obsoletes": "1F9DE" + "has_img_twitter": false, + "has_img_facebook": false }, { - "name": "GENIE", - "unified": "1F9DE", + "name": "BLUEBERRIES", + "unified": "1FAD0", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f9de.png", - "sheet_x": 47, - "sheet_y": 37, - "short_name": "genie", - "short_names": ["genie"], + "image": "1fad0.png", + "sheet_x": 55, + "sheet_y": 18, + "short_name": "blueberries", + "short_names": ["blueberries"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 209, - "added_in": "10.0", + "category": "Food & Drink", + "subcategory": "food-fruit", + "sort_order": 701, + "added_in": "13.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "obsoleted_by": "1F9DE-200D-2642-FE0F" + "has_img_facebook": true }, { - "name": null, - "unified": "1F9DF-200D-2640-FE0F", - "non_qualified": "1F9DF-200D-2640", + "name": "BELL PEPPER", + "unified": "1FAD1", + "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f9df-200d-2640-fe0f.png", - "sheet_x": 47, - "sheet_y": 38, - "short_name": "female_zombie", - "short_names": ["female_zombie"], + "image": "1fad1.png", + "sheet_x": 55, + "sheet_y": 19, + "short_name": "bell_pepper", + "short_names": ["bell_pepper"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 213, - "added_in": "10.0", + "category": "Food & Drink", + "subcategory": "food-vegetable", + "sort_order": 712, + "added_in": "13.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, { - "name": null, - "unified": "1F9DF-200D-2642-FE0F", - "non_qualified": "1F9DF-200D-2642", + "name": "OLIVE", + "unified": "1FAD2", + "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f9df-200d-2642-fe0f.png", - "sheet_x": 47, - "sheet_y": 39, - "short_name": "male_zombie", - "short_names": ["male_zombie"], + "image": "1fad2.png", + "sheet_x": 55, + "sheet_y": 20, + "short_name": "olive", + "short_names": ["olive"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 214, - "added_in": "10.0", + "category": "Food & Drink", + "subcategory": "food-fruit", + "sort_order": 704, + "added_in": "13.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "obsoletes": "1F9DF" + "has_img_facebook": true }, { - "name": "ZOMBIE", - "unified": "1F9DF", + "name": "FLATBREAD", + "unified": "1FAD3", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f9df.png", - "sheet_x": 47, - "sheet_y": 40, - "short_name": "zombie", - "short_names": ["zombie"], + "image": "1fad3.png", + "sheet_x": 55, + "sheet_y": 21, + "short_name": "flatbread", + "short_names": ["flatbread"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 212, - "added_in": "10.0", + "category": "Food & Drink", + "subcategory": "food-prepared", + "sort_order": 726, + "added_in": "13.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false, - "obsoleted_by": "1F9DF-200D-2642-FE0F" + "has_img_facebook": true }, { - "name": "BRAIN", - "unified": "1F9E0", + "name": "TAMALE", + "unified": "1FAD4", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f9e0.png", - "sheet_x": 47, - "sheet_y": 41, - "short_name": "brain", - "short_names": ["brain"], + "image": "1fad4.png", + "sheet_x": 55, + "sheet_y": 22, + "short_name": "tamale", + "short_names": ["tamale"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 397, - "added_in": "10.0", + "category": "Food & Drink", + "subcategory": "food-prepared", + "sort_order": 743, + "added_in": "13.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, { - "name": "ORANGE HEART", - "unified": "1F9E1", + "name": "FONDUE", + "unified": "1FAD5", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f9e1.png", - "sheet_x": 47, - "sheet_y": 42, - "short_name": "orange_heart", - "short_names": ["orange_heart"], + "image": "1fad5.png", + "sheet_x": 55, + "sheet_y": 23, + "short_name": "fondue", + "short_names": ["fondue"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 413, - "added_in": "10.0", + "category": "Food & Drink", + "subcategory": "food-prepared", + "sort_order": 750, + "added_in": "13.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, { - "name": "BILLED CAP", - "unified": "1F9E2", + "name": "TEAPOT", + "unified": "1FAD6", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f9e2.png", - "sheet_x": 47, - "sheet_y": 43, - "short_name": "billed_cap", - "short_names": ["billed_cap"], + "image": "1fad6.png", + "sheet_x": 55, + "sheet_y": 24, + "short_name": "teapot", + "short_names": ["teapot"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 464, - "added_in": "10.0", + "category": "Food & Drink", + "subcategory": "drink", + "sort_order": 796, + "added_in": "13.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, { - "name": "SCARF", - "unified": "1F9E3", + "name": "POURING LIQUID", + "unified": "1FAD7", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f9e3.png", - "sheet_x": 47, - "sheet_y": 44, - "short_name": "scarf", - "short_names": ["scarf"], + "image": "1fad7.png", + "sheet_x": 55, + "sheet_y": 25, + "short_name": "pouring_liquid", + "short_names": ["pouring_liquid"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 440, - "added_in": "10.0", + "category": "Food & Drink", + "subcategory": "drink", + "sort_order": 807, + "added_in": "14.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, { - "name": "GLOVES", - "unified": "1F9E4", + "name": "BEANS", + "unified": "1FAD8", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f9e4.png", - "sheet_x": 47, - "sheet_y": 45, - "short_name": "gloves", - "short_names": ["gloves"], + "image": "1fad8.png", + "sheet_x": 55, + "sheet_y": 26, + "short_name": "beans", + "short_names": ["beans"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 441, - "added_in": "10.0", + "category": "Food & Drink", + "subcategory": "food-vegetable", + "sort_order": 719, + "added_in": "14.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, { - "name": "COAT", - "unified": "1F9E5", + "name": "JAR", + "unified": "1FAD9", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f9e5.png", - "sheet_x": 47, - "sheet_y": 46, - "short_name": "coat", - "short_names": ["coat"], + "image": "1fad9.png", + "sheet_x": 55, + "sheet_y": 27, + "short_name": "jar", + "short_names": ["jar"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 442, - "added_in": "10.0", + "category": "Food & Drink", + "subcategory": "dishware", + "sort_order": 818, + "added_in": "14.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, { - "name": "SOCKS", - "unified": "1F9E6", + "name": "GINGER ROOT", + "unified": "1FADA", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f9e6.png", - "sheet_x": 47, - "sheet_y": 47, - "short_name": "socks", - "short_names": ["socks"], + "image": "1fada.png", + "sheet_x": 55, + "sheet_y": 28, + "short_name": "ginger_root", + "short_names": ["ginger_root"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 443, - "added_in": "10.0", + "category": "Food & Drink", + "subcategory": "food-vegetable", + "sort_order": 721, + "added_in": "15.0", "has_img_apple": true, "has_img_google": true, - "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false - }, - { - "name": "RED GIFT ENVELOPE", - "unified": "1F9E7", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f9e7.png", - "sheet_x": 47, - "sheet_y": 48, - "short_name": "red_envelope", - "short_names": ["red_envelope"], - "text": null, - "texts": null, - "category": "Activities", - "sort_order": 16, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - }, - { - "name": "FIRECRACKER", - "unified": "1F9E8", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f9e8.png", - "sheet_x": 47, - "sheet_y": 49, - "short_name": "firecracker", - "short_names": ["firecracker"], - "text": null, - "texts": null, - "category": "Activities", - "sort_order": 5, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - }, - { - "name": "JIGSAW PUZZLE PIECE", - "unified": "1F9E9", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f9e9.png", - "sheet_x": 47, - "sheet_y": 50, - "short_name": "jigsaw", - "short_names": ["jigsaw"], - "text": null, - "texts": null, - "category": "Activities", - "sort_order": 62, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - }, - { - "name": "TEST TUBE", - "unified": "1F9EA", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f9ea.png", - "sheet_x": 47, - "sheet_y": 51, - "short_name": "test_tube", - "short_names": ["test_tube"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 155, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - }, - { - "name": "PETRI DISH", - "unified": "1F9EB", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f9eb.png", - "sheet_x": 47, - "sheet_y": 52, - "short_name": "petri_dish", - "short_names": ["petri_dish"], - "text": null, - "texts": null, - "category": "Objects", - "sort_order": 156, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false + "has_img_facebook": false }, { - "name": "DNA DOUBLE HELIX", - "unified": "1F9EC", + "name": "PEA POD", + "unified": "1FADB", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f9ec.png", - "sheet_x": 48, - "sheet_y": 0, - "short_name": "dna", - "short_names": ["dna"], + "image": "1fadb.png", + "sheet_x": 55, + "sheet_y": 29, + "short_name": "pea_pod", + "short_names": ["pea_pod"], "text": null, "texts": null, - "category": "Objects", - "sort_order": 157, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, + "category": "Food & Drink", + "subcategory": "food-vegetable", + "sort_order": 722, + "added_in": "15.0", + "has_img_apple": true, + "has_img_google": true, "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false + "has_img_facebook": false }, { - "name": "COMPASS", - "unified": "1F9ED", + "name": "MELTING FACE", + "unified": "1FAE0", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f9ed.png", - "sheet_x": 48, - "sheet_y": 1, - "short_name": "compass", - "short_names": ["compass"], + "image": "1fae0.png", + "sheet_x": 55, + "sheet_y": 30, + "short_name": "melting_face", + "short_names": ["melting_face"], "text": null, "texts": null, - "category": "Travel & Places", - "sort_order": 7, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false + "category": "Smileys & Emotion", + "subcategory": "face-smiling", + "sort_order": 11, + "added_in": "14.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, { - "name": "ABACUS", - "unified": "1F9EE", + "name": "SALUTING FACE", + "unified": "1FAE1", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f9ee.png", - "sheet_x": 48, - "sheet_y": 2, - "short_name": "abacus", - "short_names": ["abacus"], + "image": "1fae1.png", + "sheet_x": 55, + "sheet_y": 31, + "short_name": "saluting_face", + "short_names": ["saluting_face"], "text": null, "texts": null, - "category": "Objects", - "sort_order": 43, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false + "category": "Smileys & Emotion", + "subcategory": "face-hand", + "sort_order": 36, + "added_in": "14.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, { - "name": "FIRE EXTINGUISHER", - "unified": "1F9EF", + "name": "FACE WITH OPEN EYES AND HAND OVER MOUTH", + "unified": "1FAE2", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f9ef.png", - "sheet_x": 48, - "sheet_y": 3, - "short_name": "fire_extinguisher", - "short_names": ["fire_extinguisher"], + "image": "1fae2.png", + "sheet_x": 55, + "sheet_y": 32, + "short_name": "face_with_open_eyes_and_hand_over_mouth", + "short_names": ["face_with_open_eyes_and_hand_over_mouth"], "text": null, "texts": null, - "category": "Objects", - "sort_order": 176, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false + "category": "Smileys & Emotion", + "subcategory": "face-hand", + "sort_order": 32, + "added_in": "14.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, { - "name": "TOOLBOX", - "unified": "1F9F0", + "name": "FACE WITH PEEKING EYE", + "unified": "1FAE3", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f9f0.png", - "sheet_x": 48, - "sheet_y": 4, - "short_name": "toolbox", - "short_names": ["toolbox"], + "image": "1fae3.png", + "sheet_x": 55, + "sheet_y": 33, + "short_name": "face_with_peeking_eye", + "short_names": ["face_with_peeking_eye"], "text": null, "texts": null, - "category": "Objects", - "sort_order": 152, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false + "category": "Smileys & Emotion", + "subcategory": "face-hand", + "sort_order": 33, + "added_in": "14.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, { - "name": "BRICK", - "unified": "1F9F1", + "name": "FACE WITH DIAGONAL MOUTH", + "unified": "1FAE4", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f9f1.png", - "sheet_x": 48, - "sheet_y": 5, - "short_name": "bricks", - "short_names": ["bricks"], + "image": "1fae4.png", + "sheet_x": 55, + "sheet_y": 34, + "short_name": "face_with_diagonal_mouth", + "short_names": ["face_with_diagonal_mouth"], "text": null, "texts": null, - "category": "Travel & Places", - "sort_order": 20, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false + "category": "Smileys & Emotion", + "subcategory": "face-concerned", + "sort_order": 75, + "added_in": "14.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, { - "name": "MAGNET", - "unified": "1F9F2", + "name": "DOTTED LINE FACE", + "unified": "1FAE5", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f9f2.png", - "sheet_x": 48, - "sheet_y": 6, - "short_name": "magnet", - "short_names": ["magnet"], + "image": "1fae5.png", + "sheet_x": 55, + "sheet_y": 35, + "short_name": "dotted_line_face", + "short_names": ["dotted_line_face"], "text": null, "texts": null, - "category": "Objects", - "sort_order": 153, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false + "category": "Smileys & Emotion", + "subcategory": "face-neutral-skeptical", + "sort_order": 42, + "added_in": "14.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, { - "name": "LUGGAGE", - "unified": "1F9F3", + "name": "BITING LIP", + "unified": "1FAE6", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f9f3.png", - "sheet_x": 48, - "sheet_y": 7, - "short_name": "luggage", - "short_names": ["luggage"], + "image": "1fae6.png", + "sheet_x": 55, + "sheet_y": 36, + "short_name": "biting_lip", + "short_names": ["biting_lip"], "text": null, "texts": null, - "category": "Travel & Places", - "sort_order": 126, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false + "category": "People & Body", + "subcategory": "body-parts", + "sort_order": 227, + "added_in": "14.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, { - "name": "LOTION BOTTLE", - "unified": "1F9F4", + "name": "BUBBLES", + "unified": "1FAE7", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f9f4.png", - "sheet_x": 48, - "sheet_y": 8, - "short_name": "lotion_bottle", - "short_names": ["lotion_bottle"], + "image": "1fae7.png", + "sheet_x": 55, + "sheet_y": 37, + "short_name": "bubbles", + "short_names": ["bubbles"], "text": null, "texts": null, "category": "Objects", - "sort_order": 169, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false - }, - { - "name": "SPOOL OF THREAD", - "unified": "1F9F5", - "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f9f5.png", - "sheet_x": 48, - "sheet_y": 9, - "short_name": "thread", - "short_names": ["thread"], - "text": null, - "texts": null, - "category": "Activities", - "sort_order": 75, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false + "subcategory": "household", + "sort_order": 1370, + "added_in": "14.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, { - "name": "BALL OF YARN", - "unified": "1F9F6", + "name": "SHAKING FACE", + "unified": "1FAE8", "non_qualified": null, - "docomo": null, - "au": null, - "softbank": null, - "google": null, - "image": "1f9f6.png", - "sheet_x": 48, - "sheet_y": 10, - "short_name": "yarn", - "short_names": ["yarn"], + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "1fae8.png", + "sheet_x": 55, + "sheet_y": 38, + "short_name": "shaking_face", + "short_names": ["shaking_face"], "text": null, "texts": null, - "category": "Activities", - "sort_order": 76, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, + "category": "Smileys & Emotion", + "subcategory": "face-neutral-skeptical", + "sort_order": 50, + "added_in": "15.0", + "has_img_apple": true, + "has_img_google": true, "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false + "has_img_facebook": false }, { - "name": "SAFETY PIN", - "unified": "1F9F7", + "name": "HAND WITH INDEX FINGER AND THUMB CROSSED", + "unified": "1FAF0", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f9f7.png", - "sheet_x": 48, - "sheet_y": 11, - "short_name": "safety_pin", - "short_names": ["safety_pin"], + "image": "1faf0.png", + "sheet_x": 55, + "sheet_y": 39, + "short_name": "hand_with_index_finger_and_thumb_crossed", + "short_names": ["hand_with_index_finger_and_thumb_crossed"], "text": null, "texts": null, - "category": "Objects", - "sort_order": 170, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false + "category": "People & Body", + "subcategory": "hand-fingers-partial", + "sort_order": 183, + "added_in": "14.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true, + "skin_variations": { + "1F3FB": { + "unified": "1FAF0-1F3FB", + "non_qualified": null, + "image": "1faf0-1f3fb.png", + "sheet_x": 55, + "sheet_y": 40, + "added_in": "14.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FC": { + "unified": "1FAF0-1F3FC", + "non_qualified": null, + "image": "1faf0-1f3fc.png", + "sheet_x": 55, + "sheet_y": 41, + "added_in": "14.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FD": { + "unified": "1FAF0-1F3FD", + "non_qualified": null, + "image": "1faf0-1f3fd.png", + "sheet_x": 55, + "sheet_y": 42, + "added_in": "14.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FE": { + "unified": "1FAF0-1F3FE", + "non_qualified": null, + "image": "1faf0-1f3fe.png", + "sheet_x": 55, + "sheet_y": 43, + "added_in": "14.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FF": { + "unified": "1FAF0-1F3FF", + "non_qualified": null, + "image": "1faf0-1f3ff.png", + "sheet_x": 55, + "sheet_y": 44, + "added_in": "14.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + } + } }, { - "name": "TEDDY BEAR", - "unified": "1F9F8", + "name": "RIGHTWARDS HAND", + "unified": "1FAF1", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f9f8.png", - "sheet_x": 48, - "sheet_y": 12, - "short_name": "teddy_bear", - "short_names": ["teddy_bear"], + "image": "1faf1.png", + "sheet_x": 55, + "sheet_y": 45, + "short_name": "rightwards_hand", + "short_names": ["rightwards_hand"], "text": null, "texts": null, - "category": "Activities", - "sort_order": 63, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false + "category": "People & Body", + "subcategory": "hand-fingers-open", + "sort_order": 172, + "added_in": "14.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true, + "skin_variations": { + "1F3FB": { + "unified": "1FAF1-1F3FB", + "non_qualified": null, + "image": "1faf1-1f3fb.png", + "sheet_x": 55, + "sheet_y": 46, + "added_in": "14.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FC": { + "unified": "1FAF1-1F3FC", + "non_qualified": null, + "image": "1faf1-1f3fc.png", + "sheet_x": 55, + "sheet_y": 47, + "added_in": "14.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FD": { + "unified": "1FAF1-1F3FD", + "non_qualified": null, + "image": "1faf1-1f3fd.png", + "sheet_x": 55, + "sheet_y": 48, + "added_in": "14.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FE": { + "unified": "1FAF1-1F3FE", + "non_qualified": null, + "image": "1faf1-1f3fe.png", + "sheet_x": 55, + "sheet_y": 49, + "added_in": "14.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FF": { + "unified": "1FAF1-1F3FF", + "non_qualified": null, + "image": "1faf1-1f3ff.png", + "sheet_x": 55, + "sheet_y": 50, + "added_in": "14.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + } + } }, { - "name": "BROOM", - "unified": "1F9F9", + "name": "LEFTWARDS HAND", + "unified": "1FAF2", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f9f9.png", - "sheet_x": 48, - "sheet_y": 13, - "short_name": "broom", - "short_names": ["broom"], + "image": "1faf2.png", + "sheet_x": 55, + "sheet_y": 51, + "short_name": "leftwards_hand", + "short_names": ["leftwards_hand"], "text": null, "texts": null, - "category": "Objects", - "sort_order": 171, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false + "category": "People & Body", + "subcategory": "hand-fingers-open", + "sort_order": 173, + "added_in": "14.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true, + "skin_variations": { + "1F3FB": { + "unified": "1FAF2-1F3FB", + "non_qualified": null, + "image": "1faf2-1f3fb.png", + "sheet_x": 55, + "sheet_y": 52, + "added_in": "14.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FC": { + "unified": "1FAF2-1F3FC", + "non_qualified": null, + "image": "1faf2-1f3fc.png", + "sheet_x": 55, + "sheet_y": 53, + "added_in": "14.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FD": { + "unified": "1FAF2-1F3FD", + "non_qualified": null, + "image": "1faf2-1f3fd.png", + "sheet_x": 55, + "sheet_y": 54, + "added_in": "14.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FE": { + "unified": "1FAF2-1F3FE", + "non_qualified": null, + "image": "1faf2-1f3fe.png", + "sheet_x": 55, + "sheet_y": 55, + "added_in": "14.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FF": { + "unified": "1FAF2-1F3FF", + "non_qualified": null, + "image": "1faf2-1f3ff.png", + "sheet_x": 55, + "sheet_y": 56, + "added_in": "14.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + } + } }, { - "name": "BASKET", - "unified": "1F9FA", + "name": "PALM DOWN HAND", + "unified": "1FAF3", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f9fa.png", - "sheet_x": 48, - "sheet_y": 14, - "short_name": "basket", - "short_names": ["basket"], + "image": "1faf3.png", + "sheet_x": 55, + "sheet_y": 57, + "short_name": "palm_down_hand", + "short_names": ["palm_down_hand"], "text": null, "texts": null, - "category": "Objects", - "sort_order": 172, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false + "category": "People & Body", + "subcategory": "hand-fingers-open", + "sort_order": 174, + "added_in": "14.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true, + "skin_variations": { + "1F3FB": { + "unified": "1FAF3-1F3FB", + "non_qualified": null, + "image": "1faf3-1f3fb.png", + "sheet_x": 55, + "sheet_y": 58, + "added_in": "14.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FC": { + "unified": "1FAF3-1F3FC", + "non_qualified": null, + "image": "1faf3-1f3fc.png", + "sheet_x": 55, + "sheet_y": 59, + "added_in": "14.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FD": { + "unified": "1FAF3-1F3FD", + "non_qualified": null, + "image": "1faf3-1f3fd.png", + "sheet_x": 55, + "sheet_y": 60, + "added_in": "14.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FE": { + "unified": "1FAF3-1F3FE", + "non_qualified": null, + "image": "1faf3-1f3fe.png", + "sheet_x": 56, + "sheet_y": 0, + "added_in": "14.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FF": { + "unified": "1FAF3-1F3FF", + "non_qualified": null, + "image": "1faf3-1f3ff.png", + "sheet_x": 56, + "sheet_y": 1, + "added_in": "14.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + } + } }, { - "name": "ROLL OF PAPER", - "unified": "1F9FB", + "name": "PALM UP HAND", + "unified": "1FAF4", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f9fb.png", - "sheet_x": 48, - "sheet_y": 15, - "short_name": "roll_of_paper", - "short_names": ["roll_of_paper"], + "image": "1faf4.png", + "sheet_x": 56, + "sheet_y": 2, + "short_name": "palm_up_hand", + "short_names": ["palm_up_hand"], "text": null, "texts": null, - "category": "Objects", - "sort_order": 173, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false + "category": "People & Body", + "subcategory": "hand-fingers-open", + "sort_order": 175, + "added_in": "14.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true, + "skin_variations": { + "1F3FB": { + "unified": "1FAF4-1F3FB", + "non_qualified": null, + "image": "1faf4-1f3fb.png", + "sheet_x": 56, + "sheet_y": 3, + "added_in": "14.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FC": { + "unified": "1FAF4-1F3FC", + "non_qualified": null, + "image": "1faf4-1f3fc.png", + "sheet_x": 56, + "sheet_y": 4, + "added_in": "14.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FD": { + "unified": "1FAF4-1F3FD", + "non_qualified": null, + "image": "1faf4-1f3fd.png", + "sheet_x": 56, + "sheet_y": 5, + "added_in": "14.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FE": { + "unified": "1FAF4-1F3FE", + "non_qualified": null, + "image": "1faf4-1f3fe.png", + "sheet_x": 56, + "sheet_y": 6, + "added_in": "14.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FF": { + "unified": "1FAF4-1F3FF", + "non_qualified": null, + "image": "1faf4-1f3ff.png", + "sheet_x": 56, + "sheet_y": 7, + "added_in": "14.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + } + } }, { - "name": "BAR OF SOAP", - "unified": "1F9FC", + "name": "INDEX POINTING AT THE VIEWER", + "unified": "1FAF5", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f9fc.png", - "sheet_x": 48, - "sheet_y": 16, - "short_name": "soap", - "short_names": ["soap"], + "image": "1faf5.png", + "sheet_x": 56, + "sheet_y": 8, + "short_name": "index_pointing_at_the_viewer", + "short_names": ["index_pointing_at_the_viewer"], "text": null, "texts": null, - "category": "Objects", - "sort_order": 174, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false + "category": "People & Body", + "subcategory": "hand-single-finger", + "sort_order": 193, + "added_in": "14.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true, + "skin_variations": { + "1F3FB": { + "unified": "1FAF5-1F3FB", + "non_qualified": null, + "image": "1faf5-1f3fb.png", + "sheet_x": 56, + "sheet_y": 9, + "added_in": "14.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FC": { + "unified": "1FAF5-1F3FC", + "non_qualified": null, + "image": "1faf5-1f3fc.png", + "sheet_x": 56, + "sheet_y": 10, + "added_in": "14.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FD": { + "unified": "1FAF5-1F3FD", + "non_qualified": null, + "image": "1faf5-1f3fd.png", + "sheet_x": 56, + "sheet_y": 11, + "added_in": "14.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FE": { + "unified": "1FAF5-1F3FE", + "non_qualified": null, + "image": "1faf5-1f3fe.png", + "sheet_x": 56, + "sheet_y": 12, + "added_in": "14.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FF": { + "unified": "1FAF5-1F3FF", + "non_qualified": null, + "image": "1faf5-1f3ff.png", + "sheet_x": 56, + "sheet_y": 13, + "added_in": "14.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + } + } }, { - "name": "SPONGE", - "unified": "1F9FD", + "name": "HEART HANDS", + "unified": "1FAF6", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f9fd.png", - "sheet_x": 48, - "sheet_y": 17, - "short_name": "sponge", - "short_names": ["sponge"], + "image": "1faf6.png", + "sheet_x": 56, + "sheet_y": 14, + "short_name": "heart_hands", + "short_names": ["heart_hands"], "text": null, "texts": null, - "category": "Objects", - "sort_order": 175, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false + "category": "People & Body", + "subcategory": "hands", + "sort_order": 202, + "added_in": "14.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true, + "skin_variations": { + "1F3FB": { + "unified": "1FAF6-1F3FB", + "non_qualified": null, + "image": "1faf6-1f3fb.png", + "sheet_x": 56, + "sheet_y": 15, + "added_in": "14.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FC": { + "unified": "1FAF6-1F3FC", + "non_qualified": null, + "image": "1faf6-1f3fc.png", + "sheet_x": 56, + "sheet_y": 16, + "added_in": "14.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FD": { + "unified": "1FAF6-1F3FD", + "non_qualified": null, + "image": "1faf6-1f3fd.png", + "sheet_x": 56, + "sheet_y": 17, + "added_in": "14.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FE": { + "unified": "1FAF6-1F3FE", + "non_qualified": null, + "image": "1faf6-1f3fe.png", + "sheet_x": 56, + "sheet_y": 18, + "added_in": "14.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + "1F3FF": { + "unified": "1FAF6-1F3FF", + "non_qualified": null, + "image": "1faf6-1f3ff.png", + "sheet_x": 56, + "sheet_y": 19, + "added_in": "14.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + } + } }, { - "name": "RECEIPT", - "unified": "1F9FE", + "name": "LEFTWARDS PUSHING HAND", + "unified": "1FAF7", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f9fe.png", - "sheet_x": 48, - "sheet_y": 18, - "short_name": "receipt", - "short_names": ["receipt"], + "image": "1faf7.png", + "sheet_x": 56, + "sheet_y": 20, + "short_name": "leftwards_pushing_hand", + "short_names": ["leftwards_pushing_hand"], "text": null, "texts": null, - "category": "Objects", - "sort_order": 83, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, + "category": "People & Body", + "subcategory": "hand-fingers-open", + "sort_order": 176, + "added_in": "15.0", + "has_img_apple": true, + "has_img_google": true, "has_img_twitter": false, "has_img_facebook": false, - "has_img_messenger": false + "skin_variations": { + "1F3FB": { + "unified": "1FAF7-1F3FB", + "non_qualified": null, + "image": "1faf7-1f3fb.png", + "sheet_x": 56, + "sheet_y": 21, + "added_in": "15.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": false, + "has_img_facebook": false + }, + "1F3FC": { + "unified": "1FAF7-1F3FC", + "non_qualified": null, + "image": "1faf7-1f3fc.png", + "sheet_x": 56, + "sheet_y": 22, + "added_in": "15.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": false, + "has_img_facebook": false + }, + "1F3FD": { + "unified": "1FAF7-1F3FD", + "non_qualified": null, + "image": "1faf7-1f3fd.png", + "sheet_x": 56, + "sheet_y": 23, + "added_in": "15.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": false, + "has_img_facebook": false + }, + "1F3FE": { + "unified": "1FAF7-1F3FE", + "non_qualified": null, + "image": "1faf7-1f3fe.png", + "sheet_x": 56, + "sheet_y": 24, + "added_in": "15.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": false, + "has_img_facebook": false + }, + "1F3FF": { + "unified": "1FAF7-1F3FF", + "non_qualified": null, + "image": "1faf7-1f3ff.png", + "sheet_x": 56, + "sheet_y": 25, + "added_in": "15.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": false, + "has_img_facebook": false + } + } }, { - "name": "NAZAR AMULET", - "unified": "1F9FF", + "name": "RIGHTWARDS PUSHING HAND", + "unified": "1FAF8", "non_qualified": null, "docomo": null, "au": null, "softbank": null, "google": null, - "image": "1f9ff.png", - "sheet_x": 48, - "sheet_y": 19, - "short_name": "nazar_amulet", - "short_names": ["nazar_amulet"], + "image": "1faf8.png", + "sheet_x": 56, + "sheet_y": 26, + "short_name": "rightwards_pushing_hand", + "short_names": ["rightwards_pushing_hand"], "text": null, "texts": null, - "category": "Activities", - "sort_order": 57, - "added_in": "11.0", - "has_img_apple": false, - "has_img_google": false, + "category": "People & Body", + "subcategory": "hand-fingers-open", + "sort_order": 177, + "added_in": "15.0", + "has_img_apple": true, + "has_img_google": true, "has_img_twitter": false, "has_img_facebook": false, - "has_img_messenger": false + "skin_variations": { + "1F3FB": { + "unified": "1FAF8-1F3FB", + "non_qualified": null, + "image": "1faf8-1f3fb.png", + "sheet_x": 56, + "sheet_y": 27, + "added_in": "15.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": false, + "has_img_facebook": false + }, + "1F3FC": { + "unified": "1FAF8-1F3FC", + "non_qualified": null, + "image": "1faf8-1f3fc.png", + "sheet_x": 56, + "sheet_y": 28, + "added_in": "15.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": false, + "has_img_facebook": false + }, + "1F3FD": { + "unified": "1FAF8-1F3FD", + "non_qualified": null, + "image": "1faf8-1f3fd.png", + "sheet_x": 56, + "sheet_y": 29, + "added_in": "15.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": false, + "has_img_facebook": false + }, + "1F3FE": { + "unified": "1FAF8-1F3FE", + "non_qualified": null, + "image": "1faf8-1f3fe.png", + "sheet_x": 56, + "sheet_y": 30, + "added_in": "15.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": false, + "has_img_facebook": false + }, + "1F3FF": { + "unified": "1FAF8-1F3FF", + "non_qualified": null, + "image": "1faf8-1f3ff.png", + "sheet_x": 56, + "sheet_y": 31, + "added_in": "15.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": false, + "has_img_facebook": false + } + } }, { "name": "DOUBLE EXCLAMATION MARK", @@ -50161,20 +62589,20 @@ "softbank": null, "google": "FEB06", "image": "203c-fe0f.png", - "sheet_x": 48, - "sheet_y": 20, + "sheet_x": 56, + "sheet_y": 32, "short_name": "bangbang", "short_names": ["bangbang"], "text": null, "texts": null, "category": "Symbols", - "sort_order": 122, - "added_in": "1.1", + "subcategory": "punctuation", + "sort_order": 1491, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { "name": "EXCLAMATION QUESTION MARK", @@ -50185,20 +62613,20 @@ "softbank": null, "google": "FEB05", "image": "2049-fe0f.png", - "sheet_x": 48, - "sheet_y": 21, + "sheet_x": 56, + "sheet_y": 33, "short_name": "interrobang", "short_names": ["interrobang"], "text": null, "texts": null, - "category": "Symbols", - "sort_order": 123, - "added_in": "3.0", + "category": "Symbols", + "subcategory": "punctuation", + "sort_order": 1492, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { "name": "TRADE MARK SIGN", @@ -50209,20 +62637,20 @@ "softbank": "E537", "google": "FEB2A", "image": "2122-fe0f.png", - "sheet_x": 48, - "sheet_y": 22, + "sheet_x": 56, + "sheet_y": 34, "short_name": "tm", "short_names": ["tm"], "text": null, "texts": null, "category": "Symbols", - "sort_order": 131, - "added_in": "1.1", + "subcategory": "other-symbol", + "sort_order": 1520, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { "name": "INFORMATION SOURCE", @@ -50233,20 +62661,20 @@ "softbank": null, "google": "FEB47", "image": "2139-fe0f.png", - "sheet_x": 48, - "sheet_y": 23, + "sheet_x": 56, + "sheet_y": 35, "short_name": "information_source", "short_names": ["information_source"], "text": null, "texts": null, "category": "Symbols", - "sort_order": 157, - "added_in": "3.0", + "subcategory": "alphanum", + "sort_order": 1545, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { "name": "LEFT RIGHT ARROW", @@ -50257,20 +62685,20 @@ "softbank": null, "google": "FEAF6", "image": "2194-fe0f.png", - "sheet_x": 48, - "sheet_y": 24, + "sheet_x": 56, + "sheet_y": 36, "short_name": "left_right_arrow", "short_names": ["left_right_arrow"], "text": null, "texts": null, "category": "Symbols", - "sort_order": 36, - "added_in": "1.1", + "subcategory": "arrow", + "sort_order": 1419, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { "name": "UP DOWN ARROW", @@ -50281,20 +62709,20 @@ "softbank": null, "google": "FEAF7", "image": "2195-fe0f.png", - "sheet_x": 48, - "sheet_y": 25, + "sheet_x": 56, + "sheet_y": 37, "short_name": "arrow_up_down", "short_names": ["arrow_up_down"], "text": null, "texts": null, "category": "Symbols", - "sort_order": 35, - "added_in": "1.1", + "subcategory": "arrow", + "sort_order": 1418, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { "name": "NORTH WEST ARROW", @@ -50305,20 +62733,20 @@ "softbank": "E237", "google": "FEAF2", "image": "2196-fe0f.png", - "sheet_x": 48, - "sheet_y": 26, + "sheet_x": 56, + "sheet_y": 38, "short_name": "arrow_upper_left", "short_names": ["arrow_upper_left"], "text": null, "texts": null, "category": "Symbols", - "sort_order": 34, - "added_in": "1.1", + "subcategory": "arrow", + "sort_order": 1417, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { "name": "NORTH EAST ARROW", @@ -50329,20 +62757,20 @@ "softbank": "E236", "google": "FEAF0", "image": "2197-fe0f.png", - "sheet_x": 48, - "sheet_y": 27, + "sheet_x": 56, + "sheet_y": 39, "short_name": "arrow_upper_right", "short_names": ["arrow_upper_right"], "text": null, "texts": null, "category": "Symbols", - "sort_order": 28, - "added_in": "1.1", + "subcategory": "arrow", + "sort_order": 1411, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { "name": "SOUTH EAST ARROW", @@ -50353,20 +62781,20 @@ "softbank": "E238", "google": "FEAF1", "image": "2198-fe0f.png", - "sheet_x": 48, - "sheet_y": 28, + "sheet_x": 56, + "sheet_y": 40, "short_name": "arrow_lower_right", "short_names": ["arrow_lower_right"], "text": null, "texts": null, "category": "Symbols", - "sort_order": 30, - "added_in": "1.1", + "subcategory": "arrow", + "sort_order": 1413, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { "name": "SOUTH WEST ARROW", @@ -50377,20 +62805,20 @@ "softbank": "E239", "google": "FEAF3", "image": "2199-fe0f.png", - "sheet_x": 48, - "sheet_y": 29, + "sheet_x": 56, + "sheet_y": 41, "short_name": "arrow_lower_left", "short_names": ["arrow_lower_left"], "text": null, "texts": null, "category": "Symbols", - "sort_order": 32, - "added_in": "1.1", + "subcategory": "arrow", + "sort_order": 1415, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { "name": "LEFTWARDS ARROW WITH HOOK", @@ -50401,20 +62829,20 @@ "softbank": null, "google": "FEB83", "image": "21a9-fe0f.png", - "sheet_x": 48, - "sheet_y": 30, + "sheet_x": 56, + "sheet_y": 42, "short_name": "leftwards_arrow_with_hook", "short_names": ["leftwards_arrow_with_hook"], "text": null, "texts": null, "category": "Symbols", - "sort_order": 37, - "added_in": "1.1", + "subcategory": "arrow", + "sort_order": 1420, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { "name": "RIGHTWARDS ARROW WITH HOOK", @@ -50425,20 +62853,20 @@ "softbank": null, "google": "FEB88", "image": "21aa-fe0f.png", - "sheet_x": 48, - "sheet_y": 31, + "sheet_x": 56, + "sheet_y": 43, "short_name": "arrow_right_hook", "short_names": ["arrow_right_hook"], "text": null, "texts": null, "category": "Symbols", - "sort_order": 38, - "added_in": "1.1", + "subcategory": "arrow", + "sort_order": 1421, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { "name": "WATCH", @@ -50449,20 +62877,20 @@ "softbank": null, "google": "FE01D", "image": "231a.png", - "sheet_x": 48, - "sheet_y": 32, + "sheet_x": 56, + "sheet_y": 44, "short_name": "watch", "short_names": ["watch"], "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 129, - "added_in": "1.1", + "subcategory": "time", + "sort_order": 962, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { "name": "HOURGLASS", @@ -50473,23 +62901,23 @@ "softbank": null, "google": "FE01C", "image": "231b.png", - "sheet_x": 48, - "sheet_y": 33, + "sheet_x": 56, + "sheet_y": 45, "short_name": "hourglass", "short_names": ["hourglass"], "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 127, - "added_in": "1.1", + "subcategory": "time", + "sort_order": 960, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { - "name": null, + "name": "KEYBOARD", "unified": "2328-FE0F", "non_qualified": "2328", "docomo": null, @@ -50497,23 +62925,23 @@ "softbank": null, "google": null, "image": "2328-fe0f.png", - "sheet_x": 48, - "sheet_y": 34, + "sheet_x": 56, + "sheet_y": 46, "short_name": "keyboard", "short_names": ["keyboard"], "text": null, "texts": null, "category": "Objects", - "sort_order": 36, - "added_in": "1.1", + "subcategory": "computer", + "sort_order": 1211, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, { - "name": null, + "name": "EJECT BUTTON", "unified": "23CF-FE0F", "non_qualified": "23CF", "docomo": null, @@ -50521,20 +62949,20 @@ "softbank": null, "google": null, "image": "23cf-fe0f.png", - "sheet_x": 48, - "sheet_y": 35, + "sheet_x": 56, + "sheet_y": 47, "short_name": "eject", "short_names": ["eject"], "text": null, "texts": null, "category": "Symbols", - "sort_order": 90, - "added_in": "4.0", + "subcategory": "av-symbol", + "sort_order": 1474, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, { "name": "BLACK RIGHT-POINTING DOUBLE TRIANGLE", @@ -50545,20 +62973,20 @@ "softbank": "E23C", "google": "FEAFE", "image": "23e9.png", - "sheet_x": 48, - "sheet_y": 36, + "sheet_x": 56, + "sheet_y": 48, "short_name": "fast_forward", "short_names": ["fast_forward"], "text": null, "texts": null, "category": "Symbols", - "sort_order": 77, - "added_in": "6.0", + "subcategory": "av-symbol", + "sort_order": 1461, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { "name": "BLACK LEFT-POINTING DOUBLE TRIANGLE", @@ -50569,20 +62997,20 @@ "softbank": "E23D", "google": "FEAFF", "image": "23ea.png", - "sheet_x": 48, - "sheet_y": 37, + "sheet_x": 56, + "sheet_y": 49, "short_name": "rewind", "short_names": ["rewind"], "text": null, "texts": null, "category": "Symbols", - "sort_order": 81, - "added_in": "6.0", + "subcategory": "av-symbol", + "sort_order": 1465, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { "name": "BLACK UP-POINTING DOUBLE TRIANGLE", @@ -50593,20 +63021,20 @@ "softbank": null, "google": "FEB03", "image": "23eb.png", - "sheet_x": 48, - "sheet_y": 38, + "sheet_x": 56, + "sheet_y": 50, "short_name": "arrow_double_up", "short_names": ["arrow_double_up"], "text": null, "texts": null, "category": "Symbols", - "sort_order": 84, - "added_in": "6.0", + "subcategory": "av-symbol", + "sort_order": 1468, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { "name": "BLACK DOWN-POINTING DOUBLE TRIANGLE", @@ -50617,23 +63045,23 @@ "softbank": null, "google": "FEB02", "image": "23ec.png", - "sheet_x": 48, - "sheet_y": 39, + "sheet_x": 56, + "sheet_y": 51, "short_name": "arrow_double_down", "short_names": ["arrow_double_down"], "text": null, "texts": null, "category": "Symbols", - "sort_order": 86, - "added_in": "6.0", + "subcategory": "av-symbol", + "sort_order": 1470, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { - "name": null, + "name": "NEXT TRACK BUTTON", "unified": "23ED-FE0F", "non_qualified": "23ED", "docomo": null, @@ -50641,23 +63069,23 @@ "softbank": null, "google": null, "image": "23ed-fe0f.png", - "sheet_x": 48, - "sheet_y": 40, + "sheet_x": 56, + "sheet_y": 52, "short_name": "black_right_pointing_double_triangle_with_vertical_bar", "short_names": ["black_right_pointing_double_triangle_with_vertical_bar"], "text": null, "texts": null, "category": "Symbols", - "sort_order": 78, - "added_in": "6.0", + "subcategory": "av-symbol", + "sort_order": 1462, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, { - "name": null, + "name": "LAST TRACK BUTTON", "unified": "23EE-FE0F", "non_qualified": "23EE", "docomo": null, @@ -50665,23 +63093,23 @@ "softbank": null, "google": null, "image": "23ee-fe0f.png", - "sheet_x": 48, - "sheet_y": 41, + "sheet_x": 56, + "sheet_y": 53, "short_name": "black_left_pointing_double_triangle_with_vertical_bar", "short_names": ["black_left_pointing_double_triangle_with_vertical_bar"], "text": null, "texts": null, "category": "Symbols", - "sort_order": 82, - "added_in": "6.0", + "subcategory": "av-symbol", + "sort_order": 1466, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, { - "name": null, + "name": "PLAY OR PAUSE BUTTON", "unified": "23EF-FE0F", "non_qualified": "23EF", "docomo": null, @@ -50689,20 +63117,20 @@ "softbank": null, "google": null, "image": "23ef-fe0f.png", - "sheet_x": 48, - "sheet_y": 42, + "sheet_x": 56, + "sheet_y": 54, "short_name": "black_right_pointing_triangle_with_double_vertical_bar", "short_names": ["black_right_pointing_triangle_with_double_vertical_bar"], "text": null, "texts": null, "category": "Symbols", - "sort_order": 79, - "added_in": "6.0", + "subcategory": "av-symbol", + "sort_order": 1463, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, { "name": "ALARM CLOCK", @@ -50713,23 +63141,23 @@ "softbank": null, "google": "FE02A", "image": "23f0.png", - "sheet_x": 48, - "sheet_y": 43, + "sheet_x": 56, + "sheet_y": 55, "short_name": "alarm_clock", "short_names": ["alarm_clock"], "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 130, - "added_in": "6.0", + "subcategory": "time", + "sort_order": 963, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { - "name": null, + "name": "STOPWATCH", "unified": "23F1-FE0F", "non_qualified": "23F1", "docomo": null, @@ -50737,23 +63165,23 @@ "softbank": null, "google": null, "image": "23f1-fe0f.png", - "sheet_x": 48, - "sheet_y": 44, + "sheet_x": 56, + "sheet_y": 56, "short_name": "stopwatch", "short_names": ["stopwatch"], "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 131, - "added_in": "6.0", + "subcategory": "time", + "sort_order": 964, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, { - "name": null, + "name": "TIMER CLOCK", "unified": "23F2-FE0F", "non_qualified": "23F2", "docomo": null, @@ -50761,20 +63189,20 @@ "softbank": null, "google": null, "image": "23f2-fe0f.png", - "sheet_x": 48, - "sheet_y": 45, + "sheet_x": 56, + "sheet_y": 57, "short_name": "timer_clock", "short_names": ["timer_clock"], "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 132, - "added_in": "6.0", + "subcategory": "time", + "sort_order": 965, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, { "name": "HOURGLASS WITH FLOWING SAND", @@ -50785,23 +63213,23 @@ "softbank": null, "google": "FE01B", "image": "23f3.png", - "sheet_x": 48, - "sheet_y": 46, + "sheet_x": 56, + "sheet_y": 58, "short_name": "hourglass_flowing_sand", "short_names": ["hourglass_flowing_sand"], "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 128, - "added_in": "6.0", + "subcategory": "time", + "sort_order": 961, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { - "name": null, + "name": "PAUSE BUTTON", "unified": "23F8-FE0F", "non_qualified": "23F8", "docomo": null, @@ -50809,23 +63237,23 @@ "softbank": null, "google": null, "image": "23f8-fe0f.png", - "sheet_x": 48, - "sheet_y": 47, + "sheet_x": 56, + "sheet_y": 59, "short_name": "double_vertical_bar", "short_names": ["double_vertical_bar"], "text": null, "texts": null, "category": "Symbols", - "sort_order": 87, - "added_in": "7.0", + "subcategory": "av-symbol", + "sort_order": 1471, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, { - "name": null, + "name": "STOP BUTTON", "unified": "23F9-FE0F", "non_qualified": "23F9", "docomo": null, @@ -50833,23 +63261,23 @@ "softbank": null, "google": null, "image": "23f9-fe0f.png", - "sheet_x": 48, - "sheet_y": 48, + "sheet_x": 56, + "sheet_y": 60, "short_name": "black_square_for_stop", "short_names": ["black_square_for_stop"], "text": null, "texts": null, "category": "Symbols", - "sort_order": 88, - "added_in": "7.0", + "subcategory": "av-symbol", + "sort_order": 1472, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, { - "name": null, + "name": "RECORD BUTTON", "unified": "23FA-FE0F", "non_qualified": "23FA", "docomo": null, @@ -50857,20 +63285,20 @@ "softbank": null, "google": null, "image": "23fa-fe0f.png", - "sheet_x": 48, - "sheet_y": 49, + "sheet_x": 57, + "sheet_y": 0, "short_name": "black_circle_for_record", "short_names": ["black_circle_for_record"], "text": null, "texts": null, "category": "Symbols", - "sort_order": 89, - "added_in": "7.0", + "subcategory": "av-symbol", + "sort_order": 1473, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, { "name": "CIRCLED LATIN CAPITAL LETTER M", @@ -50881,20 +63309,20 @@ "softbank": null, "google": "FE7E1", "image": "24c2-fe0f.png", - "sheet_x": 48, - "sheet_y": 50, + "sheet_x": 57, + "sheet_y": 1, "short_name": "m", "short_names": ["m"], "text": null, "texts": null, "category": "Symbols", - "sort_order": 159, - "added_in": "1.1", + "subcategory": "alphanum", + "sort_order": 1547, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { "name": "BLACK SMALL SQUARE", @@ -50905,20 +63333,20 @@ "softbank": null, "google": "FEB6E", "image": "25aa-fe0f.png", - "sheet_x": 48, - "sheet_y": 51, + "sheet_x": 57, + "sheet_y": 2, "short_name": "black_small_square", "short_names": ["black_small_square"], "text": null, "texts": null, "category": "Symbols", - "sort_order": 185, - "added_in": "1.1", + "subcategory": "geometric", + "sort_order": 1595, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { "name": "WHITE SMALL SQUARE", @@ -50929,20 +63357,20 @@ "softbank": null, "google": "FEB6D", "image": "25ab-fe0f.png", - "sheet_x": 48, - "sheet_y": 52, + "sheet_x": 57, + "sheet_y": 3, "short_name": "white_small_square", "short_names": ["white_small_square"], "text": null, "texts": null, "category": "Symbols", - "sort_order": 186, - "added_in": "1.1", + "subcategory": "geometric", + "sort_order": 1596, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { "name": "BLACK RIGHT-POINTING TRIANGLE", @@ -50953,20 +63381,20 @@ "softbank": "E23A", "google": "FEAFC", "image": "25b6-fe0f.png", - "sheet_x": 49, - "sheet_y": 0, + "sheet_x": 57, + "sheet_y": 4, "short_name": "arrow_forward", "short_names": ["arrow_forward"], "text": null, "texts": null, "category": "Symbols", - "sort_order": 76, - "added_in": "1.1", + "subcategory": "av-symbol", + "sort_order": 1460, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { "name": "BLACK LEFT-POINTING TRIANGLE", @@ -50977,20 +63405,20 @@ "softbank": "E23B", "google": "FEAFD", "image": "25c0-fe0f.png", - "sheet_x": 49, - "sheet_y": 1, + "sheet_x": 57, + "sheet_y": 5, "short_name": "arrow_backward", "short_names": ["arrow_backward"], "text": null, "texts": null, "category": "Symbols", - "sort_order": 80, - "added_in": "1.1", + "subcategory": "av-symbol", + "sort_order": 1464, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { "name": "WHITE MEDIUM SQUARE", @@ -51001,20 +63429,20 @@ "softbank": null, "google": "FEB71", "image": "25fb-fe0f.png", - "sheet_x": 49, - "sheet_y": 2, + "sheet_x": 57, + "sheet_y": 6, "short_name": "white_medium_square", "short_names": ["white_medium_square"], "text": null, "texts": null, "category": "Symbols", - "sort_order": 187, - "added_in": "3.2", + "subcategory": "geometric", + "sort_order": 1592, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { "name": "BLACK MEDIUM SQUARE", @@ -51025,20 +63453,20 @@ "softbank": null, "google": "FEB72", "image": "25fc-fe0f.png", - "sheet_x": 49, - "sheet_y": 3, + "sheet_x": 57, + "sheet_y": 7, "short_name": "black_medium_square", "short_names": ["black_medium_square"], "text": null, "texts": null, "category": "Symbols", - "sort_order": 188, - "added_in": "3.2", + "subcategory": "geometric", + "sort_order": 1591, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { "name": "WHITE MEDIUM SMALL SQUARE", @@ -51049,20 +63477,20 @@ "softbank": null, "google": "FEB6F", "image": "25fd.png", - "sheet_x": 49, - "sheet_y": 4, + "sheet_x": 57, + "sheet_y": 8, "short_name": "white_medium_small_square", "short_names": ["white_medium_small_square"], "text": null, "texts": null, "category": "Symbols", - "sort_order": 189, - "added_in": "3.2", + "subcategory": "geometric", + "sort_order": 1594, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { "name": "BLACK MEDIUM SMALL SQUARE", @@ -51073,20 +63501,20 @@ "softbank": null, "google": "FEB70", "image": "25fe.png", - "sheet_x": 49, - "sheet_y": 5, + "sheet_x": 57, + "sheet_y": 9, "short_name": "black_medium_small_square", "short_names": ["black_medium_small_square"], "text": null, "texts": null, "category": "Symbols", - "sort_order": 190, - "added_in": "3.2", + "subcategory": "geometric", + "sort_order": 1593, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { "name": "BLACK SUN WITH RAYS", @@ -51097,20 +63525,20 @@ "softbank": "E04A", "google": "FE000", "image": "2600-fe0f.png", - "sheet_x": 49, - "sheet_y": 6, + "sheet_x": 57, + "sheet_y": 10, "short_name": "sunny", "short_names": ["sunny"], "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 171, - "added_in": "1.1", + "subcategory": "sky & weather", + "sort_order": 1004, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { "name": "CLOUD", @@ -51121,23 +63549,23 @@ "softbank": "E049", "google": "FE001", "image": "2601-fe0f.png", - "sheet_x": 49, - "sheet_y": 7, + "sheet_x": 57, + "sheet_y": 11, "short_name": "cloud", "short_names": ["cloud"], "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 177, - "added_in": "1.1", + "subcategory": "sky & weather", + "sort_order": 1012, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { - "name": null, + "name": "UMBRELLA", "unified": "2602-FE0F", "non_qualified": "2602", "docomo": null, @@ -51145,23 +63573,23 @@ "softbank": null, "google": null, "image": "2602-fe0f.png", - "sheet_x": 49, - "sheet_y": 8, + "sheet_x": 57, + "sheet_y": 12, "short_name": "umbrella", "short_names": ["umbrella"], "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 192, - "added_in": "1.1", + "subcategory": "sky & weather", + "sort_order": 1027, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, { - "name": null, + "name": "SNOWMAN", "unified": "2603-FE0F", "non_qualified": "2603", "docomo": null, @@ -51169,23 +63597,23 @@ "softbank": null, "google": null, "image": "2603-fe0f.png", - "sheet_x": 49, - "sheet_y": 9, + "sheet_x": 57, + "sheet_y": 13, "short_name": "snowman", "short_names": ["snowman"], "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 197, - "added_in": "1.1", + "subcategory": "sky & weather", + "sort_order": 1032, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, { - "name": null, + "name": "COMET", "unified": "2604-FE0F", "non_qualified": "2604", "docomo": null, @@ -51193,20 +63621,20 @@ "softbank": null, "google": null, "image": "2604-fe0f.png", - "sheet_x": 49, - "sheet_y": 10, + "sheet_x": 57, + "sheet_y": 14, "short_name": "comet", "short_names": ["comet"], "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 199, - "added_in": "1.1", + "subcategory": "sky & weather", + "sort_order": 1034, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, { "name": "BLACK TELEPHONE", @@ -51217,20 +63645,20 @@ "softbank": "E009", "google": "FE523", "image": "260e-fe0f.png", - "sheet_x": 49, - "sheet_y": 11, + "sheet_x": 57, + "sheet_y": 15, "short_name": "phone", "short_names": ["phone", "telephone"], "text": null, "texts": null, "category": "Objects", - "sort_order": 27, - "added_in": "1.1", + "subcategory": "phone", + "sort_order": 1201, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { "name": "BALLOT BOX WITH CHECK", @@ -51241,20 +63669,20 @@ "softbank": null, "google": "FEB8B", "image": "2611-fe0f.png", - "sheet_x": 49, - "sheet_y": 12, + "sheet_x": 57, + "sheet_y": 16, "short_name": "ballot_box_with_check", "short_names": ["ballot_box_with_check"], "text": null, "texts": null, "category": "Symbols", - "sort_order": 108, - "added_in": "1.1", + "subcategory": "other-symbol", + "sort_order": 1508, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { "name": "UMBRELLA WITH RAIN DROPS", @@ -51265,20 +63693,20 @@ "softbank": "E04B", "google": "FE002", "image": "2614.png", - "sheet_x": 49, - "sheet_y": 13, + "sheet_x": 57, + "sheet_y": 17, "short_name": "umbrella_with_rain_drops", "short_names": ["umbrella_with_rain_drops"], "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 193, - "added_in": "4.0", + "subcategory": "sky & weather", + "sort_order": 1028, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { "name": "HOT BEVERAGE", @@ -51289,23 +63717,23 @@ "softbank": "E045", "google": "FE981", "image": "2615.png", - "sheet_x": 49, - "sheet_y": 14, + "sheet_x": 57, + "sheet_y": 18, "short_name": "coffee", "short_names": ["coffee"], "text": null, "texts": null, "category": "Food & Drink", - "sort_order": 91, - "added_in": "4.0", + "subcategory": "drink", + "sort_order": 795, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { - "name": null, + "name": "SHAMROCK", "unified": "2618-FE0F", "non_qualified": "2618", "docomo": null, @@ -51313,20 +63741,20 @@ "softbank": null, "google": null, "image": "2618-fe0f.png", - "sheet_x": 49, - "sheet_y": 15, + "sheet_x": 57, + "sheet_y": 19, "short_name": "shamrock", "short_names": ["shamrock"], "text": null, "texts": null, "category": "Animals & Nature", - "sort_order": 120, - "added_in": "4.1", + "subcategory": "plant-other", + "sort_order": 679, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, { "name": "WHITE UP POINTING INDEX", @@ -51337,90 +63765,85 @@ "softbank": "E00F", "google": "FEB98", "image": "261d-fe0f.png", - "sheet_x": 49, - "sheet_y": 16, + "sheet_x": 57, + "sheet_y": 20, "short_name": "point_up", "short_names": ["point_up"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 362, - "added_in": "1.1", + "category": "People & Body", + "subcategory": "hand-single-finger", + "sort_order": 192, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true, - "has_img_messenger": true, "skin_variations": { "1F3FB": { "unified": "261D-1F3FB", "non_qualified": null, "image": "261d-1f3fb.png", - "sheet_x": 49, - "sheet_y": 17, - "added_in": "8.0", + "sheet_x": 57, + "sheet_y": 21, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, "1F3FC": { "unified": "261D-1F3FC", "non_qualified": null, "image": "261d-1f3fc.png", - "sheet_x": 49, - "sheet_y": 18, - "added_in": "8.0", + "sheet_x": 57, + "sheet_y": 22, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, "1F3FD": { "unified": "261D-1F3FD", "non_qualified": null, "image": "261d-1f3fd.png", - "sheet_x": 49, - "sheet_y": 19, - "added_in": "8.0", + "sheet_x": 57, + "sheet_y": 23, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, "1F3FE": { "unified": "261D-1F3FE", "non_qualified": null, "image": "261d-1f3fe.png", - "sheet_x": 49, - "sheet_y": 20, - "added_in": "8.0", + "sheet_x": 57, + "sheet_y": 24, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, "1F3FF": { "unified": "261D-1F3FF", "non_qualified": null, "image": "261d-1f3ff.png", - "sheet_x": 49, - "sheet_y": 21, - "added_in": "8.0", + "sheet_x": 57, + "sheet_y": 25, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true } } }, { - "name": null, + "name": "SKULL AND CROSSBONES", "unified": "2620-FE0F", "non_qualified": "2620", "docomo": null, @@ -51428,23 +63851,23 @@ "softbank": null, "google": null, "image": "2620-fe0f.png", - "sheet_x": 49, - "sheet_y": 22, + "sheet_x": 57, + "sheet_y": 26, "short_name": "skull_and_crossbones", "short_names": ["skull_and_crossbones"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 96, - "added_in": "1.1", + "category": "Smileys & Emotion", + "subcategory": "face-negative", + "sort_order": 107, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, { - "name": null, + "name": "RADIOACTIVE", "unified": "2622-FE0F", "non_qualified": "2622", "docomo": null, @@ -51452,23 +63875,23 @@ "softbank": null, "google": null, "image": "2622-fe0f.png", - "sheet_x": 49, - "sheet_y": 23, + "sheet_x": 57, + "sheet_y": 27, "short_name": "radioactive_sign", "short_names": ["radioactive_sign"], "text": null, "texts": null, "category": "Symbols", - "sort_order": 25, - "added_in": "1.1", + "subcategory": "warning", + "sort_order": 1408, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, { - "name": null, + "name": "BIOHAZARD", "unified": "2623-FE0F", "non_qualified": "2623", "docomo": null, @@ -51476,23 +63899,23 @@ "softbank": null, "google": null, "image": "2623-fe0f.png", - "sheet_x": 49, - "sheet_y": 24, + "sheet_x": 57, + "sheet_y": 28, "short_name": "biohazard_sign", "short_names": ["biohazard_sign"], "text": null, "texts": null, "category": "Symbols", - "sort_order": 26, - "added_in": "1.1", + "subcategory": "warning", + "sort_order": 1409, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, { - "name": null, + "name": "ORTHODOX CROSS", "unified": "2626-FE0F", "non_qualified": "2626", "docomo": null, @@ -51500,23 +63923,23 @@ "softbank": null, "google": null, "image": "2626-fe0f.png", - "sheet_x": 49, - "sheet_y": 25, + "sheet_x": 57, + "sheet_y": 29, "short_name": "orthodox_cross", "short_names": ["orthodox_cross"], "text": null, "texts": null, "category": "Symbols", - "sort_order": 55, - "added_in": "1.1", + "subcategory": "religion", + "sort_order": 1438, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, { - "name": null, + "name": "STAR AND CRESCENT", "unified": "262A-FE0F", "non_qualified": "262A", "docomo": null, @@ -51524,23 +63947,23 @@ "softbank": null, "google": null, "image": "262a-fe0f.png", - "sheet_x": 49, - "sheet_y": 26, + "sheet_x": 57, + "sheet_y": 30, "short_name": "star_and_crescent", "short_names": ["star_and_crescent"], "text": null, "texts": null, "category": "Symbols", - "sort_order": 56, - "added_in": "1.1", + "subcategory": "religion", + "sort_order": 1439, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, { - "name": null, + "name": "PEACE SYMBOL", "unified": "262E-FE0F", "non_qualified": "262E", "docomo": null, @@ -51548,23 +63971,23 @@ "softbank": null, "google": null, "image": "262e-fe0f.png", - "sheet_x": 49, - "sheet_y": 27, + "sheet_x": 57, + "sheet_y": 31, "short_name": "peace_symbol", "short_names": ["peace_symbol"], "text": null, "texts": null, "category": "Symbols", - "sort_order": 57, - "added_in": "1.1", + "subcategory": "religion", + "sort_order": 1440, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, { - "name": null, + "name": "YIN YANG", "unified": "262F-FE0F", "non_qualified": "262F", "docomo": null, @@ -51572,23 +63995,23 @@ "softbank": null, "google": null, "image": "262f-fe0f.png", - "sheet_x": 49, - "sheet_y": 28, + "sheet_x": 57, + "sheet_y": 32, "short_name": "yin_yang", "short_names": ["yin_yang"], "text": null, "texts": null, "category": "Symbols", - "sort_order": 53, - "added_in": "1.1", + "subcategory": "religion", + "sort_order": 1436, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, { - "name": null, + "name": "WHEEL OF DHARMA", "unified": "2638-FE0F", "non_qualified": "2638", "docomo": null, @@ -51596,23 +64019,23 @@ "softbank": null, "google": null, "image": "2638-fe0f.png", - "sheet_x": 49, - "sheet_y": 29, + "sheet_x": 57, + "sheet_y": 33, "short_name": "wheel_of_dharma", "short_names": ["wheel_of_dharma"], "text": null, "texts": null, "category": "Symbols", - "sort_order": 52, - "added_in": "1.1", + "subcategory": "religion", + "sort_order": 1435, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, { - "name": null, + "name": "FROWNING FACE", "unified": "2639-FE0F", "non_qualified": "2639", "docomo": null, @@ -51620,20 +64043,20 @@ "softbank": null, "google": null, "image": "2639-fe0f.png", - "sheet_x": 49, - "sheet_y": 30, + "sheet_x": 57, + "sheet_y": 34, "short_name": "white_frowning_face", "short_names": ["white_frowning_face"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 50, - "added_in": "1.1", + "category": "Smileys & Emotion", + "subcategory": "face-concerned", + "sort_order": 78, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, { "name": "WHITE SMILING FACE", @@ -51644,23 +64067,23 @@ "softbank": "E414", "google": "FE336", "image": "263a-fe0f.png", - "sheet_x": 49, - "sheet_y": 31, + "sheet_x": 57, + "sheet_y": 35, "short_name": "relaxed", "short_names": ["relaxed"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 19, - "added_in": "1.1", + "category": "Smileys & Emotion", + "subcategory": "face-affection", + "sort_order": 20, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { - "name": null, + "name": "FEMALE SIGN", "unified": "2640-FE0F", "non_qualified": "2640", "docomo": null, @@ -51668,23 +64091,23 @@ "softbank": null, "google": null, "image": "2640-fe0f.png", - "sheet_x": 49, - "sheet_y": 32, + "sheet_x": 57, + "sheet_y": 36, "short_name": "female_sign", "short_names": ["female_sign"], "text": null, "texts": null, "category": "Symbols", - "sort_order": 97, - "added_in": "1.1", + "subcategory": "gender", + "sort_order": 1482, + "added_in": "4.0", "has_img_apple": false, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, { - "name": null, + "name": "MALE SIGN", "unified": "2642-FE0F", "non_qualified": "2642", "docomo": null, @@ -51692,20 +64115,20 @@ "softbank": null, "google": null, "image": "2642-fe0f.png", - "sheet_x": 49, - "sheet_y": 33, + "sheet_x": 57, + "sheet_y": 37, "short_name": "male_sign", "short_names": ["male_sign"], "text": null, "texts": null, "category": "Symbols", - "sort_order": 98, - "added_in": "1.1", + "subcategory": "gender", + "sort_order": 1483, + "added_in": "4.0", "has_img_apple": false, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, { "name": "ARIES", @@ -51716,20 +64139,20 @@ "softbank": "E23F", "google": "FE02B", "image": "2648.png", - "sheet_x": 49, - "sheet_y": 34, + "sheet_x": 57, + "sheet_y": 38, "short_name": "aries", "short_names": ["aries"], "text": null, "texts": null, "category": "Symbols", - "sort_order": 60, - "added_in": "1.1", + "subcategory": "zodiac", + "sort_order": 1444, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { "name": "TAURUS", @@ -51740,20 +64163,20 @@ "softbank": "E240", "google": "FE02C", "image": "2649.png", - "sheet_x": 49, - "sheet_y": 35, + "sheet_x": 57, + "sheet_y": 39, "short_name": "taurus", "short_names": ["taurus"], "text": null, "texts": null, "category": "Symbols", - "sort_order": 61, - "added_in": "1.1", + "subcategory": "zodiac", + "sort_order": 1445, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { "name": "GEMINI", @@ -51764,20 +64187,20 @@ "softbank": "E241", "google": "FE02D", "image": "264a.png", - "sheet_x": 49, - "sheet_y": 36, + "sheet_x": 57, + "sheet_y": 40, "short_name": "gemini", "short_names": ["gemini"], "text": null, "texts": null, "category": "Symbols", - "sort_order": 62, - "added_in": "1.1", + "subcategory": "zodiac", + "sort_order": 1446, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { "name": "CANCER", @@ -51788,20 +64211,20 @@ "softbank": "E242", "google": "FE02E", "image": "264b.png", - "sheet_x": 49, - "sheet_y": 37, + "sheet_x": 57, + "sheet_y": 41, "short_name": "cancer", "short_names": ["cancer"], "text": null, "texts": null, "category": "Symbols", - "sort_order": 63, - "added_in": "1.1", + "subcategory": "zodiac", + "sort_order": 1447, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { "name": "LEO", @@ -51812,20 +64235,20 @@ "softbank": "E243", "google": "FE02F", "image": "264c.png", - "sheet_x": 49, - "sheet_y": 38, + "sheet_x": 57, + "sheet_y": 42, "short_name": "leo", "short_names": ["leo"], "text": null, "texts": null, "category": "Symbols", - "sort_order": 64, - "added_in": "1.1", + "subcategory": "zodiac", + "sort_order": 1448, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { "name": "VIRGO", @@ -51836,20 +64259,20 @@ "softbank": "E244", "google": "FE030", "image": "264d.png", - "sheet_x": 49, - "sheet_y": 39, + "sheet_x": 57, + "sheet_y": 43, "short_name": "virgo", "short_names": ["virgo"], "text": null, "texts": null, "category": "Symbols", - "sort_order": 65, - "added_in": "1.1", + "subcategory": "zodiac", + "sort_order": 1449, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { "name": "LIBRA", @@ -51860,20 +64283,20 @@ "softbank": "E245", "google": "FE031", "image": "264e.png", - "sheet_x": 49, - "sheet_y": 40, + "sheet_x": 57, + "sheet_y": 44, "short_name": "libra", "short_names": ["libra"], "text": null, "texts": null, "category": "Symbols", - "sort_order": 66, - "added_in": "1.1", + "subcategory": "zodiac", + "sort_order": 1450, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { "name": "SCORPIUS", @@ -51884,20 +64307,20 @@ "softbank": "E246", "google": "FE032", "image": "264f.png", - "sheet_x": 49, - "sheet_y": 41, + "sheet_x": 57, + "sheet_y": 45, "short_name": "scorpius", "short_names": ["scorpius"], "text": null, "texts": null, "category": "Symbols", - "sort_order": 67, - "added_in": "1.1", + "subcategory": "zodiac", + "sort_order": 1451, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { "name": "SAGITTARIUS", @@ -51908,20 +64331,20 @@ "softbank": "E247", "google": "FE033", "image": "2650.png", - "sheet_x": 49, - "sheet_y": 42, + "sheet_x": 57, + "sheet_y": 46, "short_name": "sagittarius", "short_names": ["sagittarius"], "text": null, "texts": null, "category": "Symbols", - "sort_order": 68, - "added_in": "1.1", + "subcategory": "zodiac", + "sort_order": 1452, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { "name": "CAPRICORN", @@ -51932,20 +64355,20 @@ "softbank": "E248", "google": "FE034", "image": "2651.png", - "sheet_x": 49, - "sheet_y": 43, + "sheet_x": 57, + "sheet_y": 47, "short_name": "capricorn", "short_names": ["capricorn"], "text": null, "texts": null, "category": "Symbols", - "sort_order": 69, - "added_in": "1.1", + "subcategory": "zodiac", + "sort_order": 1453, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { "name": "AQUARIUS", @@ -51956,20 +64379,20 @@ "softbank": "E249", "google": "FE035", "image": "2652.png", - "sheet_x": 49, - "sheet_y": 44, + "sheet_x": 57, + "sheet_y": 48, "short_name": "aquarius", "short_names": ["aquarius"], "text": null, "texts": null, "category": "Symbols", - "sort_order": 70, - "added_in": "1.1", + "subcategory": "zodiac", + "sort_order": 1454, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { "name": "PISCES", @@ -51980,23 +64403,23 @@ "softbank": "E24A", "google": "FE036", "image": "2653.png", - "sheet_x": 49, - "sheet_y": 45, + "sheet_x": 57, + "sheet_y": 49, "short_name": "pisces", "short_names": ["pisces"], "text": null, "texts": null, "category": "Symbols", - "sort_order": 71, - "added_in": "1.1", + "subcategory": "zodiac", + "sort_order": 1455, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { - "name": null, + "name": "CHESS PAWN", "unified": "265F-FE0F", "non_qualified": "265F", "docomo": null, @@ -52004,20 +64427,20 @@ "softbank": null, "google": null, "image": "265f-fe0f.png", - "sheet_x": 49, - "sheet_y": 46, + "sheet_x": 57, + "sheet_y": 50, "short_name": "chess_pawn", "short_names": ["chess_pawn"], "text": null, "texts": null, "category": "Activities", - "sort_order": 68, - "added_in": "1.1", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false + "subcategory": "game", + "sort_order": 1112, + "added_in": "11.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, { "name": "BLACK SPADE SUIT", @@ -52028,20 +64451,20 @@ "softbank": "E20E", "google": "FEB1B", "image": "2660-fe0f.png", - "sheet_x": 49, - "sheet_y": 47, + "sheet_x": 57, + "sheet_y": 51, "short_name": "spades", "short_names": ["spades"], "text": null, "texts": null, "category": "Activities", - "sort_order": 64, - "added_in": "1.1", + "subcategory": "game", + "sort_order": 1108, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { "name": "BLACK CLUB SUIT", @@ -52052,20 +64475,20 @@ "softbank": "E20F", "google": "FEB1D", "image": "2663-fe0f.png", - "sheet_x": 49, - "sheet_y": 48, + "sheet_x": 57, + "sheet_y": 52, "short_name": "clubs", "short_names": ["clubs"], "text": null, "texts": null, "category": "Activities", - "sort_order": 67, - "added_in": "1.1", + "subcategory": "game", + "sort_order": 1111, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { "name": "BLACK HEART SUIT", @@ -52076,20 +64499,20 @@ "softbank": "E20C", "google": "FEB1A", "image": "2665-fe0f.png", - "sheet_x": 49, - "sheet_y": 49, + "sheet_x": 57, + "sheet_y": 53, "short_name": "hearts", "short_names": ["hearts"], "text": null, "texts": null, "category": "Activities", - "sort_order": 65, - "added_in": "1.1", + "subcategory": "game", + "sort_order": 1109, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { "name": "BLACK DIAMOND SUIT", @@ -52100,20 +64523,20 @@ "softbank": "E20D", "google": "FEB1C", "image": "2666-fe0f.png", - "sheet_x": 49, - "sheet_y": 50, + "sheet_x": 57, + "sheet_y": 54, "short_name": "diamonds", "short_names": ["diamonds"], "text": null, "texts": null, "category": "Activities", - "sort_order": 66, - "added_in": "1.1", + "subcategory": "game", + "sort_order": 1110, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { "name": "HOT SPRINGS", @@ -52124,20 +64547,20 @@ "softbank": "E123", "google": "FE7FA", "image": "2668-fe0f.png", - "sheet_x": 49, - "sheet_y": 51, + "sheet_x": 57, + "sheet_y": 55, "short_name": "hotsprings", "short_names": ["hotsprings"], "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 56, - "added_in": "1.1", + "subcategory": "place-other", + "sort_order": 879, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { "name": "BLACK UNIVERSAL RECYCLING SYMBOL", @@ -52148,23 +64571,23 @@ "softbank": null, "google": "FEB2C", "image": "267b-fe0f.png", - "sheet_x": 49, - "sheet_y": 52, + "sheet_x": 57, + "sheet_y": 56, "short_name": "recycle", "short_names": ["recycle"], "text": null, "texts": null, "category": "Symbols", - "sort_order": 101, - "added_in": "3.2", + "subcategory": "other-symbol", + "sort_order": 1501, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { - "name": null, + "name": "INFINITY", "unified": "267E-FE0F", "non_qualified": "267E", "docomo": null, @@ -52172,20 +64595,20 @@ "softbank": null, "google": null, "image": "267e-fe0f.png", - "sheet_x": 50, - "sheet_y": 0, + "sheet_x": 57, + "sheet_y": 57, "short_name": "infinity", "short_names": ["infinity"], "text": null, "texts": null, "category": "Symbols", - "sort_order": 100, - "added_in": "4.1", - "has_img_apple": false, - "has_img_google": false, - "has_img_twitter": false, - "has_img_facebook": false, - "has_img_messenger": false + "subcategory": "math", + "sort_order": 1490, + "added_in": "11.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, { "name": "WHEELCHAIR SYMBOL", @@ -52196,23 +64619,23 @@ "softbank": "E20A", "google": "FEB20", "image": "267f.png", - "sheet_x": 50, - "sheet_y": 1, + "sheet_x": 57, + "sheet_y": 58, "short_name": "wheelchair", "short_names": ["wheelchair"], "text": null, "texts": null, "category": "Symbols", - "sort_order": 4, - "added_in": "4.1", + "subcategory": "transport-sign", + "sort_order": 1387, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { - "name": null, + "name": "HAMMER AND PICK", "unified": "2692-FE0F", "non_qualified": "2692", "docomo": null, @@ -52220,20 +64643,20 @@ "softbank": null, "google": null, "image": "2692-fe0f.png", - "sheet_x": 50, - "sheet_y": 2, + "sheet_x": 57, + "sheet_y": 59, "short_name": "hammer_and_pick", "short_names": ["hammer_and_pick"], "text": null, "texts": null, "category": "Objects", - "sort_order": 138, - "added_in": "4.1", + "subcategory": "tool", + "sort_order": 1314, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, { "name": "ANCHOR", @@ -52244,23 +64667,23 @@ "softbank": null, "google": "FE4C1", "image": "2693.png", - "sheet_x": 50, - "sheet_y": 3, + "sheet_x": 57, + "sheet_y": 60, "short_name": "anchor", "short_names": ["anchor"], "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 105, - "added_in": "4.1", + "subcategory": "transport-water", + "sort_order": 936, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { - "name": null, + "name": "CROSSED SWORDS", "unified": "2694-FE0F", "non_qualified": "2694", "docomo": null, @@ -52268,23 +64691,23 @@ "softbank": null, "google": null, "image": "2694-fe0f.png", - "sheet_x": 50, - "sheet_y": 4, + "sheet_x": 58, + "sheet_y": 0, "short_name": "crossed_swords", "short_names": ["crossed_swords"], "text": null, "texts": null, "category": "Objects", - "sort_order": 141, - "added_in": "4.1", + "subcategory": "tool", + "sort_order": 1317, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, { - "name": null, + "name": "MEDICAL SYMBOL", "unified": "2695-FE0F", "non_qualified": "2695", "docomo": null, @@ -52292,23 +64715,23 @@ "softbank": null, "google": null, "image": "2695-fe0f.png", - "sheet_x": 50, - "sheet_y": 5, + "sheet_x": 58, + "sheet_y": 1, "short_name": "medical_symbol", "short_names": ["medical_symbol", "staff_of_aesculapius"], "text": null, "texts": null, "category": "Symbols", - "sort_order": 99, - "added_in": "4.1", + "subcategory": "other-symbol", + "sort_order": 1500, + "added_in": "4.0", "has_img_apple": false, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, { - "name": null, + "name": "BALANCE SCALE", "unified": "2696-FE0F", "non_qualified": "2696", "docomo": null, @@ -52316,23 +64739,23 @@ "softbank": null, "google": null, "image": "2696-fe0f.png", - "sheet_x": 50, - "sheet_y": 6, + "sheet_x": 58, + "sheet_y": 2, "short_name": "scales", "short_names": ["scales"], "text": null, "texts": null, "category": "Objects", - "sort_order": 149, - "added_in": "4.1", + "subcategory": "tool", + "sort_order": 1328, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, { - "name": null, + "name": "ALEMBIC", "unified": "2697-FE0F", "non_qualified": "2697", "docomo": null, @@ -52340,23 +64763,23 @@ "softbank": null, "google": null, "image": "2697-fe0f.png", - "sheet_x": 50, - "sheet_y": 7, + "sheet_x": 58, + "sheet_y": 3, "short_name": "alembic", "short_names": ["alembic"], "text": null, "texts": null, "category": "Objects", - "sort_order": 154, - "added_in": "4.1", + "subcategory": "science", + "sort_order": 1336, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, { - "name": null, + "name": "GEAR", "unified": "2699-FE0F", "non_qualified": "2699", "docomo": null, @@ -52364,23 +64787,23 @@ "softbank": null, "google": null, "image": "2699-fe0f.png", - "sheet_x": 50, - "sheet_y": 8, + "sheet_x": 58, + "sheet_y": 4, "short_name": "gear", "short_names": ["gear"], "text": null, "texts": null, "category": "Objects", - "sort_order": 147, - "added_in": "4.1", + "subcategory": "tool", + "sort_order": 1326, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, { - "name": null, + "name": "ATOM SYMBOL", "unified": "269B-FE0F", "non_qualified": "269B", "docomo": null, @@ -52388,23 +64811,23 @@ "softbank": null, "google": null, "image": "269b-fe0f.png", - "sheet_x": 50, - "sheet_y": 9, + "sheet_x": 58, + "sheet_y": 5, "short_name": "atom_symbol", "short_names": ["atom_symbol"], "text": null, "texts": null, "category": "Symbols", - "sort_order": 49, - "added_in": "4.1", + "subcategory": "religion", + "sort_order": 1432, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, { - "name": null, + "name": "FLEUR-DE-LIS", "unified": "269C-FE0F", "non_qualified": "269C", "docomo": null, @@ -52412,20 +64835,20 @@ "softbank": null, "google": null, "image": "269c-fe0f.png", - "sheet_x": 50, - "sheet_y": 10, + "sheet_x": 58, + "sheet_y": 6, "short_name": "fleur_de_lis", "short_names": ["fleur_de_lis"], "text": null, "texts": null, "category": "Symbols", - "sort_order": 102, - "added_in": "4.1", + "subcategory": "other-symbol", + "sort_order": 1502, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, { "name": "WARNING SIGN", @@ -52436,20 +64859,20 @@ "softbank": "E252", "google": "FEB23", "image": "26a0-fe0f.png", - "sheet_x": 50, - "sheet_y": 11, + "sheet_x": 58, + "sheet_y": 7, "short_name": "warning", "short_names": ["warning"], "text": null, "texts": null, "category": "Symbols", - "sort_order": 14, - "added_in": "4.0", + "subcategory": "warning", + "sort_order": 1397, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { "name": "HIGH VOLTAGE SIGN", @@ -52460,20 +64883,44 @@ "softbank": "E13D", "google": "FE004", "image": "26a1.png", - "sheet_x": 50, - "sheet_y": 12, + "sheet_x": 58, + "sheet_y": 8, "short_name": "zap", "short_names": ["zap"], "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 195, - "added_in": "4.0", + "subcategory": "sky & weather", + "sort_order": 1030, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true + }, + { + "name": "TRANSGENDER SYMBOL", + "unified": "26A7-FE0F", + "non_qualified": "26A7", + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "26a7-fe0f.png", + "sheet_x": 58, + "sheet_y": 9, + "short_name": "transgender_symbol", + "short_names": ["transgender_symbol"], + "text": null, + "texts": null, + "category": "Symbols", + "subcategory": "gender", + "sort_order": 1484, + "added_in": "13.0", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, { "name": "MEDIUM WHITE CIRCLE", @@ -52484,20 +64931,20 @@ "softbank": null, "google": "FEB65", "image": "26aa.png", - "sheet_x": 50, - "sheet_y": 13, + "sheet_x": 58, + "sheet_y": 10, "short_name": "white_circle", "short_names": ["white_circle"], "text": null, "texts": null, "category": "Symbols", - "sort_order": 203, - "added_in": "4.1", + "subcategory": "geometric", + "sort_order": 1581, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { "name": "MEDIUM BLACK CIRCLE", @@ -52508,23 +64955,23 @@ "softbank": null, "google": "FEB66", "image": "26ab.png", - "sheet_x": 50, - "sheet_y": 14, + "sheet_x": 58, + "sheet_y": 11, "short_name": "black_circle", "short_names": ["black_circle"], "text": null, "texts": null, "category": "Symbols", - "sort_order": 204, - "added_in": "4.1", + "subcategory": "geometric", + "sort_order": 1580, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { - "name": null, + "name": "COFFIN", "unified": "26B0-FE0F", "non_qualified": "26B0", "docomo": null, @@ -52532,23 +64979,23 @@ "softbank": null, "google": null, "image": "26b0-fe0f.png", - "sheet_x": 50, - "sheet_y": 15, + "sheet_x": 58, + "sheet_y": 12, "short_name": "coffin", "short_names": ["coffin"], "text": null, "texts": null, "category": "Objects", - "sort_order": 179, - "added_in": "4.1", + "subcategory": "other-object", + "sort_order": 1376, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, { - "name": null, + "name": "FUNERAL URN", "unified": "26B1-FE0F", "non_qualified": "26B1", "docomo": null, @@ -52556,20 +65003,20 @@ "softbank": null, "google": null, "image": "26b1-fe0f.png", - "sheet_x": 50, - "sheet_y": 16, + "sheet_x": 58, + "sheet_y": 13, "short_name": "funeral_urn", "short_names": ["funeral_urn"], "text": null, "texts": null, "category": "Objects", - "sort_order": 180, - "added_in": "4.1", + "subcategory": "other-object", + "sort_order": 1378, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, { "name": "SOCCER BALL", @@ -52580,20 +65027,20 @@ "softbank": "E018", "google": "FE7D4", "image": "26bd.png", - "sheet_x": 50, - "sheet_y": 17, + "sheet_x": 58, + "sheet_y": 14, "short_name": "soccer", "short_names": ["soccer"], "text": null, "texts": null, "category": "Activities", - "sort_order": 28, - "added_in": "5.2", + "subcategory": "sport", + "sort_order": 1065, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { "name": "BASEBALL", @@ -52604,20 +65051,20 @@ "softbank": "E016", "google": "FE7D1", "image": "26be.png", - "sheet_x": 50, - "sheet_y": 18, + "sheet_x": 58, + "sheet_y": 15, "short_name": "baseball", "short_names": ["baseball"], "text": null, "texts": null, "category": "Activities", - "sort_order": 29, - "added_in": "5.2", + "subcategory": "sport", + "sort_order": 1066, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { "name": "SNOWMAN WITHOUT SNOW", @@ -52628,20 +65075,20 @@ "softbank": "E048", "google": "FE003", "image": "26c4.png", - "sheet_x": 50, - "sheet_y": 19, + "sheet_x": 58, + "sheet_y": 16, "short_name": "snowman_without_snow", "short_names": ["snowman_without_snow"], "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 198, - "added_in": "5.2", + "subcategory": "sky & weather", + "sort_order": 1033, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { "name": "SUN BEHIND CLOUD", @@ -52652,23 +65099,23 @@ "softbank": null, "google": "FE00F", "image": "26c5.png", - "sheet_x": 50, - "sheet_y": 20, + "sheet_x": 58, + "sheet_y": 17, "short_name": "partly_sunny", "short_names": ["partly_sunny"], "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 178, - "added_in": "5.2", + "subcategory": "sky & weather", + "sort_order": 1013, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { - "name": null, + "name": "CLOUD WITH LIGHTNING AND RAIN", "unified": "26C8-FE0F", "non_qualified": "26C8", "docomo": null, @@ -52676,20 +65123,20 @@ "softbank": null, "google": null, "image": "26c8-fe0f.png", - "sheet_x": 50, - "sheet_y": 21, + "sheet_x": 58, + "sheet_y": 18, "short_name": "thunder_cloud_and_rain", "short_names": ["thunder_cloud_and_rain"], "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 179, - "added_in": "5.2", + "subcategory": "sky & weather", + "sort_order": 1014, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, { "name": "OPHIUCHUS", @@ -52700,23 +65147,23 @@ "softbank": "E24B", "google": "FE037", "image": "26ce.png", - "sheet_x": 50, - "sheet_y": 22, + "sheet_x": 58, + "sheet_y": 19, "short_name": "ophiuchus", "short_names": ["ophiuchus"], "text": null, "texts": null, "category": "Symbols", - "sort_order": 72, - "added_in": "6.0", + "subcategory": "zodiac", + "sort_order": 1456, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { - "name": null, + "name": "PICK", "unified": "26CF-FE0F", "non_qualified": "26CF", "docomo": null, @@ -52724,23 +65171,23 @@ "softbank": null, "google": null, "image": "26cf-fe0f.png", - "sheet_x": 50, - "sheet_y": 23, + "sheet_x": 58, + "sheet_y": 20, "short_name": "pick", "short_names": ["pick"], "text": null, "texts": null, "category": "Objects", - "sort_order": 137, - "added_in": "5.2", + "subcategory": "tool", + "sort_order": 1313, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, { - "name": null, + "name": "RESCUE WORKER\u2019S HELMET", "unified": "26D1-FE0F", "non_qualified": "26D1", "docomo": null, @@ -52748,23 +65195,23 @@ "softbank": null, "google": null, "image": "26d1-fe0f.png", - "sheet_x": 50, - "sheet_y": 24, + "sheet_x": 58, + "sheet_y": 21, "short_name": "helmet_with_white_cross", "short_names": ["helmet_with_white_cross"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 465, - "added_in": "5.2", + "category": "Objects", + "subcategory": "clothing", + "sort_order": 1165, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, { - "name": null, + "name": "CHAINS", "unified": "26D3-FE0F", "non_qualified": "26D3", "docomo": null, @@ -52772,20 +65219,20 @@ "softbank": null, "google": null, "image": "26d3-fe0f.png", - "sheet_x": 50, - "sheet_y": 25, + "sheet_x": 58, + "sheet_y": 22, "short_name": "chains", "short_names": ["chains"], "text": null, "texts": null, "category": "Objects", - "sort_order": 151, - "added_in": "5.2", + "subcategory": "tool", + "sort_order": 1331, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, { "name": "NO ENTRY", @@ -52796,23 +65243,23 @@ "softbank": null, "google": "FEB26", "image": "26d4.png", - "sheet_x": 50, - "sheet_y": 26, + "sheet_x": 58, + "sheet_y": 23, "short_name": "no_entry", "short_names": ["no_entry"], "text": null, "texts": null, "category": "Symbols", - "sort_order": 16, - "added_in": "5.2", + "subcategory": "warning", + "sort_order": 1399, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { - "name": null, + "name": "SHINTO SHRINE", "unified": "26E9-FE0F", "non_qualified": "26E9", "docomo": null, @@ -52820,20 +65267,20 @@ "softbank": null, "google": null, "image": "26e9-fe0f.png", - "sheet_x": 50, - "sheet_y": 27, + "sheet_x": 58, + "sheet_y": 24, "short_name": "shinto_shrine", "short_names": ["shinto_shrine"], "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 44, - "added_in": "5.2", + "subcategory": "place-religious", + "sort_order": 867, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, { "name": "CHURCH", @@ -52844,23 +65291,23 @@ "softbank": "E037", "google": "FE4BB", "image": "26ea.png", - "sheet_x": 50, - "sheet_y": 28, + "sheet_x": 58, + "sheet_y": 25, "short_name": "church", "short_names": ["church"], "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 41, - "added_in": "5.2", + "subcategory": "place-religious", + "sort_order": 863, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { - "name": null, + "name": "MOUNTAIN", "unified": "26F0-FE0F", "non_qualified": "26F0", "docomo": null, @@ -52868,23 +65315,23 @@ "softbank": null, "google": null, "image": "26f0-fe0f.png", - "sheet_x": 50, - "sheet_y": 29, + "sheet_x": 58, + "sheet_y": 26, "short_name": "mountain", "short_names": ["mountain"], "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 9, - "added_in": "5.2", + "subcategory": "place-geographic", + "sort_order": 828, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, { - "name": null, + "name": "UMBRELLA ON GROUND", "unified": "26F1-FE0F", "non_qualified": "26F1", "docomo": null, @@ -52892,20 +65339,20 @@ "softbank": null, "google": null, "image": "26f1-fe0f.png", - "sheet_x": 50, - "sheet_y": 30, + "sheet_x": 58, + "sheet_y": 27, "short_name": "umbrella_on_ground", "short_names": ["umbrella_on_ground"], "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 194, - "added_in": "5.2", + "subcategory": "sky & weather", + "sort_order": 1029, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, { "name": "FOUNTAIN", @@ -52916,20 +65363,20 @@ "softbank": "E121", "google": "FE4BC", "image": "26f2.png", - "sheet_x": 50, - "sheet_y": 31, + "sheet_x": 58, + "sheet_y": 28, "short_name": "fountain", "short_names": ["fountain"], "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 46, - "added_in": "5.2", + "subcategory": "place-other", + "sort_order": 869, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { "name": "FLAG IN HOLE", @@ -52940,23 +65387,23 @@ "softbank": "E014", "google": "FE7D2", "image": "26f3.png", - "sheet_x": 50, - "sheet_y": 32, + "sheet_x": 58, + "sheet_y": 29, "short_name": "golf", "short_names": ["golf"], "text": null, "texts": null, "category": "Activities", - "sort_order": 47, - "added_in": "5.2", + "subcategory": "sport", + "sort_order": 1084, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { - "name": null, + "name": "FERRY", "unified": "26F4-FE0F", "non_qualified": "26F4", "docomo": null, @@ -52964,20 +65411,20 @@ "softbank": null, "google": null, "image": "26f4-fe0f.png", - "sheet_x": 50, - "sheet_y": 33, + "sheet_x": 58, + "sheet_y": 30, "short_name": "ferry", "short_names": ["ferry"], "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 110, - "added_in": "5.2", + "subcategory": "transport-water", + "sort_order": 942, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, { "name": "SAILBOAT", @@ -52988,23 +65435,23 @@ "softbank": "E01C", "google": "FE7EA", "image": "26f5.png", - "sheet_x": 50, - "sheet_y": 34, + "sheet_x": 58, + "sheet_y": 31, "short_name": "boat", "short_names": ["boat", "sailboat"], "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 106, - "added_in": "5.2", + "subcategory": "transport-water", + "sort_order": 938, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { - "name": null, + "name": "SKIER", "unified": "26F7-FE0F", "non_qualified": "26F7", "docomo": null, @@ -53012,23 +65459,23 @@ "softbank": null, "google": null, "image": "26f7-fe0f.png", - "sheet_x": 50, - "sheet_y": 35, + "sheet_x": 58, + "sheet_y": 32, "short_name": "skier", "short_names": ["skier"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 276, - "added_in": "5.2", + "category": "People & Body", + "subcategory": "person-sport", + "sort_order": 441, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, { - "name": null, + "name": "ICE SKATE", "unified": "26F8-FE0F", "non_qualified": "26F8", "docomo": null, @@ -53036,23 +65483,23 @@ "softbank": null, "google": null, "image": "26f8-fe0f.png", - "sheet_x": 50, - "sheet_y": 36, + "sheet_x": 58, + "sheet_y": 33, "short_name": "ice_skate", "short_names": ["ice_skate"], "text": null, "texts": null, "category": "Activities", - "sort_order": 48, - "added_in": "5.2", + "subcategory": "sport", + "sort_order": 1085, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, { - "name": null, + "name": "WOMAN BOUNCING BALL", "unified": "26F9-FE0F-200D-2640-FE0F", "non_qualified": null, "docomo": null, @@ -53060,90 +65507,85 @@ "softbank": null, "google": null, "image": "26f9-fe0f-200d-2640-fe0f.png", - "sheet_x": 50, - "sheet_y": 37, + "sheet_x": 58, + "sheet_y": 34, "short_name": "woman-bouncing-ball", "short_names": ["woman-bouncing-ball"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 292, - "added_in": "5.2", + "category": "People & Body", + "subcategory": "person-sport", + "sort_order": 457, + "added_in": "4.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": false, - "has_img_messenger": false, "skin_variations": { "1F3FB": { "unified": "26F9-1F3FB-200D-2640-FE0F", "non_qualified": "26F9-1F3FB-200D-2640", "image": "26f9-1f3fb-200d-2640-fe0f.png", - "sheet_x": 50, - "sheet_y": 38, - "added_in": "8.0", + "sheet_x": 58, + "sheet_y": 35, + "added_in": "4.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false + "has_img_facebook": true }, "1F3FC": { "unified": "26F9-1F3FC-200D-2640-FE0F", "non_qualified": "26F9-1F3FC-200D-2640", "image": "26f9-1f3fc-200d-2640-fe0f.png", - "sheet_x": 50, - "sheet_y": 39, - "added_in": "8.0", + "sheet_x": 58, + "sheet_y": 36, + "added_in": "4.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false + "has_img_facebook": true }, "1F3FD": { "unified": "26F9-1F3FD-200D-2640-FE0F", "non_qualified": "26F9-1F3FD-200D-2640", "image": "26f9-1f3fd-200d-2640-fe0f.png", - "sheet_x": 50, - "sheet_y": 40, - "added_in": "8.0", + "sheet_x": 58, + "sheet_y": 37, + "added_in": "4.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false + "has_img_facebook": true }, "1F3FE": { "unified": "26F9-1F3FE-200D-2640-FE0F", "non_qualified": "26F9-1F3FE-200D-2640", "image": "26f9-1f3fe-200d-2640-fe0f.png", - "sheet_x": 50, - "sheet_y": 41, - "added_in": "8.0", + "sheet_x": 58, + "sheet_y": 38, + "added_in": "4.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false + "has_img_facebook": true }, "1F3FF": { "unified": "26F9-1F3FF-200D-2640-FE0F", "non_qualified": "26F9-1F3FF-200D-2640", "image": "26f9-1f3ff-200d-2640-fe0f.png", - "sheet_x": 50, - "sheet_y": 42, - "added_in": "8.0", + "sheet_x": 58, + "sheet_y": 39, + "added_in": "4.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false + "has_img_facebook": true } } }, { - "name": null, + "name": "MAN BOUNCING BALL", "unified": "26F9-FE0F-200D-2642-FE0F", "non_qualified": null, "docomo": null, @@ -53151,91 +65593,86 @@ "softbank": null, "google": null, "image": "26f9-fe0f-200d-2642-fe0f.png", - "sheet_x": 50, - "sheet_y": 43, + "sheet_x": 58, + "sheet_y": 40, "short_name": "man-bouncing-ball", "short_names": ["man-bouncing-ball"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 291, - "added_in": "5.2", + "category": "People & Body", + "subcategory": "person-sport", + "sort_order": 456, + "added_in": "4.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": false, - "has_img_messenger": false, "skin_variations": { "1F3FB": { "unified": "26F9-1F3FB-200D-2642-FE0F", "non_qualified": "26F9-1F3FB-200D-2642", "image": "26f9-1f3fb-200d-2642-fe0f.png", - "sheet_x": 50, - "sheet_y": 44, - "added_in": "8.0", + "sheet_x": 58, + "sheet_y": 41, + "added_in": "4.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false + "has_img_facebook": true }, "1F3FC": { "unified": "26F9-1F3FC-200D-2642-FE0F", "non_qualified": "26F9-1F3FC-200D-2642", "image": "26f9-1f3fc-200d-2642-fe0f.png", - "sheet_x": 50, - "sheet_y": 45, - "added_in": "8.0", + "sheet_x": 58, + "sheet_y": 42, + "added_in": "4.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false + "has_img_facebook": true }, "1F3FD": { "unified": "26F9-1F3FD-200D-2642-FE0F", "non_qualified": "26F9-1F3FD-200D-2642", "image": "26f9-1f3fd-200d-2642-fe0f.png", - "sheet_x": 50, - "sheet_y": 46, - "added_in": "8.0", + "sheet_x": 58, + "sheet_y": 43, + "added_in": "4.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false + "has_img_facebook": true }, "1F3FE": { "unified": "26F9-1F3FE-200D-2642-FE0F", "non_qualified": "26F9-1F3FE-200D-2642", "image": "26f9-1f3fe-200d-2642-fe0f.png", - "sheet_x": 50, - "sheet_y": 47, - "added_in": "8.0", + "sheet_x": 58, + "sheet_y": 44, + "added_in": "4.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false + "has_img_facebook": true }, "1F3FF": { "unified": "26F9-1F3FF-200D-2642-FE0F", "non_qualified": "26F9-1F3FF-200D-2642", "image": "26f9-1f3ff-200d-2642-fe0f.png", - "sheet_x": 50, - "sheet_y": 48, - "added_in": "8.0", + "sheet_x": 58, + "sheet_y": 45, + "added_in": "4.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false + "has_img_facebook": true } }, "obsoletes": "26F9-FE0F" }, { - "name": null, + "name": "PERSON BOUNCING BALL", "unified": "26F9-FE0F", "non_qualified": "26F9", "docomo": null, @@ -53243,85 +65680,80 @@ "softbank": null, "google": null, "image": "26f9-fe0f.png", - "sheet_x": 50, - "sheet_y": 49, + "sheet_x": 58, + "sheet_y": 46, "short_name": "person_with_ball", "short_names": ["person_with_ball"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 290, - "added_in": "5.2", + "category": "People & Body", + "subcategory": "person-sport", + "sort_order": 455, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false, + "has_img_facebook": true, "skin_variations": { "1F3FB": { "unified": "26F9-1F3FB", "non_qualified": null, "image": "26f9-1f3fb.png", - "sheet_x": 50, - "sheet_y": 50, - "added_in": "8.0", + "sheet_x": 58, + "sheet_y": 47, + "added_in": "2.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false + "has_img_facebook": true }, "1F3FC": { "unified": "26F9-1F3FC", "non_qualified": null, "image": "26f9-1f3fc.png", - "sheet_x": 50, - "sheet_y": 51, - "added_in": "8.0", + "sheet_x": 58, + "sheet_y": 48, + "added_in": "2.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false + "has_img_facebook": true }, "1F3FD": { "unified": "26F9-1F3FD", "non_qualified": null, "image": "26f9-1f3fd.png", - "sheet_x": 50, - "sheet_y": 52, - "added_in": "8.0", + "sheet_x": 58, + "sheet_y": 49, + "added_in": "2.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false + "has_img_facebook": true }, "1F3FE": { "unified": "26F9-1F3FE", "non_qualified": null, "image": "26f9-1f3fe.png", - "sheet_x": 51, - "sheet_y": 0, - "added_in": "8.0", + "sheet_x": 58, + "sheet_y": 50, + "added_in": "2.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false + "has_img_facebook": true }, "1F3FF": { "unified": "26F9-1F3FF", "non_qualified": null, "image": "26f9-1f3ff.png", - "sheet_x": 51, - "sheet_y": 1, - "added_in": "8.0", + "sheet_x": 58, + "sheet_y": 51, + "added_in": "2.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": false, - "has_img_messenger": false + "has_img_facebook": true } }, "obsoleted_by": "26F9-FE0F-200D-2642-FE0F" @@ -53335,20 +65767,20 @@ "softbank": "E122", "google": "FE7FB", "image": "26fa.png", - "sheet_x": 51, - "sheet_y": 2, + "sheet_x": 58, + "sheet_y": 52, "short_name": "tent", "short_names": ["tent"], "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 47, - "added_in": "5.2", + "subcategory": "place-other", + "sort_order": 870, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { "name": "FUEL PUMP", @@ -53359,20 +65791,20 @@ "softbank": "E03A", "google": "FE7F5", "image": "26fd.png", - "sheet_x": 51, - "sheet_y": 3, + "sheet_x": 58, + "sheet_y": 53, "short_name": "fuelpump", "short_names": ["fuelpump"], "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 99, - "added_in": "5.2", + "subcategory": "transport-ground", + "sort_order": 929, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { "name": "BLACK SCISSORS", @@ -53383,20 +65815,20 @@ "softbank": "E313", "google": "FE53E", "image": "2702-fe0f.png", - "sheet_x": 51, - "sheet_y": 4, + "sheet_x": 58, + "sheet_y": 54, "short_name": "scissors", "short_names": ["scissors"], "text": null, "texts": null, "category": "Objects", - "sort_order": 126, - "added_in": "1.1", + "subcategory": "office", + "sort_order": 1301, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { "name": "WHITE HEAVY CHECK MARK", @@ -53407,20 +65839,20 @@ "softbank": null, "google": "FEB4A", "image": "2705.png", - "sheet_x": 51, - "sheet_y": 5, + "sheet_x": 58, + "sheet_y": 55, "short_name": "white_check_mark", "short_names": ["white_check_mark"], "text": null, "texts": null, "category": "Symbols", - "sort_order": 107, - "added_in": "6.0", + "subcategory": "other-symbol", + "sort_order": 1507, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { "name": "AIRPLANE", @@ -53431,20 +65863,20 @@ "softbank": "E01D", "google": "FE7E9", "image": "2708-fe0f.png", - "sheet_x": 51, - "sheet_y": 6, + "sheet_x": 58, + "sheet_y": 56, "short_name": "airplane", "short_names": ["airplane"], "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 113, - "added_in": "1.1", + "subcategory": "transport-air", + "sort_order": 945, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { "name": "ENVELOPE", @@ -53455,20 +65887,20 @@ "softbank": null, "google": "FE529", "image": "2709-fe0f.png", - "sheet_x": 51, - "sheet_y": 7, + "sheet_x": 58, + "sheet_y": 57, "short_name": "email", "short_names": ["email", "envelope"], "text": null, "texts": null, "category": "Objects", - "sort_order": 87, - "added_in": "1.1", + "subcategory": "mail", + "sort_order": 1262, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { "name": "RAISED FIST", @@ -53479,85 +65911,80 @@ "softbank": "E010", "google": "FEB93", "image": "270a.png", - "sheet_x": 51, - "sheet_y": 8, + "sheet_x": 58, + "sheet_y": 58, "short_name": "fist", "short_names": ["fist"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 376, - "added_in": "6.0", + "category": "People & Body", + "subcategory": "hand-fingers-closed", + "sort_order": 196, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true, - "has_img_messenger": true, "skin_variations": { "1F3FB": { "unified": "270A-1F3FB", "non_qualified": null, "image": "270a-1f3fb.png", - "sheet_x": 51, - "sheet_y": 9, - "added_in": "8.0", + "sheet_x": 58, + "sheet_y": 59, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, "1F3FC": { "unified": "270A-1F3FC", "non_qualified": null, "image": "270a-1f3fc.png", - "sheet_x": 51, - "sheet_y": 10, - "added_in": "8.0", + "sheet_x": 58, + "sheet_y": 60, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, "1F3FD": { "unified": "270A-1F3FD", "non_qualified": null, "image": "270a-1f3fd.png", - "sheet_x": 51, - "sheet_y": 11, - "added_in": "8.0", + "sheet_x": 59, + "sheet_y": 0, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, "1F3FE": { "unified": "270A-1F3FE", "non_qualified": null, "image": "270a-1f3fe.png", - "sheet_x": 51, - "sheet_y": 12, - "added_in": "8.0", + "sheet_x": 59, + "sheet_y": 1, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, "1F3FF": { "unified": "270A-1F3FF", "non_qualified": null, "image": "270a-1f3ff.png", - "sheet_x": 51, - "sheet_y": 13, - "added_in": "8.0", + "sheet_x": 59, + "sheet_y": 2, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true } } }, @@ -53570,85 +65997,80 @@ "softbank": "E012", "google": "FEB95", "image": "270b.png", - "sheet_x": 51, - "sheet_y": 14, + "sheet_x": 59, + "sheet_y": 3, "short_name": "hand", "short_names": ["hand", "raised_hand"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 372, - "added_in": "6.0", + "category": "People & Body", + "subcategory": "hand-fingers-open", + "sort_order": 170, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true, - "has_img_messenger": true, "skin_variations": { "1F3FB": { "unified": "270B-1F3FB", "non_qualified": null, "image": "270b-1f3fb.png", - "sheet_x": 51, - "sheet_y": 15, - "added_in": "8.0", + "sheet_x": 59, + "sheet_y": 4, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, "1F3FC": { "unified": "270B-1F3FC", "non_qualified": null, "image": "270b-1f3fc.png", - "sheet_x": 51, - "sheet_y": 16, - "added_in": "8.0", + "sheet_x": 59, + "sheet_y": 5, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, "1F3FD": { "unified": "270B-1F3FD", "non_qualified": null, "image": "270b-1f3fd.png", - "sheet_x": 51, - "sheet_y": 17, - "added_in": "8.0", + "sheet_x": 59, + "sheet_y": 6, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, "1F3FE": { "unified": "270B-1F3FE", "non_qualified": null, "image": "270b-1f3fe.png", - "sheet_x": 51, - "sheet_y": 18, - "added_in": "8.0", + "sheet_x": 59, + "sheet_y": 7, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, "1F3FF": { "unified": "270B-1F3FF", "non_qualified": null, "image": "270b-1f3ff.png", - "sheet_x": 51, - "sheet_y": 19, - "added_in": "8.0", + "sheet_x": 59, + "sheet_y": 8, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true } } }, @@ -53661,90 +66083,85 @@ "softbank": "E011", "google": "FEB94", "image": "270c-fe0f.png", - "sheet_x": 51, - "sheet_y": 20, + "sheet_x": 59, + "sheet_y": 9, "short_name": "v", "short_names": ["v"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 366, - "added_in": "1.1", + "category": "People & Body", + "subcategory": "hand-fingers-partial", + "sort_order": 181, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true, - "has_img_messenger": true, "skin_variations": { "1F3FB": { "unified": "270C-1F3FB", "non_qualified": null, "image": "270c-1f3fb.png", - "sheet_x": 51, - "sheet_y": 21, - "added_in": "8.0", + "sheet_x": 59, + "sheet_y": 10, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, "1F3FC": { "unified": "270C-1F3FC", "non_qualified": null, "image": "270c-1f3fc.png", - "sheet_x": 51, - "sheet_y": 22, - "added_in": "8.0", + "sheet_x": 59, + "sheet_y": 11, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, "1F3FD": { "unified": "270C-1F3FD", "non_qualified": null, "image": "270c-1f3fd.png", - "sheet_x": 51, - "sheet_y": 23, - "added_in": "8.0", + "sheet_x": 59, + "sheet_y": 12, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, "1F3FE": { "unified": "270C-1F3FE", "non_qualified": null, "image": "270c-1f3fe.png", - "sheet_x": 51, - "sheet_y": 24, - "added_in": "8.0", + "sheet_x": 59, + "sheet_y": 13, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, "1F3FF": { "unified": "270C-1F3FF", "non_qualified": null, "image": "270c-1f3ff.png", - "sheet_x": 51, - "sheet_y": 25, - "added_in": "8.0", + "sheet_x": 59, + "sheet_y": 14, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true } } }, { - "name": null, + "name": "WRITING HAND", "unified": "270D-FE0F", "non_qualified": "270D", "docomo": null, @@ -53752,85 +66169,80 @@ "softbank": null, "google": null, "image": "270d-fe0f.png", - "sheet_x": 51, - "sheet_y": 26, + "sheet_x": 59, + "sheet_y": 15, "short_name": "writing_hand", "short_names": ["writing_hand"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 383, - "added_in": "1.1", + "category": "People & Body", + "subcategory": "hand-prop", + "sort_order": 207, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, "has_img_facebook": true, - "has_img_messenger": false, "skin_variations": { "1F3FB": { "unified": "270D-1F3FB", "non_qualified": null, "image": "270d-1f3fb.png", - "sheet_x": 51, - "sheet_y": 27, - "added_in": "8.0", + "sheet_x": 59, + "sheet_y": 16, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, "1F3FC": { "unified": "270D-1F3FC", "non_qualified": null, "image": "270d-1f3fc.png", - "sheet_x": 51, - "sheet_y": 28, - "added_in": "8.0", + "sheet_x": 59, + "sheet_y": 17, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, "1F3FD": { "unified": "270D-1F3FD", "non_qualified": null, "image": "270d-1f3fd.png", - "sheet_x": 51, - "sheet_y": 29, - "added_in": "8.0", + "sheet_x": 59, + "sheet_y": 18, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, "1F3FE": { "unified": "270D-1F3FE", "non_qualified": null, "image": "270d-1f3fe.png", - "sheet_x": 51, - "sheet_y": 30, - "added_in": "8.0", + "sheet_x": 59, + "sheet_y": 19, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, "1F3FF": { "unified": "270D-1F3FF", "non_qualified": null, "image": "270d-1f3ff.png", - "sheet_x": 51, - "sheet_y": 31, - "added_in": "8.0", + "sheet_x": 59, + "sheet_y": 20, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true } } }, @@ -53843,20 +66255,20 @@ "softbank": null, "google": "FE539", "image": "270f-fe0f.png", - "sheet_x": 51, - "sheet_y": 32, + "sheet_x": 59, + "sheet_y": 21, "short_name": "pencil2", "short_names": ["pencil2"], "text": null, "texts": null, "category": "Objects", - "sort_order": 100, - "added_in": "1.1", + "subcategory": "writing", + "sort_order": 1275, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { "name": "BLACK NIB", @@ -53867,20 +66279,20 @@ "softbank": null, "google": "FE536", "image": "2712-fe0f.png", - "sheet_x": 51, - "sheet_y": 33, + "sheet_x": 59, + "sheet_y": 22, "short_name": "black_nib", "short_names": ["black_nib"], "text": null, "texts": null, "category": "Objects", - "sort_order": 101, - "added_in": "1.1", + "subcategory": "writing", + "sort_order": 1276, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { "name": "HEAVY CHECK MARK", @@ -53891,20 +66303,20 @@ "softbank": null, "google": "FEB49", "image": "2714-fe0f.png", - "sheet_x": 51, - "sheet_y": 34, + "sheet_x": 59, + "sheet_y": 23, "short_name": "heavy_check_mark", "short_names": ["heavy_check_mark"], "text": null, "texts": null, "category": "Symbols", - "sort_order": 109, - "added_in": "1.1", + "subcategory": "other-symbol", + "sort_order": 1509, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { "name": "HEAVY MULTIPLICATION X", @@ -53915,23 +66327,23 @@ "softbank": null, "google": "FEB53", "image": "2716-fe0f.png", - "sheet_x": 51, - "sheet_y": 35, + "sheet_x": 59, + "sheet_y": 24, "short_name": "heavy_multiplication_x", "short_names": ["heavy_multiplication_x"], "text": null, "texts": null, "category": "Symbols", - "sort_order": 110, - "added_in": "1.1", + "subcategory": "math", + "sort_order": 1485, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { - "name": null, + "name": "LATIN CROSS", "unified": "271D-FE0F", "non_qualified": "271D", "docomo": null, @@ -53939,23 +66351,23 @@ "softbank": null, "google": null, "image": "271d-fe0f.png", - "sheet_x": 51, - "sheet_y": 36, + "sheet_x": 59, + "sheet_y": 25, "short_name": "latin_cross", "short_names": ["latin_cross"], "text": null, "texts": null, "category": "Symbols", - "sort_order": 54, - "added_in": "1.1", + "subcategory": "religion", + "sort_order": 1437, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, { - "name": null, + "name": "STAR OF DAVID", "unified": "2721-FE0F", "non_qualified": "2721", "docomo": null, @@ -53963,20 +66375,20 @@ "softbank": null, "google": null, "image": "2721-fe0f.png", - "sheet_x": 51, - "sheet_y": 37, + "sheet_x": 59, + "sheet_y": 26, "short_name": "star_of_david", "short_names": ["star_of_david"], "text": null, "texts": null, "category": "Symbols", - "sort_order": 51, - "added_in": "1.1", + "subcategory": "religion", + "sort_order": 1434, + "added_in": "0.7", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true }, { "name": "SPARKLES", @@ -53987,20 +66399,20 @@ "softbank": "E32E", "google": "FEB60", "image": "2728.png", - "sheet_x": 51, - "sheet_y": 38, + "sheet_x": 59, + "sheet_y": 27, "short_name": "sparkles", "short_names": ["sparkles"], "text": null, "texts": null, "category": "Activities", - "sort_order": 6, - "added_in": "6.0", + "subcategory": "event", + "sort_order": 1043, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { "name": "EIGHT SPOKED ASTERISK", @@ -54011,20 +66423,20 @@ "softbank": "E206", "google": "FEB62", "image": "2733-fe0f.png", - "sheet_x": 51, - "sheet_y": 39, + "sheet_x": 59, + "sheet_y": 28, "short_name": "eight_spoked_asterisk", "short_names": ["eight_spoked_asterisk"], "text": null, "texts": null, "category": "Symbols", - "sort_order": 119, - "added_in": "1.1", + "subcategory": "other-symbol", + "sort_order": 1515, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { "name": "EIGHT POINTED BLACK STAR", @@ -54035,20 +66447,20 @@ "softbank": "E205", "google": "FEB61", "image": "2734-fe0f.png", - "sheet_x": 51, - "sheet_y": 40, + "sheet_x": 59, + "sheet_y": 29, "short_name": "eight_pointed_black_star", "short_names": ["eight_pointed_black_star"], "text": null, "texts": null, "category": "Symbols", - "sort_order": 120, - "added_in": "1.1", + "subcategory": "other-symbol", + "sort_order": 1516, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { "name": "SNOWFLAKE", @@ -54059,20 +66471,20 @@ "softbank": null, "google": "FE00E", "image": "2744-fe0f.png", - "sheet_x": 51, - "sheet_y": 41, + "sheet_x": 59, + "sheet_y": 30, "short_name": "snowflake", "short_names": ["snowflake"], "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 196, - "added_in": "1.1", + "subcategory": "sky & weather", + "sort_order": 1031, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { "name": "SPARKLE", @@ -54083,20 +66495,20 @@ "softbank": null, "google": "FEB77", "image": "2747-fe0f.png", - "sheet_x": 51, - "sheet_y": 42, + "sheet_x": 59, + "sheet_y": 31, "short_name": "sparkle", "short_names": ["sparkle"], "text": null, "texts": null, "category": "Symbols", - "sort_order": 121, - "added_in": "1.1", + "subcategory": "other-symbol", + "sort_order": 1517, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { "name": "CROSS MARK", @@ -54107,20 +66519,20 @@ "softbank": "E333", "google": "FEB45", "image": "274c.png", - "sheet_x": 51, - "sheet_y": 43, + "sheet_x": 59, + "sheet_y": 32, "short_name": "x", "short_names": ["x"], "text": null, "texts": null, "category": "Symbols", - "sort_order": 111, - "added_in": "6.0", + "subcategory": "other-symbol", + "sort_order": 1510, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { "name": "NEGATIVE SQUARED CROSS MARK", @@ -54131,20 +66543,20 @@ "softbank": null, "google": "FEB46", "image": "274e.png", - "sheet_x": 51, - "sheet_y": 44, + "sheet_x": 59, + "sheet_y": 33, "short_name": "negative_squared_cross_mark", "short_names": ["negative_squared_cross_mark"], "text": null, "texts": null, "category": "Symbols", - "sort_order": 112, - "added_in": "6.0", + "subcategory": "other-symbol", + "sort_order": 1511, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { "name": "BLACK QUESTION MARK ORNAMENT", @@ -54155,20 +66567,20 @@ "softbank": "E020", "google": "FEB09", "image": "2753.png", - "sheet_x": 51, - "sheet_y": 45, + "sheet_x": 59, + "sheet_y": 34, "short_name": "question", "short_names": ["question"], "text": null, "texts": null, "category": "Symbols", - "sort_order": 124, - "added_in": "6.0", + "subcategory": "punctuation", + "sort_order": 1493, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { "name": "WHITE QUESTION MARK ORNAMENT", @@ -54179,20 +66591,20 @@ "softbank": "E336", "google": "FEB0A", "image": "2754.png", - "sheet_x": 51, - "sheet_y": 46, + "sheet_x": 59, + "sheet_y": 35, "short_name": "grey_question", "short_names": ["grey_question"], "text": null, "texts": null, "category": "Symbols", - "sort_order": 125, - "added_in": "6.0", + "subcategory": "punctuation", + "sort_order": 1494, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { "name": "WHITE EXCLAMATION MARK ORNAMENT", @@ -54203,20 +66615,20 @@ "softbank": "E337", "google": "FEB0B", "image": "2755.png", - "sheet_x": 51, - "sheet_y": 47, + "sheet_x": 59, + "sheet_y": 36, "short_name": "grey_exclamation", "short_names": ["grey_exclamation"], "text": null, "texts": null, "category": "Symbols", - "sort_order": 126, - "added_in": "6.0", + "subcategory": "punctuation", + "sort_order": 1495, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { "name": "HEAVY EXCLAMATION MARK SYMBOL", @@ -54227,23 +66639,23 @@ "softbank": "E021", "google": "FEB04", "image": "2757.png", - "sheet_x": 51, - "sheet_y": 48, + "sheet_x": 59, + "sheet_y": 37, "short_name": "exclamation", "short_names": ["exclamation", "heavy_exclamation_mark"], "text": null, "texts": null, "category": "Symbols", - "sort_order": 127, - "added_in": "5.2", + "subcategory": "punctuation", + "sort_order": 1496, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { - "name": null, + "name": "HEART EXCLAMATION", "unified": "2763-FE0F", "non_qualified": "2763", "docomo": null, @@ -54251,20 +66663,68 @@ "softbank": null, "google": null, "image": "2763-fe0f.png", - "sheet_x": 51, - "sheet_y": 49, + "sheet_x": 59, + "sheet_y": 38, "short_name": "heavy_heart_exclamation_mark_ornament", "short_names": ["heavy_heart_exclamation_mark_ornament"], "text": null, "texts": null, - "category": "Smileys & People", - "sort_order": 419, - "added_in": "1.1", + "category": "Smileys & Emotion", + "subcategory": "heart", + "sort_order": 137, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": false + "has_img_facebook": true + }, + { + "name": "HEART ON FIRE", + "unified": "2764-FE0F-200D-1F525", + "non_qualified": "2764-200D-1F525", + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "2764-fe0f-200d-1f525.png", + "sheet_x": 59, + "sheet_y": 39, + "short_name": "heart_on_fire", + "short_names": ["heart_on_fire"], + "text": null, + "texts": null, + "category": "Smileys & Emotion", + "subcategory": "heart", + "sort_order": 139, + "added_in": "13.1", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true + }, + { + "name": "MENDING HEART", + "unified": "2764-FE0F-200D-1FA79", + "non_qualified": "2764-200D-1FA79", + "docomo": null, + "au": null, + "softbank": null, + "google": null, + "image": "2764-fe0f-200d-1fa79.png", + "sheet_x": 59, + "sheet_y": 40, + "short_name": "mending_heart", + "short_names": ["mending_heart"], + "text": null, + "texts": null, + "category": "Smileys & Emotion", + "subcategory": "heart", + "sort_order": 140, + "added_in": "13.1", + "has_img_apple": true, + "has_img_google": true, + "has_img_twitter": true, + "has_img_facebook": true }, { "name": "HEAVY BLACK HEART", @@ -54275,20 +66735,20 @@ "softbank": "E022", "google": "FEB0C", "image": "2764-fe0f.png", - "sheet_x": 51, - "sheet_y": 50, + "sheet_x": 59, + "sheet_y": 41, "short_name": "heart", "short_names": ["heart"], "text": "<3", "texts": ["<3"], - "category": "Smileys & People", - "sort_order": 404, - "added_in": "1.1", + "category": "Smileys & Emotion", + "subcategory": "heart", + "sort_order": 141, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { "name": "HEAVY PLUS SIGN", @@ -54299,20 +66759,20 @@ "softbank": null, "google": "FEB51", "image": "2795.png", - "sheet_x": 51, - "sheet_y": 51, + "sheet_x": 59, + "sheet_y": 42, "short_name": "heavy_plus_sign", "short_names": ["heavy_plus_sign"], "text": null, "texts": null, "category": "Symbols", - "sort_order": 113, - "added_in": "6.0", + "subcategory": "math", + "sort_order": 1486, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { "name": "HEAVY MINUS SIGN", @@ -54323,20 +66783,20 @@ "softbank": null, "google": "FEB52", "image": "2796.png", - "sheet_x": 51, - "sheet_y": 52, + "sheet_x": 59, + "sheet_y": 43, "short_name": "heavy_minus_sign", "short_names": ["heavy_minus_sign"], "text": null, "texts": null, "category": "Symbols", - "sort_order": 114, - "added_in": "6.0", + "subcategory": "math", + "sort_order": 1487, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { "name": "HEAVY DIVISION SIGN", @@ -54347,20 +66807,20 @@ "softbank": null, "google": "FEB54", "image": "2797.png", - "sheet_x": 52, - "sheet_y": 0, + "sheet_x": 59, + "sheet_y": 44, "short_name": "heavy_division_sign", "short_names": ["heavy_division_sign"], "text": null, "texts": null, "category": "Symbols", - "sort_order": 115, - "added_in": "6.0", + "subcategory": "math", + "sort_order": 1488, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { "name": "BLACK RIGHTWARDS ARROW", @@ -54371,20 +66831,20 @@ "softbank": "E234", "google": "FEAFA", "image": "27a1-fe0f.png", - "sheet_x": 52, - "sheet_y": 1, + "sheet_x": 59, + "sheet_y": 45, "short_name": "arrow_right", "short_names": ["arrow_right"], "text": null, "texts": null, "category": "Symbols", - "sort_order": 29, - "added_in": "1.1", + "subcategory": "arrow", + "sort_order": 1412, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { "name": "CURLY LOOP", @@ -54395,20 +66855,20 @@ "softbank": null, "google": "FEB08", "image": "27b0.png", - "sheet_x": 52, - "sheet_y": 2, + "sheet_x": 59, + "sheet_y": 46, "short_name": "curly_loop", "short_names": ["curly_loop"], "text": null, "texts": null, "category": "Symbols", - "sort_order": 116, - "added_in": "6.0", + "subcategory": "other-symbol", + "sort_order": 1512, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { "name": "DOUBLE CURLY LOOP", @@ -54419,20 +66879,20 @@ "softbank": "E211", "google": "FE82B", "image": "27bf.png", - "sheet_x": 52, - "sheet_y": 3, + "sheet_x": 59, + "sheet_y": 47, "short_name": "loop", "short_names": ["loop"], "text": null, "texts": null, "category": "Symbols", - "sort_order": 117, - "added_in": "6.0", + "subcategory": "other-symbol", + "sort_order": 1513, + "added_in": "1.0", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { "name": "ARROW POINTING RIGHTWARDS THEN CURVING UPWARDS", @@ -54443,20 +66903,20 @@ "softbank": null, "google": "FEAF4", "image": "2934-fe0f.png", - "sheet_x": 52, - "sheet_y": 4, + "sheet_x": 59, + "sheet_y": 48, "short_name": "arrow_heading_up", "short_names": ["arrow_heading_up"], "text": null, "texts": null, "category": "Symbols", - "sort_order": 39, - "added_in": "3.2", + "subcategory": "arrow", + "sort_order": 1422, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { "name": "ARROW POINTING RIGHTWARDS THEN CURVING DOWNWARDS", @@ -54467,20 +66927,20 @@ "softbank": null, "google": "FEAF5", "image": "2935-fe0f.png", - "sheet_x": 52, - "sheet_y": 5, + "sheet_x": 59, + "sheet_y": 49, "short_name": "arrow_heading_down", "short_names": ["arrow_heading_down"], "text": null, "texts": null, "category": "Symbols", - "sort_order": 40, - "added_in": "3.2", + "subcategory": "arrow", + "sort_order": 1423, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { "name": "LEFTWARDS BLACK ARROW", @@ -54491,20 +66951,20 @@ "softbank": "E235", "google": "FEAFB", "image": "2b05-fe0f.png", - "sheet_x": 52, - "sheet_y": 6, + "sheet_x": 59, + "sheet_y": 50, "short_name": "arrow_left", "short_names": ["arrow_left"], "text": null, "texts": null, "category": "Symbols", - "sort_order": 33, - "added_in": "4.0", + "subcategory": "arrow", + "sort_order": 1416, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { "name": "UPWARDS BLACK ARROW", @@ -54515,20 +66975,20 @@ "softbank": "E232", "google": "FEAF8", "image": "2b06-fe0f.png", - "sheet_x": 52, - "sheet_y": 7, + "sheet_x": 59, + "sheet_y": 51, "short_name": "arrow_up", "short_names": ["arrow_up"], "text": null, "texts": null, "category": "Symbols", - "sort_order": 27, - "added_in": "4.0", + "subcategory": "arrow", + "sort_order": 1410, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { "name": "DOWNWARDS BLACK ARROW", @@ -54539,20 +66999,20 @@ "softbank": "E233", "google": "FEAF9", "image": "2b07-fe0f.png", - "sheet_x": 52, - "sheet_y": 8, + "sheet_x": 59, + "sheet_y": 52, "short_name": "arrow_down", "short_names": ["arrow_down"], "text": null, "texts": null, "category": "Symbols", - "sort_order": 31, - "added_in": "4.0", + "subcategory": "arrow", + "sort_order": 1414, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { "name": "BLACK LARGE SQUARE", @@ -54563,20 +67023,20 @@ "softbank": null, "google": "FEB6C", "image": "2b1b.png", - "sheet_x": 52, - "sheet_y": 9, + "sheet_x": 59, + "sheet_y": 53, "short_name": "black_large_square", "short_names": ["black_large_square"], "text": null, "texts": null, "category": "Symbols", - "sort_order": 191, - "added_in": "5.1", + "subcategory": "geometric", + "sort_order": 1589, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { "name": "WHITE LARGE SQUARE", @@ -54587,20 +67047,20 @@ "softbank": null, "google": "FEB6B", "image": "2b1c.png", - "sheet_x": 52, - "sheet_y": 10, + "sheet_x": 59, + "sheet_y": 54, "short_name": "white_large_square", "short_names": ["white_large_square"], "text": null, "texts": null, "category": "Symbols", - "sort_order": 192, - "added_in": "5.1", + "subcategory": "geometric", + "sort_order": 1590, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { "name": "WHITE MEDIUM STAR", @@ -54611,20 +67071,20 @@ "softbank": "E32F", "google": "FEB68", "image": "2b50.png", - "sheet_x": 52, - "sheet_y": 11, + "sheet_x": 59, + "sheet_y": 55, "short_name": "star", "short_names": ["star"], "text": null, "texts": null, "category": "Travel & Places", - "sort_order": 174, - "added_in": "5.1", + "subcategory": "sky & weather", + "sort_order": 1008, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { "name": "HEAVY LARGE CIRCLE", @@ -54635,20 +67095,20 @@ "softbank": "E332", "google": "FEB44", "image": "2b55.png", - "sheet_x": 52, - "sheet_y": 12, + "sheet_x": 59, + "sheet_y": 56, "short_name": "o", "short_names": ["o"], "text": null, "texts": null, "category": "Symbols", - "sort_order": 106, - "added_in": "5.2", + "subcategory": "other-symbol", + "sort_order": 1506, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { "name": "WAVY DASH", @@ -54659,20 +67119,20 @@ "softbank": null, "google": "FEB07", "image": "3030-fe0f.png", - "sheet_x": 52, - "sheet_y": 13, + "sheet_x": 59, + "sheet_y": 57, "short_name": "wavy_dash", "short_names": ["wavy_dash"], "text": null, "texts": null, "category": "Symbols", - "sort_order": 128, - "added_in": "1.1", + "subcategory": "punctuation", + "sort_order": 1497, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { "name": "PART ALTERNATION MARK", @@ -54683,20 +67143,20 @@ "softbank": "E12C", "google": "FE81B", "image": "303d-fe0f.png", - "sheet_x": 52, - "sheet_y": 14, + "sheet_x": 59, + "sheet_y": 58, "short_name": "part_alternation_mark", "short_names": ["part_alternation_mark"], "text": null, "texts": null, "category": "Symbols", - "sort_order": 118, - "added_in": "3.2", + "subcategory": "other-symbol", + "sort_order": 1514, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { "name": "CIRCLED IDEOGRAPH CONGRATULATION", @@ -54707,20 +67167,20 @@ "softbank": "E30D", "google": "FEB43", "image": "3297-fe0f.png", - "sheet_x": 52, - "sheet_y": 15, + "sheet_x": 59, + "sheet_y": 59, "short_name": "congratulations", "short_names": ["congratulations"], "text": null, "texts": null, "category": "Symbols", - "sort_order": 181, - "added_in": "1.1", + "subcategory": "alphanum", + "sort_order": 1569, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true }, { "name": "CIRCLED IDEOGRAPH SECRET", @@ -54731,19 +67191,19 @@ "softbank": "E315", "google": "FEB2B", "image": "3299-fe0f.png", - "sheet_x": 52, - "sheet_y": 16, + "sheet_x": 59, + "sheet_y": 60, "short_name": "secret", "short_names": ["secret"], "text": null, "texts": null, "category": "Symbols", - "sort_order": 182, - "added_in": "1.1", + "subcategory": "alphanum", + "sort_order": 1570, + "added_in": "0.6", "has_img_apple": true, "has_img_google": true, "has_img_twitter": true, - "has_img_facebook": true, - "has_img_messenger": true + "has_img_facebook": true } ] diff --git a/src/emoji-data/index.js b/src/emoji-data/index.js index d57c0ac..a9b8fe5 100644 --- a/src/emoji-data/index.js +++ b/src/emoji-data/index.js @@ -1,108 +1,117 @@ -import _ from 'lodash'; -import emoji from './emoji-data.json'; -import emojiSynonyms from './emojiSynonyms.json'; -import userInputEmojiSynonyms from './userInputtedSynonyms.json'; -import duplicates from './duplicates.json'; +import _ from "lodash"; +import emoji from "./emoji-data.json"; +import emojiSynonyms from "./emojiSynonyms.json"; +import userInputEmojiSynonyms from "./userInputtedSynonyms.json"; +import duplicates from "./duplicates.json"; -const filteredEmoji = _.filter(emoji, e => !_.includes(duplicates, e.unified)); +const filteredEmoji = _.filter( + emoji, + (e) => !_.includes(duplicates, e.unified) +); const categoryTitleToKey = { - 'Frequently Used': 'fue', - 'Smileys & People': 'people', - 'Animals & Nature': 'animals_and_nature', - 'Food & Drink': 'food_and_drink', - Activities: 'activity', - 'Travel & Places': 'travel_and_places', - Objects: 'objects', - Symbols: 'symbols', - Flags: 'flags' + "Frequently Used": "fue", + "People & Body": "people", + "Smileys & People": "people", + "Smileys & Emotion": "people", + "Animals & Nature": "animals_and_nature", + "Food & Drink": "food_and_drink", + Activities: "activity", + "Travel & Places": "travel_and_places", + Objects: "objects", + Symbols: "symbols", + Flags: "flags", }; let obsoletes = _(filteredEmoji) - .filter('obsoletes') - .map(v => v.obsoletes) - .value(); + .filter("obsoletes") + .map((v) => v.obsoletes) + .value(); // Adding in extra duplicates not marked in datasource -obsoletes.push.apply(obsoletes, ['1F93D', '1F93E', '1F939', '1F938', '1F939']); +obsoletes.push.apply(obsoletes, ["1F93D", "1F93E", "1F939", "1F938", "1F939"]); let emojiLib = _(filteredEmoji) - .filter(e => !obsoletes.includes(e.unified)) - .sortBy('sort_order') - .mapKeys(({ short_name }) => short_name) - .mapValues((v, k) => ({ - char: String.fromCodePoint.apply( - null, - v.unified.split('-').map(v => `0x${v}`) - ), - key: v.short_name, - keywords: [v.short_name, v.name ? v.name : ''], - category: categoryTitleToKey[v.category], - lib: v - })) - .value(); + .filter((e) => !obsoletes.includes(e.unified)) + .sortBy("sort_order") + .mapKeys(({ short_name }) => short_name) + .mapValues((v, k) => ({ + char: String.fromCodePoint.apply( + null, + v.unified.split("-").map((v) => `0x${v}`) + ), + key: v.short_name, + keywords: [v.short_name, v.name ? v.name : ""], + category: categoryTitleToKey[v.category], + lib: v, + })) + .value(); const category = [ - { - key: 'fue', - title: 'Frequently Used' - }, - { - key: 'people', - title: 'Smileys & People' - }, - { - key: 'animals_and_nature', - title: 'Animals & Nature' - }, - { - key: 'food_and_drink', - title: 'Food & Drink' - }, - { - key: 'activity', - title: 'Activities' - }, - { - key: 'travel_and_places', - title: 'Travel & Places' - }, - { - key: 'objects', - title: 'Objects' - }, - { - key: 'symbols', - title: 'Symbols' - }, - { - key: 'flags', - title: 'Flags' - } + { + key: "fue", + title: "Frequently Used", + }, + { + key: "people", + title: "Smileys & People", + }, + { + key: "animals_and_nature", + title: "Animals & Nature", + }, + { + key: "food_and_drink", + title: "Food & Drink", + }, + { + key: "activity", + title: "Activities", + }, + { + key: "travel_and_places", + title: "Travel & Places", + }, + { + key: "objects", + title: "Objects", + }, + { + key: "symbols", + title: "Symbols", + }, + { + key: "flags", + title: "Flags", + }, ]; const categoryIndexMap = _(category) - .map((v, idx) => ({ ...v, idx })) - .keyBy('key') - .value(); + .map((v, idx) => ({ ...v, idx })) + .keyBy("key") + .value(); _.each(emojiSynonyms, (v, k) => { - emojiSynonyms[k] = _.uniq( - emojiSynonyms[k].concat(userInputEmojiSynonyms[k]) - ); + emojiSynonyms[k].keywords = _.uniq( + v.keywords.concat(userInputEmojiSynonyms[k]) + ).filter((keyword) => !!keyword); }); const emojiMap = _(emojiLib) - .mapValues( - (v, k) => - k + - ' ' + - v.keywords.map(v => v.replace(/_/g, ' ')).join(' ') + - (emojiSynonyms[k] || []).map(v => v.replace(/_/g, ' ')).join(' ') - ) - .invert() - .value(); + .mapValues( + (v, k) => + k + + " " + + v.keywords.map((v) => v.replace(/_/g, " ")).join(" ") + + (emojiSynonyms.find((syn) => syn.emoji_key === k)?.keywords || []) + .map((v) => v.replace(/_/g, " ")) + .join(" ") + ) + .value(); -const emojiArray = _.keys(emojiMap); +const emojiArray = _.keys(emojiMap).map((k) => ({ + keywords: emojiMap[k].split(" "), + emoji_key: k, +})); -export { category, categoryIndexMap, emojiLib, emojiMap, emojiArray }; +export { category, categoryIndexMap, emojiLib, emojiArray }; diff --git a/yarn.lock b/yarn.lock index 7ddbcb2..caff585 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2,6 +2,1007 @@ # yarn lockfile v1 +"@ampproject/remapping@^2.2.0": + version "2.2.1" + resolved "https://registry.yarnpkg.com/@ampproject/remapping/-/remapping-2.2.1.tgz#99e8e11851128b8702cd57c33684f1d0f260b630" + integrity sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg== + dependencies: + "@jridgewell/gen-mapping" "^0.3.0" + "@jridgewell/trace-mapping" "^0.3.9" + +"@babel/code-frame@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.22.5.tgz#234d98e1551960604f1246e6475891a570ad5658" + integrity sha512-Xmwn266vad+6DAqEB2A6V/CcZVp62BbwVmcOJc2RPuwih1kw02TjQvWVWlcKGbBPd+8/0V5DEkOcizRGYsspYQ== + dependencies: + "@babel/highlight" "^7.22.5" + +"@babel/compat-data@^7.22.5", "@babel/compat-data@^7.22.6", "@babel/compat-data@^7.22.9": + version "7.22.9" + resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.22.9.tgz#71cdb00a1ce3a329ce4cbec3a44f9fef35669730" + integrity sha512-5UamI7xkUcJ3i9qVDS+KFDEK8/7oJ55/sJMB1Ge7IEapr7KfdfV/HErR+koZwOfd+SgtFKOKRhRakdg++DcJpQ== + +"@babel/core@^7.22.9": + version "7.22.9" + resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.22.9.tgz#bd96492c68822198f33e8a256061da3cf391f58f" + integrity sha512-G2EgeufBcYw27U4hhoIwFcgc1XU7TlXJ3mv04oOv1WCuo900U/anZSPzEqNjwdjgffkk2Gs0AN0dW1CKVLcG7w== + dependencies: + "@ampproject/remapping" "^2.2.0" + "@babel/code-frame" "^7.22.5" + "@babel/generator" "^7.22.9" + "@babel/helper-compilation-targets" "^7.22.9" + "@babel/helper-module-transforms" "^7.22.9" + "@babel/helpers" "^7.22.6" + "@babel/parser" "^7.22.7" + "@babel/template" "^7.22.5" + "@babel/traverse" "^7.22.8" + "@babel/types" "^7.22.5" + convert-source-map "^1.7.0" + debug "^4.1.0" + gensync "^1.0.0-beta.2" + json5 "^2.2.2" + semver "^6.3.1" + +"@babel/generator@^7.22.7", "@babel/generator@^7.22.9": + version "7.22.9" + resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.22.9.tgz#572ecfa7a31002fa1de2a9d91621fd895da8493d" + integrity sha512-KtLMbmicyuK2Ak/FTCJVbDnkN1SlT8/kceFTiuDiiRUUSMnHMidxSCdG4ndkTOHHpoomWe/4xkvHkEOncwjYIw== + dependencies: + "@babel/types" "^7.22.5" + "@jridgewell/gen-mapping" "^0.3.2" + "@jridgewell/trace-mapping" "^0.3.17" + jsesc "^2.5.1" + +"@babel/helper-annotate-as-pure@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz#e7f06737b197d580a01edf75d97e2c8be99d3882" + integrity sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg== + dependencies: + "@babel/types" "^7.22.5" + +"@babel/helper-builder-binary-assignment-operator-visitor@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.22.5.tgz#a3f4758efdd0190d8927fcffd261755937c71878" + integrity sha512-m1EP3lVOPptR+2DwD125gziZNcmoNSHGmJROKoy87loWUQyJaVXDgpmruWqDARZSmtYQ+Dl25okU8+qhVzuykw== + dependencies: + "@babel/types" "^7.22.5" + +"@babel/helper-compilation-targets@^7.22.5", "@babel/helper-compilation-targets@^7.22.6", "@babel/helper-compilation-targets@^7.22.9": + version "7.22.9" + resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.9.tgz#f9d0a7aaaa7cd32a3f31c9316a69f5a9bcacb892" + integrity sha512-7qYrNM6HjpnPHJbopxmb8hSPoZ0gsX8IvUS32JGVoy+pU9e5N0nLr1VjJoR6kA4d9dmGLxNYOjeB8sUDal2WMw== + dependencies: + "@babel/compat-data" "^7.22.9" + "@babel/helper-validator-option" "^7.22.5" + browserslist "^4.21.9" + lru-cache "^5.1.1" + semver "^6.3.1" + +"@babel/helper-create-class-features-plugin@^7.22.5": + version "7.22.9" + resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.22.9.tgz#c36ea240bb3348f942f08b0fbe28d6d979fab236" + integrity sha512-Pwyi89uO4YrGKxL/eNJ8lfEH55DnRloGPOseaA8NFNL6jAUnn+KccaISiFazCj5IolPPDjGSdzQzXVzODVRqUQ== + dependencies: + "@babel/helper-annotate-as-pure" "^7.22.5" + "@babel/helper-environment-visitor" "^7.22.5" + "@babel/helper-function-name" "^7.22.5" + "@babel/helper-member-expression-to-functions" "^7.22.5" + "@babel/helper-optimise-call-expression" "^7.22.5" + "@babel/helper-replace-supers" "^7.22.9" + "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5" + "@babel/helper-split-export-declaration" "^7.22.6" + semver "^6.3.1" + +"@babel/helper-create-regexp-features-plugin@^7.18.6", "@babel/helper-create-regexp-features-plugin@^7.22.5": + version "7.22.9" + resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.22.9.tgz#9d8e61a8d9366fe66198f57c40565663de0825f6" + integrity sha512-+svjVa/tFwsNSG4NEy1h85+HQ5imbT92Q5/bgtS7P0GTQlP8WuFdqsiABmQouhiFGyV66oGxZFpeYHza1rNsKw== + dependencies: + "@babel/helper-annotate-as-pure" "^7.22.5" + regexpu-core "^5.3.1" + semver "^6.3.1" + +"@babel/helper-define-polyfill-provider@^0.4.2": + version "0.4.2" + resolved "https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.4.2.tgz#82c825cadeeeee7aad237618ebbe8fa1710015d7" + integrity sha512-k0qnnOqHn5dK9pZpfD5XXZ9SojAITdCKRn2Lp6rnDGzIbaP0rHyMPk/4wsSxVBVz4RfN0q6VpXWP2pDGIoQ7hw== + dependencies: + "@babel/helper-compilation-targets" "^7.22.6" + "@babel/helper-plugin-utils" "^7.22.5" + debug "^4.1.1" + lodash.debounce "^4.0.8" + resolve "^1.14.2" + +"@babel/helper-environment-visitor@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.5.tgz#f06dd41b7c1f44e1f8da6c4055b41ab3a09a7e98" + integrity sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q== + +"@babel/helper-function-name@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.22.5.tgz#ede300828905bb15e582c037162f99d5183af1be" + integrity sha512-wtHSq6jMRE3uF2otvfuD3DIvVhOsSNshQl0Qrd7qC9oQJzHvOL4qQXlQn2916+CXGywIjpGuIkoyZRRxHPiNQQ== + dependencies: + "@babel/template" "^7.22.5" + "@babel/types" "^7.22.5" + +"@babel/helper-hoist-variables@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz#c01a007dac05c085914e8fb652b339db50d823bb" + integrity sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw== + dependencies: + "@babel/types" "^7.22.5" + +"@babel/helper-member-expression-to-functions@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.22.5.tgz#0a7c56117cad3372fbf8d2fb4bf8f8d64a1e76b2" + integrity sha512-aBiH1NKMG0H2cGZqspNvsaBe6wNGjbJjuLy29aU+eDZjSbbN53BaxlpB02xm9v34pLTZ1nIQPFYn2qMZoa5BQQ== + dependencies: + "@babel/types" "^7.22.5" + +"@babel/helper-module-imports@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.22.5.tgz#1a8f4c9f4027d23f520bd76b364d44434a72660c" + integrity sha512-8Dl6+HD/cKifutF5qGd/8ZJi84QeAKh+CEe1sBzz8UayBBGg1dAIJrdHOcOM5b2MpzWL2yuotJTtGjETq0qjXg== + dependencies: + "@babel/types" "^7.22.5" + +"@babel/helper-module-transforms@^7.22.5", "@babel/helper-module-transforms@^7.22.9": + version "7.22.9" + resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.22.9.tgz#92dfcb1fbbb2bc62529024f72d942a8c97142129" + integrity sha512-t+WA2Xn5K+rTeGtC8jCsdAH52bjggG5TKRuRrAGNM/mjIbO4GxvlLMFOEz9wXY5I2XQ60PMFsAG2WIcG82dQMQ== + dependencies: + "@babel/helper-environment-visitor" "^7.22.5" + "@babel/helper-module-imports" "^7.22.5" + "@babel/helper-simple-access" "^7.22.5" + "@babel/helper-split-export-declaration" "^7.22.6" + "@babel/helper-validator-identifier" "^7.22.5" + +"@babel/helper-optimise-call-expression@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.22.5.tgz#f21531a9ccbff644fdd156b4077c16ff0c3f609e" + integrity sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw== + dependencies: + "@babel/types" "^7.22.5" + +"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.18.6", "@babel/helper-plugin-utils@^7.22.5", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz#dd7ee3735e8a313b9f7b05a773d892e88e6d7295" + integrity sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg== + +"@babel/helper-remap-async-to-generator@^7.22.5": + version "7.22.9" + resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.22.9.tgz#53a25b7484e722d7efb9c350c75c032d4628de82" + integrity sha512-8WWC4oR4Px+tr+Fp0X3RHDVfINGpF3ad1HIbrc8A77epiR6eMMc6jsgozkzT2uDiOOdoS9cLIQ+XD2XvI2WSmQ== + dependencies: + "@babel/helper-annotate-as-pure" "^7.22.5" + "@babel/helper-environment-visitor" "^7.22.5" + "@babel/helper-wrap-function" "^7.22.9" + +"@babel/helper-replace-supers@^7.22.5", "@babel/helper-replace-supers@^7.22.9": + version "7.22.9" + resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.22.9.tgz#cbdc27d6d8d18cd22c81ae4293765a5d9afd0779" + integrity sha512-LJIKvvpgPOPUThdYqcX6IXRuIcTkcAub0IaDRGCZH0p5GPUp7PhRU9QVgFcDDd51BaPkk77ZjqFwh6DZTAEmGg== + dependencies: + "@babel/helper-environment-visitor" "^7.22.5" + "@babel/helper-member-expression-to-functions" "^7.22.5" + "@babel/helper-optimise-call-expression" "^7.22.5" + +"@babel/helper-simple-access@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz#4938357dc7d782b80ed6dbb03a0fba3d22b1d5de" + integrity sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w== + dependencies: + "@babel/types" "^7.22.5" + +"@babel/helper-skip-transparent-expression-wrappers@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.22.5.tgz#007f15240b5751c537c40e77abb4e89eeaaa8847" + integrity sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q== + dependencies: + "@babel/types" "^7.22.5" + +"@babel/helper-split-export-declaration@^7.22.6": + version "7.22.6" + resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz#322c61b7310c0997fe4c323955667f18fcefb91c" + integrity sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g== + dependencies: + "@babel/types" "^7.22.5" + +"@babel/helper-string-parser@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz#533f36457a25814cf1df6488523ad547d784a99f" + integrity sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw== + +"@babel/helper-validator-identifier@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.5.tgz#9544ef6a33999343c8740fa51350f30eeaaaf193" + integrity sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ== + +"@babel/helper-validator-option@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.22.5.tgz#de52000a15a177413c8234fa3a8af4ee8102d0ac" + integrity sha512-R3oB6xlIVKUnxNUxbmgq7pKjxpru24zlimpE8WK47fACIlM0II/Hm1RS8IaOI7NgCr6LNS+jl5l75m20npAziw== + +"@babel/helper-wrap-function@^7.22.9": + version "7.22.9" + resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.22.9.tgz#189937248c45b0182c1dcf32f3444ca153944cb9" + integrity sha512-sZ+QzfauuUEfxSEjKFmi3qDSHgLsTPK/pEpoD/qonZKOtTPTLbf59oabPQ4rKekt9lFcj/hTZaOhWwFYrgjk+Q== + dependencies: + "@babel/helper-function-name" "^7.22.5" + "@babel/template" "^7.22.5" + "@babel/types" "^7.22.5" + +"@babel/helpers@^7.22.6": + version "7.22.6" + resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.22.6.tgz#8e61d3395a4f0c5a8060f309fb008200969b5ecd" + integrity sha512-YjDs6y/fVOYFV8hAf1rxd1QvR9wJe1pDBZ2AREKq/SDayfPzgk0PBnVuTCE5X1acEpMMNOVUqoe+OwiZGJ+OaA== + dependencies: + "@babel/template" "^7.22.5" + "@babel/traverse" "^7.22.6" + "@babel/types" "^7.22.5" + +"@babel/highlight@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.22.5.tgz#aa6c05c5407a67ebce408162b7ede789b4d22031" + integrity sha512-BSKlD1hgnedS5XRnGOljZawtag7H1yPfQp0tdNJCHoH6AZ+Pcm9VvkrK59/Yy593Ypg0zMxH2BxD1VPYUQ7UIw== + dependencies: + "@babel/helper-validator-identifier" "^7.22.5" + chalk "^2.0.0" + js-tokens "^4.0.0" + +"@babel/node@^7.22.6": + version "7.22.6" + resolved "https://registry.yarnpkg.com/@babel/node/-/node-7.22.6.tgz#a47b4f150f06bad1808823c4519690ded6c93911" + integrity sha512-Lt6v+RUQOTsEOXLv+KfjogLFkFfsLPPSoXZqmbngfVatkWjQPnFGHO0xjFRcN6XEvm3vsnZn+AWQiRpgZFsdIA== + dependencies: + "@babel/register" "^7.22.5" + commander "^4.0.1" + core-js "^3.30.2" + node-environment-flags "^1.0.5" + regenerator-runtime "^0.13.11" + v8flags "^3.1.1" + +"@babel/parser@^7.22.5", "@babel/parser@^7.22.7": + version "7.22.7" + resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.22.7.tgz#df8cf085ce92ddbdbf668a7f186ce848c9036cae" + integrity sha512-7NF8pOkHP5o2vpmGgNGcfAeCvOYhGLyA3Z4eBQkT1RJlWu47n63bCs93QfJ2hIAFCil7L5P2IWhs1oToVgrL0Q== + +"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.22.5.tgz#87245a21cd69a73b0b81bcda98d443d6df08f05e" + integrity sha512-NP1M5Rf+u2Gw9qfSO4ihjcTGW5zXTi36ITLd4/EoAcEhIZ0yjMqmftDNl3QC19CX7olhrjpyU454g/2W7X0jvQ== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.22.5.tgz#fef09f9499b1f1c930da8a0c419db42167d792ca" + integrity sha512-31Bb65aZaUwqCbWMnZPduIZxCBngHFlzyN6Dq6KAJjtx+lx6ohKHubc61OomYi7XwVD4Ol0XCVz4h+pYFR048g== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5" + "@babel/plugin-transform-optional-chaining" "^7.22.5" + +"@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2": + version "7.21.0-placeholder-for-preset-env.2" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz#7844f9289546efa9febac2de4cfe358a050bd703" + integrity sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w== + +"@babel/plugin-proposal-unicode-property-regex@^7.4.4": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.18.6.tgz#af613d2cd5e643643b65cded64207b15c85cb78e" + integrity sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w== + dependencies: + "@babel/helper-create-regexp-features-plugin" "^7.18.6" + "@babel/helper-plugin-utils" "^7.18.6" + +"@babel/plugin-syntax-async-generators@^7.8.4": + version "7.8.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz#a983fb1aeb2ec3f6ed042a210f640e90e786fe0d" + integrity sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-class-properties@^7.12.13": + version "7.12.13" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz#b5c987274c4a3a82b89714796931a6b53544ae10" + integrity sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA== + dependencies: + "@babel/helper-plugin-utils" "^7.12.13" + +"@babel/plugin-syntax-class-static-block@^7.14.5": + version "7.14.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz#195df89b146b4b78b3bf897fd7a257c84659d406" + integrity sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw== + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-syntax-dynamic-import@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz#62bf98b2da3cd21d626154fc96ee5b3cb68eacb3" + integrity sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-export-namespace-from@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz#028964a9ba80dbc094c915c487ad7c4e7a66465a" + integrity sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q== + dependencies: + "@babel/helper-plugin-utils" "^7.8.3" + +"@babel/plugin-syntax-import-assertions@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.22.5.tgz#07d252e2aa0bc6125567f742cd58619cb14dce98" + integrity sha512-rdV97N7KqsRzeNGoWUOK6yUsWarLjE5Su/Snk9IYPU9CwkWHs4t+rTGOvffTR8XGkJMTAdLfO0xVnXm8wugIJg== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-syntax-import-attributes@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.22.5.tgz#ab840248d834410b829f569f5262b9e517555ecb" + integrity sha512-KwvoWDeNKPETmozyFE0P2rOLqh39EoQHNjqizrI5B8Vt0ZNS7M56s7dAiAqbYfiAYOuIzIh96z3iR2ktgu3tEg== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-syntax-import-meta@^7.10.4": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz#ee601348c370fa334d2207be158777496521fd51" + integrity sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g== + dependencies: + "@babel/helper-plugin-utils" "^7.10.4" + +"@babel/plugin-syntax-json-strings@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz#01ca21b668cd8218c9e640cb6dd88c5412b2c96a" + integrity sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-logical-assignment-operators@^7.10.4": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz#ca91ef46303530448b906652bac2e9fe9941f699" + integrity sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig== + dependencies: + "@babel/helper-plugin-utils" "^7.10.4" + +"@babel/plugin-syntax-nullish-coalescing-operator@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz#167ed70368886081f74b5c36c65a88c03b66d1a9" + integrity sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-numeric-separator@^7.10.4": + version "7.10.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz#b9b070b3e33570cd9fd07ba7fa91c0dd37b9af97" + integrity sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug== + dependencies: + "@babel/helper-plugin-utils" "^7.10.4" + +"@babel/plugin-syntax-object-rest-spread@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz#60e225edcbd98a640332a2e72dd3e66f1af55871" + integrity sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-optional-catch-binding@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz#6111a265bcfb020eb9efd0fdfd7d26402b9ed6c1" + integrity sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-optional-chaining@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz#4f69c2ab95167e0180cd5336613f8c5788f7d48a" + integrity sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg== + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-private-property-in-object@^7.14.5": + version "7.14.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz#0dc6671ec0ea22b6e94a1114f857970cd39de1ad" + integrity sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg== + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-syntax-top-level-await@^7.14.5": + version "7.14.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz#c1cfdadc35a646240001f06138247b741c34d94c" + integrity sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw== + dependencies: + "@babel/helper-plugin-utils" "^7.14.5" + +"@babel/plugin-syntax-unicode-sets-regex@^7.18.6": + version "7.18.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz#d49a3b3e6b52e5be6740022317580234a6a47357" + integrity sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg== + dependencies: + "@babel/helper-create-regexp-features-plugin" "^7.18.6" + "@babel/helper-plugin-utils" "^7.18.6" + +"@babel/plugin-transform-arrow-functions@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.22.5.tgz#e5ba566d0c58a5b2ba2a8b795450641950b71958" + integrity sha512-26lTNXoVRdAnsaDXPpvCNUq+OVWEVC6bx7Vvz9rC53F2bagUWW4u4ii2+h8Fejfh7RYqPxn+libeFBBck9muEw== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-async-generator-functions@^7.22.7": + version "7.22.7" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.22.7.tgz#053e76c0a903b72b573cb1ab7d6882174d460a1b" + integrity sha512-7HmE7pk/Fmke45TODvxvkxRMV9RazV+ZZzhOL9AG8G29TLrr3jkjwF7uJfxZ30EoXpO+LJkq4oA8NjO2DTnEDg== + dependencies: + "@babel/helper-environment-visitor" "^7.22.5" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-remap-async-to-generator" "^7.22.5" + "@babel/plugin-syntax-async-generators" "^7.8.4" + +"@babel/plugin-transform-async-to-generator@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.22.5.tgz#c7a85f44e46f8952f6d27fe57c2ed3cc084c3775" + integrity sha512-b1A8D8ZzE/VhNDoV1MSJTnpKkCG5bJo+19R4o4oy03zM7ws8yEMK755j61Dc3EyvdysbqH5BOOTquJ7ZX9C6vQ== + dependencies: + "@babel/helper-module-imports" "^7.22.5" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-remap-async-to-generator" "^7.22.5" + +"@babel/plugin-transform-block-scoped-functions@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.22.5.tgz#27978075bfaeb9fa586d3cb63a3d30c1de580024" + integrity sha512-tdXZ2UdknEKQWKJP1KMNmuF5Lx3MymtMN/pvA+p/VEkhK8jVcQ1fzSy8KM9qRYhAf2/lV33hoMPKI/xaI9sADA== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-block-scoping@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.22.5.tgz#8bfc793b3a4b2742c0983fadc1480d843ecea31b" + integrity sha512-EcACl1i5fSQ6bt+YGuU/XGCeZKStLmyVGytWkpyhCLeQVA0eu6Wtiw92V+I1T/hnezUv7j74dA/Ro69gWcU+hg== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-class-properties@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.22.5.tgz#97a56e31ad8c9dc06a0b3710ce7803d5a48cca77" + integrity sha512-nDkQ0NfkOhPTq8YCLiWNxp1+f9fCobEjCb0n8WdbNUBc4IB5V7P1QnX9IjpSoquKrXF5SKojHleVNs2vGeHCHQ== + dependencies: + "@babel/helper-create-class-features-plugin" "^7.22.5" + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-class-static-block@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.22.5.tgz#3e40c46f048403472d6f4183116d5e46b1bff5ba" + integrity sha512-SPToJ5eYZLxlnp1UzdARpOGeC2GbHvr9d/UV0EukuVx8atktg194oe+C5BqQ8jRTkgLRVOPYeXRSBg1IlMoVRA== + dependencies: + "@babel/helper-create-class-features-plugin" "^7.22.5" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/plugin-syntax-class-static-block" "^7.14.5" + +"@babel/plugin-transform-classes@^7.22.6": + version "7.22.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.22.6.tgz#e04d7d804ed5b8501311293d1a0e6d43e94c3363" + integrity sha512-58EgM6nuPNG6Py4Z3zSuu0xWu2VfodiMi72Jt5Kj2FECmaYk1RrTXA45z6KBFsu9tRgwQDwIiY4FXTt+YsSFAQ== + dependencies: + "@babel/helper-annotate-as-pure" "^7.22.5" + "@babel/helper-compilation-targets" "^7.22.6" + "@babel/helper-environment-visitor" "^7.22.5" + "@babel/helper-function-name" "^7.22.5" + "@babel/helper-optimise-call-expression" "^7.22.5" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-replace-supers" "^7.22.5" + "@babel/helper-split-export-declaration" "^7.22.6" + globals "^11.1.0" + +"@babel/plugin-transform-computed-properties@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.22.5.tgz#cd1e994bf9f316bd1c2dafcd02063ec261bb3869" + integrity sha512-4GHWBgRf0krxPX+AaPtgBAlTgTeZmqDynokHOX7aqqAB4tHs3U2Y02zH6ETFdLZGcg9UQSD1WCmkVrE9ErHeOg== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/template" "^7.22.5" + +"@babel/plugin-transform-destructuring@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.22.5.tgz#d3aca7438f6c26c78cdd0b0ba920a336001b27cc" + integrity sha512-GfqcFuGW8vnEqTUBM7UtPd5A4q797LTvvwKxXTgRsFjoqaJiEg9deBG6kWeQYkVEL569NpnmpC0Pkr/8BLKGnQ== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-dotall-regex@^7.22.5", "@babel/plugin-transform-dotall-regex@^7.4.4": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.22.5.tgz#dbb4f0e45766eb544e193fb00e65a1dd3b2a4165" + integrity sha512-5/Yk9QxCQCl+sOIB1WelKnVRxTJDSAIxtJLL2/pqL14ZVlbH0fUQUZa/T5/UnQtBNgghR7mfB8ERBKyKPCi7Vw== + dependencies: + "@babel/helper-create-regexp-features-plugin" "^7.22.5" + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-duplicate-keys@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.22.5.tgz#b6e6428d9416f5f0bba19c70d1e6e7e0b88ab285" + integrity sha512-dEnYD+9BBgld5VBXHnF/DbYGp3fqGMsyxKbtD1mDyIA7AkTSpKXFhCVuj/oQVOoALfBs77DudA0BE4d5mcpmqw== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-dynamic-import@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.22.5.tgz#d6908a8916a810468c4edff73b5b75bda6ad393e" + integrity sha512-0MC3ppTB1AMxd8fXjSrbPa7LT9hrImt+/fcj+Pg5YMD7UQyWp/02+JWpdnCymmsXwIx5Z+sYn1bwCn4ZJNvhqQ== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/plugin-syntax-dynamic-import" "^7.8.3" + +"@babel/plugin-transform-exponentiation-operator@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.22.5.tgz#402432ad544a1f9a480da865fda26be653e48f6a" + integrity sha512-vIpJFNM/FjZ4rh1myqIya9jXwrwwgFRHPjT3DkUA9ZLHuzox8jiXkOLvwm1H+PQIP3CqfC++WPKeuDi0Sjdj1g== + dependencies: + "@babel/helper-builder-binary-assignment-operator-visitor" "^7.22.5" + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-export-namespace-from@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.22.5.tgz#57c41cb1d0613d22f548fddd8b288eedb9973a5b" + integrity sha512-X4hhm7FRnPgd4nDA4b/5V280xCx6oL7Oob5+9qVS5C13Zq4bh1qq7LU0GgRU6b5dBWBvhGaXYVB4AcN6+ol6vg== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/plugin-syntax-export-namespace-from" "^7.8.3" + +"@babel/plugin-transform-for-of@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.22.5.tgz#ab1b8a200a8f990137aff9a084f8de4099ab173f" + integrity sha512-3kxQjX1dU9uudwSshyLeEipvrLjBCVthCgeTp6CzE/9JYrlAIaeekVxRpCWsDDfYTfRZRoCeZatCQvwo+wvK8A== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-function-name@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.22.5.tgz#935189af68b01898e0d6d99658db6b164205c143" + integrity sha512-UIzQNMS0p0HHiQm3oelztj+ECwFnj+ZRV4KnguvlsD2of1whUeM6o7wGNj6oLwcDoAXQ8gEqfgC24D+VdIcevg== + dependencies: + "@babel/helper-compilation-targets" "^7.22.5" + "@babel/helper-function-name" "^7.22.5" + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-json-strings@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.22.5.tgz#14b64352fdf7e1f737eed68de1a1468bd2a77ec0" + integrity sha512-DuCRB7fu8MyTLbEQd1ew3R85nx/88yMoqo2uPSjevMj3yoN7CDM8jkgrY0wmVxfJZyJ/B9fE1iq7EQppWQmR5A== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/plugin-syntax-json-strings" "^7.8.3" + +"@babel/plugin-transform-literals@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.22.5.tgz#e9341f4b5a167952576e23db8d435849b1dd7920" + integrity sha512-fTLj4D79M+mepcw3dgFBTIDYpbcB9Sm0bpm4ppXPaO+U+PKFFyV9MGRvS0gvGw62sd10kT5lRMKXAADb9pWy8g== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-logical-assignment-operators@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.22.5.tgz#66ae5f068fd5a9a5dc570df16f56c2a8462a9d6c" + integrity sha512-MQQOUW1KL8X0cDWfbwYP+TbVbZm16QmQXJQ+vndPtH/BoO0lOKpVoEDMI7+PskYxH+IiE0tS8xZye0qr1lGzSA== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" + +"@babel/plugin-transform-member-expression-literals@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.22.5.tgz#4fcc9050eded981a468347dd374539ed3e058def" + integrity sha512-RZEdkNtzzYCFl9SE9ATaUMTj2hqMb4StarOJLrZRbqqU4HSBE7UlBw9WBWQiDzrJZJdUWiMTVDI6Gv/8DPvfew== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-modules-amd@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.22.5.tgz#4e045f55dcf98afd00f85691a68fc0780704f526" + integrity sha512-R+PTfLTcYEmb1+kK7FNkhQ1gP4KgjpSO6HfH9+f8/yfp2Nt3ggBjiVpRwmwTlfqZLafYKJACy36yDXlEmI9HjQ== + dependencies: + "@babel/helper-module-transforms" "^7.22.5" + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-modules-commonjs@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.22.5.tgz#7d9875908d19b8c0536085af7b053fd5bd651bfa" + integrity sha512-B4pzOXj+ONRmuaQTg05b3y/4DuFz3WcCNAXPLb2Q0GT0TrGKGxNKV4jwsXts+StaM0LQczZbOpj8o1DLPDJIiA== + dependencies: + "@babel/helper-module-transforms" "^7.22.5" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-simple-access" "^7.22.5" + +"@babel/plugin-transform-modules-systemjs@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.22.5.tgz#18c31410b5e579a0092638f95c896c2a98a5d496" + integrity sha512-emtEpoaTMsOs6Tzz+nbmcePl6AKVtS1yC4YNAeMun9U8YCsgadPNxnOPQ8GhHFB2qdx+LZu9LgoC0Lthuu05DQ== + dependencies: + "@babel/helper-hoist-variables" "^7.22.5" + "@babel/helper-module-transforms" "^7.22.5" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-validator-identifier" "^7.22.5" + +"@babel/plugin-transform-modules-umd@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.22.5.tgz#4694ae40a87b1745e3775b6a7fe96400315d4f98" + integrity sha512-+S6kzefN/E1vkSsKx8kmQuqeQsvCKCd1fraCM7zXm4SFoggI099Tr4G8U81+5gtMdUeMQ4ipdQffbKLX0/7dBQ== + dependencies: + "@babel/helper-module-transforms" "^7.22.5" + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-named-capturing-groups-regex@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.22.5.tgz#67fe18ee8ce02d57c855185e27e3dc959b2e991f" + integrity sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ== + dependencies: + "@babel/helper-create-regexp-features-plugin" "^7.22.5" + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-new-target@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.22.5.tgz#1b248acea54ce44ea06dfd37247ba089fcf9758d" + integrity sha512-AsF7K0Fx/cNKVyk3a+DW0JLo+Ua598/NxMRvxDnkpCIGFh43+h/v2xyhRUYf6oD8gE4QtL83C7zZVghMjHd+iw== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-nullish-coalescing-operator@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.22.5.tgz#f8872c65776e0b552e0849d7596cddd416c3e381" + integrity sha512-6CF8g6z1dNYZ/VXok5uYkkBBICHZPiGEl7oDnAx2Mt1hlHVHOSIKWJaXHjQJA5VB43KZnXZDIexMchY4y2PGdA== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" + +"@babel/plugin-transform-numeric-separator@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.22.5.tgz#57226a2ed9e512b9b446517ab6fa2d17abb83f58" + integrity sha512-NbslED1/6M+sXiwwtcAB/nieypGw02Ejf4KtDeMkCEpP6gWFMX1wI9WKYua+4oBneCCEmulOkRpwywypVZzs/g== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/plugin-syntax-numeric-separator" "^7.10.4" + +"@babel/plugin-transform-object-rest-spread@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.22.5.tgz#9686dc3447df4753b0b2a2fae7e8bc33cdc1f2e1" + integrity sha512-Kk3lyDmEslH9DnvCDA1s1kkd3YWQITiBOHngOtDL9Pt6BZjzqb6hiOlb8VfjiiQJ2unmegBqZu0rx5RxJb5vmQ== + dependencies: + "@babel/compat-data" "^7.22.5" + "@babel/helper-compilation-targets" "^7.22.5" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/plugin-syntax-object-rest-spread" "^7.8.3" + "@babel/plugin-transform-parameters" "^7.22.5" + +"@babel/plugin-transform-object-super@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.22.5.tgz#794a8d2fcb5d0835af722173c1a9d704f44e218c" + integrity sha512-klXqyaT9trSjIUrcsYIfETAzmOEZL3cBYqOYLJxBHfMFFggmXOv+NYSX/Jbs9mzMVESw/WycLFPRx8ba/b2Ipw== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-replace-supers" "^7.22.5" + +"@babel/plugin-transform-optional-catch-binding@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.22.5.tgz#842080be3076703be0eaf32ead6ac8174edee333" + integrity sha512-pH8orJahy+hzZje5b8e2QIlBWQvGpelS76C63Z+jhZKsmzfNaPQ+LaW6dcJ9bxTpo1mtXbgHwy765Ro3jftmUg== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" + +"@babel/plugin-transform-optional-chaining@^7.22.5", "@babel/plugin-transform-optional-chaining@^7.22.6": + version "7.22.6" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.22.6.tgz#4bacfe37001fe1901117672875e931d439811564" + integrity sha512-Vd5HiWml0mDVtcLHIoEU5sw6HOUW/Zk0acLs/SAeuLzkGNOPc9DB4nkUajemhCmTIz3eiaKREZn2hQQqF79YTg== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5" + "@babel/plugin-syntax-optional-chaining" "^7.8.3" + +"@babel/plugin-transform-parameters@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.22.5.tgz#c3542dd3c39b42c8069936e48717a8d179d63a18" + integrity sha512-AVkFUBurORBREOmHRKo06FjHYgjrabpdqRSwq6+C7R5iTCZOsM4QbcB27St0a4U6fffyAOqh3s/qEfybAhfivg== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-private-methods@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.22.5.tgz#21c8af791f76674420a147ae62e9935d790f8722" + integrity sha512-PPjh4gyrQnGe97JTalgRGMuU4icsZFnWkzicB/fUtzlKUqvsWBKEpPPfr5a2JiyirZkHxnAqkQMO5Z5B2kK3fA== + dependencies: + "@babel/helper-create-class-features-plugin" "^7.22.5" + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-private-property-in-object@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.22.5.tgz#07a77f28cbb251546a43d175a1dda4cf3ef83e32" + integrity sha512-/9xnaTTJcVoBtSSmrVyhtSvO3kbqS2ODoh2juEU72c3aYonNF0OMGiaz2gjukyKM2wBBYJP38S4JiE0Wfb5VMQ== + dependencies: + "@babel/helper-annotate-as-pure" "^7.22.5" + "@babel/helper-create-class-features-plugin" "^7.22.5" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/plugin-syntax-private-property-in-object" "^7.14.5" + +"@babel/plugin-transform-property-literals@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.22.5.tgz#b5ddabd73a4f7f26cd0e20f5db48290b88732766" + integrity sha512-TiOArgddK3mK/x1Qwf5hay2pxI6wCZnvQqrFSqbtg1GLl2JcNMitVH/YnqjP+M31pLUeTfzY1HAXFDnUBV30rQ== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-regenerator@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.22.5.tgz#cd8a68b228a5f75fa01420e8cc2fc400f0fc32aa" + integrity sha512-rR7KePOE7gfEtNTh9Qw+iO3Q/e4DEsoQ+hdvM6QUDH7JRJ5qxq5AA52ZzBWbI5i9lfNuvySgOGP8ZN7LAmaiPw== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + regenerator-transform "^0.15.1" + +"@babel/plugin-transform-reserved-words@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.22.5.tgz#832cd35b81c287c4bcd09ce03e22199641f964fb" + integrity sha512-DTtGKFRQUDm8svigJzZHzb/2xatPc6TzNvAIJ5GqOKDsGFYgAskjRulbR/vGsPKq3OPqtexnz327qYpP57RFyA== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-shorthand-properties@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.22.5.tgz#6e277654be82b5559fc4b9f58088507c24f0c624" + integrity sha512-vM4fq9IXHscXVKzDv5itkO1X52SmdFBFcMIBZ2FRn2nqVYqw6dBexUgMvAjHW+KXpPPViD/Yo3GrDEBaRC0QYA== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-spread@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.22.5.tgz#6487fd29f229c95e284ba6c98d65eafb893fea6b" + integrity sha512-5ZzDQIGyvN4w8+dMmpohL6MBo+l2G7tfC/O2Dg7/hjpgeWvUx8FzfeOKxGog9IimPa4YekaQ9PlDqTLOljkcxg== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5" + +"@babel/plugin-transform-sticky-regex@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.22.5.tgz#295aba1595bfc8197abd02eae5fc288c0deb26aa" + integrity sha512-zf7LuNpHG0iEeiyCNwX4j3gDg1jgt1k3ZdXBKbZSoA3BbGQGvMiSvfbZRR3Dr3aeJe3ooWFZxOOG3IRStYp2Bw== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-template-literals@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.22.5.tgz#8f38cf291e5f7a8e60e9f733193f0bcc10909bff" + integrity sha512-5ciOehRNf+EyUeewo8NkbQiUs4d6ZxiHo6BcBcnFlgiJfu16q0bQUw9Jvo0b0gBKFG1SMhDSjeKXSYuJLeFSMA== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-typeof-symbol@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.22.5.tgz#5e2ba478da4b603af8673ff7c54f75a97b716b34" + integrity sha512-bYkI5lMzL4kPii4HHEEChkD0rkc+nvnlR6+o/qdqR6zrm0Sv/nodmyLhlq2DO0YKLUNd2VePmPRjJXSBh9OIdA== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-unicode-escapes@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.22.5.tgz#ce0c248522b1cb22c7c992d88301a5ead70e806c" + integrity sha512-biEmVg1IYB/raUO5wT1tgfacCef15Fbzhkx493D3urBI++6hpJ+RFG4SrWMn0NEZLfvilqKf3QDrRVZHo08FYg== + dependencies: + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-unicode-property-regex@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.22.5.tgz#098898f74d5c1e86660dc112057b2d11227f1c81" + integrity sha512-HCCIb+CbJIAE6sXn5CjFQXMwkCClcOfPCzTlilJ8cUatfzwHlWQkbtV0zD338u9dZskwvuOYTuuaMaA8J5EI5A== + dependencies: + "@babel/helper-create-regexp-features-plugin" "^7.22.5" + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-unicode-regex@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.22.5.tgz#ce7e7bb3ef208c4ff67e02a22816656256d7a183" + integrity sha512-028laaOKptN5vHJf9/Arr/HiJekMd41hOEZYvNsrsXqJ7YPYuX2bQxh31fkZzGmq3YqHRJzYFFAVYvKfMPKqyg== + dependencies: + "@babel/helper-create-regexp-features-plugin" "^7.22.5" + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/plugin-transform-unicode-sets-regex@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.22.5.tgz#77788060e511b708ffc7d42fdfbc5b37c3004e91" + integrity sha512-lhMfi4FC15j13eKrh3DnYHjpGj6UKQHtNKTbtc1igvAhRy4+kLhV07OpLcsN0VgDEw/MjAvJO4BdMJsHwMhzCg== + dependencies: + "@babel/helper-create-regexp-features-plugin" "^7.22.5" + "@babel/helper-plugin-utils" "^7.22.5" + +"@babel/preset-env@^7.22.9": + version "7.22.9" + resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.22.9.tgz#57f17108eb5dfd4c5c25a44c1977eba1df310ac7" + integrity sha512-wNi5H/Emkhll/bqPjsjQorSykrlfY5OWakd6AulLvMEytpKasMVUpVy8RL4qBIBs5Ac6/5i0/Rv0b/Fg6Eag/g== + dependencies: + "@babel/compat-data" "^7.22.9" + "@babel/helper-compilation-targets" "^7.22.9" + "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-validator-option" "^7.22.5" + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression" "^7.22.5" + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining" "^7.22.5" + "@babel/plugin-proposal-private-property-in-object" "7.21.0-placeholder-for-preset-env.2" + "@babel/plugin-syntax-async-generators" "^7.8.4" + "@babel/plugin-syntax-class-properties" "^7.12.13" + "@babel/plugin-syntax-class-static-block" "^7.14.5" + "@babel/plugin-syntax-dynamic-import" "^7.8.3" + "@babel/plugin-syntax-export-namespace-from" "^7.8.3" + "@babel/plugin-syntax-import-assertions" "^7.22.5" + "@babel/plugin-syntax-import-attributes" "^7.22.5" + "@babel/plugin-syntax-import-meta" "^7.10.4" + "@babel/plugin-syntax-json-strings" "^7.8.3" + "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" + "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" + "@babel/plugin-syntax-numeric-separator" "^7.10.4" + "@babel/plugin-syntax-object-rest-spread" "^7.8.3" + "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" + "@babel/plugin-syntax-optional-chaining" "^7.8.3" + "@babel/plugin-syntax-private-property-in-object" "^7.14.5" + "@babel/plugin-syntax-top-level-await" "^7.14.5" + "@babel/plugin-syntax-unicode-sets-regex" "^7.18.6" + "@babel/plugin-transform-arrow-functions" "^7.22.5" + "@babel/plugin-transform-async-generator-functions" "^7.22.7" + "@babel/plugin-transform-async-to-generator" "^7.22.5" + "@babel/plugin-transform-block-scoped-functions" "^7.22.5" + "@babel/plugin-transform-block-scoping" "^7.22.5" + "@babel/plugin-transform-class-properties" "^7.22.5" + "@babel/plugin-transform-class-static-block" "^7.22.5" + "@babel/plugin-transform-classes" "^7.22.6" + "@babel/plugin-transform-computed-properties" "^7.22.5" + "@babel/plugin-transform-destructuring" "^7.22.5" + "@babel/plugin-transform-dotall-regex" "^7.22.5" + "@babel/plugin-transform-duplicate-keys" "^7.22.5" + "@babel/plugin-transform-dynamic-import" "^7.22.5" + "@babel/plugin-transform-exponentiation-operator" "^7.22.5" + "@babel/plugin-transform-export-namespace-from" "^7.22.5" + "@babel/plugin-transform-for-of" "^7.22.5" + "@babel/plugin-transform-function-name" "^7.22.5" + "@babel/plugin-transform-json-strings" "^7.22.5" + "@babel/plugin-transform-literals" "^7.22.5" + "@babel/plugin-transform-logical-assignment-operators" "^7.22.5" + "@babel/plugin-transform-member-expression-literals" "^7.22.5" + "@babel/plugin-transform-modules-amd" "^7.22.5" + "@babel/plugin-transform-modules-commonjs" "^7.22.5" + "@babel/plugin-transform-modules-systemjs" "^7.22.5" + "@babel/plugin-transform-modules-umd" "^7.22.5" + "@babel/plugin-transform-named-capturing-groups-regex" "^7.22.5" + "@babel/plugin-transform-new-target" "^7.22.5" + "@babel/plugin-transform-nullish-coalescing-operator" "^7.22.5" + "@babel/plugin-transform-numeric-separator" "^7.22.5" + "@babel/plugin-transform-object-rest-spread" "^7.22.5" + "@babel/plugin-transform-object-super" "^7.22.5" + "@babel/plugin-transform-optional-catch-binding" "^7.22.5" + "@babel/plugin-transform-optional-chaining" "^7.22.6" + "@babel/plugin-transform-parameters" "^7.22.5" + "@babel/plugin-transform-private-methods" "^7.22.5" + "@babel/plugin-transform-private-property-in-object" "^7.22.5" + "@babel/plugin-transform-property-literals" "^7.22.5" + "@babel/plugin-transform-regenerator" "^7.22.5" + "@babel/plugin-transform-reserved-words" "^7.22.5" + "@babel/plugin-transform-shorthand-properties" "^7.22.5" + "@babel/plugin-transform-spread" "^7.22.5" + "@babel/plugin-transform-sticky-regex" "^7.22.5" + "@babel/plugin-transform-template-literals" "^7.22.5" + "@babel/plugin-transform-typeof-symbol" "^7.22.5" + "@babel/plugin-transform-unicode-escapes" "^7.22.5" + "@babel/plugin-transform-unicode-property-regex" "^7.22.5" + "@babel/plugin-transform-unicode-regex" "^7.22.5" + "@babel/plugin-transform-unicode-sets-regex" "^7.22.5" + "@babel/preset-modules" "^0.1.5" + "@babel/types" "^7.22.5" + babel-plugin-polyfill-corejs2 "^0.4.4" + babel-plugin-polyfill-corejs3 "^0.8.2" + babel-plugin-polyfill-regenerator "^0.5.1" + core-js-compat "^3.31.0" + semver "^6.3.1" + +"@babel/preset-modules@^0.1.5": + version "0.1.6" + resolved "https://registry.yarnpkg.com/@babel/preset-modules/-/preset-modules-0.1.6.tgz#31bcdd8f19538437339d17af00d177d854d9d458" + integrity sha512-ID2yj6K/4lKfhuU3+EX4UvNbIt7eACFbHmNUjzA+ep+B5971CknnA/9DEWKbRokfbbtblxxxXFJJrH47UEAMVg== + dependencies: + "@babel/helper-plugin-utils" "^7.0.0" + "@babel/plugin-proposal-unicode-property-regex" "^7.4.4" + "@babel/plugin-transform-dotall-regex" "^7.4.4" + "@babel/types" "^7.4.4" + esutils "^2.0.2" + +"@babel/register@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/register/-/register-7.22.5.tgz#e4d8d0f615ea3233a27b5c6ada6750ee59559939" + integrity sha512-vV6pm/4CijSQ8Y47RH5SopXzursN35RQINfGJkmOlcpAtGuf94miFvIPhCKGQN7WGIcsgG1BHEX2KVdTYwTwUQ== + dependencies: + clone-deep "^4.0.1" + find-cache-dir "^2.0.0" + make-dir "^2.1.0" + pirates "^4.0.5" + source-map-support "^0.5.16" + +"@babel/regjsgen@^0.8.0": + version "0.8.0" + resolved "https://registry.yarnpkg.com/@babel/regjsgen/-/regjsgen-0.8.0.tgz#f0ba69b075e1f05fb2825b7fad991e7adbb18310" + integrity sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA== + +"@babel/runtime@^7.8.4": + version "7.22.6" + resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.22.6.tgz#57d64b9ae3cff1d67eb067ae117dac087f5bd438" + integrity sha512-wDb5pWm4WDdF6LFUde3Jl8WzPA+3ZbxYqkC6xAXuD3irdEHN1k0NfTRrJD8ZD378SJ61miMLCqIOXYhd8x+AJQ== + dependencies: + regenerator-runtime "^0.13.11" + +"@babel/template@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.22.5.tgz#0c8c4d944509875849bd0344ff0050756eefc6ec" + integrity sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw== + dependencies: + "@babel/code-frame" "^7.22.5" + "@babel/parser" "^7.22.5" + "@babel/types" "^7.22.5" + +"@babel/traverse@^7.22.6", "@babel/traverse@^7.22.8": + version "7.22.8" + resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.22.8.tgz#4d4451d31bc34efeae01eac222b514a77aa4000e" + integrity sha512-y6LPR+wpM2I3qJrsheCTwhIinzkETbplIgPBbwvqPKc+uljeA5gP+3nP8irdYt1mjQaDnlIcG+dw8OjAco4GXw== + dependencies: + "@babel/code-frame" "^7.22.5" + "@babel/generator" "^7.22.7" + "@babel/helper-environment-visitor" "^7.22.5" + "@babel/helper-function-name" "^7.22.5" + "@babel/helper-hoist-variables" "^7.22.5" + "@babel/helper-split-export-declaration" "^7.22.6" + "@babel/parser" "^7.22.7" + "@babel/types" "^7.22.5" + debug "^4.1.0" + globals "^11.1.0" + +"@babel/types@^7.22.5", "@babel/types@^7.4.4": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.22.5.tgz#cd93eeaab025880a3a47ec881f4b096a5b786fbe" + integrity sha512-zo3MIHGOkPOfoRXitsgHLjEXmlDaD/5KU1Uzuc9GNiZPhSqVxVRtxuPaSBZDsYZ9qV88AjtMtWW7ww98loJ9KA== + dependencies: + "@babel/helper-string-parser" "^7.22.5" + "@babel/helper-validator-identifier" "^7.22.5" + to-fast-properties "^2.0.0" + +"@jridgewell/gen-mapping@^0.3.0", "@jridgewell/gen-mapping@^0.3.2": + version "0.3.3" + resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz#7e02e6eb5df901aaedb08514203b096614024098" + integrity sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ== + dependencies: + "@jridgewell/set-array" "^1.0.1" + "@jridgewell/sourcemap-codec" "^1.4.10" + "@jridgewell/trace-mapping" "^0.3.9" + +"@jridgewell/resolve-uri@3.1.0": + version "3.1.0" + resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz#2203b118c157721addfe69d47b70465463066d78" + integrity sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w== + +"@jridgewell/set-array@^1.0.1": + version "1.1.2" + resolved "https://registry.yarnpkg.com/@jridgewell/set-array/-/set-array-1.1.2.tgz#7c6cf998d6d20b914c0a55a91ae928ff25965e72" + integrity sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw== + +"@jridgewell/sourcemap-codec@1.4.14": + version "1.4.14" + resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz#add4c98d341472a289190b424efbdb096991bb24" + integrity sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw== + +"@jridgewell/sourcemap-codec@^1.4.10": + version "1.4.15" + resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz#d7c6e6755c78567a951e04ab52ef0fd26de59f32" + integrity sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg== + +"@jridgewell/trace-mapping@^0.3.17", "@jridgewell/trace-mapping@^0.3.9": + version "0.3.18" + resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz#25783b2086daf6ff1dcb53c9249ae480e4dd4cd6" + integrity sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA== + dependencies: + "@jridgewell/resolve-uri" "3.1.0" + "@jridgewell/sourcemap-codec" "1.4.14" + ansi-regex@^2.0.0: version "2.1.1" resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" @@ -12,6 +1013,21 @@ ansi-regex@^3.0.0: resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" integrity sha1-7QMXwyIGT3lGbAKWa922Bas32Zg= +ansi-styles@^3.2.1: + version "3.2.1" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" + integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== + dependencies: + color-convert "^1.9.0" + +array-buffer-byte-length@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/array-buffer-byte-length/-/array-buffer-byte-length-1.0.0.tgz#fabe8bc193fea865f317fe7807085ee0dee5aead" + integrity sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A== + dependencies: + call-bind "^1.0.2" + is-array-buffer "^3.0.1" + array-includes@^3.0.3: version "3.0.3" resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.0.3.tgz#184b48f62d92d7452bb31b323165c7f8bd02266d" @@ -20,16 +1036,105 @@ array-includes@^3.0.3: define-properties "^1.1.2" es-abstract "^1.7.0" +array.prototype.reduce@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/array.prototype.reduce/-/array.prototype.reduce-1.0.5.tgz#6b20b0daa9d9734dd6bc7ea66b5bbce395471eac" + integrity sha512-kDdugMl7id9COE8R7MHF5jWk7Dqt/fs4Pv+JXoICnYwqpjjjbUurz6w5fT5IG6brLdJhv6/VoHB0H7oyIBXd+Q== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.4" + es-abstract "^1.20.4" + es-array-method-boxes-properly "^1.0.0" + is-string "^1.0.7" + +arraybuffer.prototype.slice@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.1.tgz#9b5ea3868a6eebc30273da577eb888381c0044bb" + integrity sha512-09x0ZWFEjj4WD8PDbykUwo3t9arLn8NIzmmYEJFpYekOAQjpkGSyrQhNoRTcwwcFRu+ycWF78QZ63oWTqSjBcw== + dependencies: + array-buffer-byte-length "^1.0.0" + call-bind "^1.0.2" + define-properties "^1.2.0" + get-intrinsic "^1.2.1" + is-array-buffer "^3.0.2" + is-shared-array-buffer "^1.0.2" + asap@~2.0.3: version "2.0.6" resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46" integrity sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY= +available-typed-arrays@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz#92f95616501069d07d10edb2fc37d3e1c65123b7" + integrity sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw== + +babel-plugin-polyfill-corejs2@^0.4.4: + version "0.4.5" + resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.5.tgz#8097b4cb4af5b64a1d11332b6fb72ef5e64a054c" + integrity sha512-19hwUH5FKl49JEsvyTcoHakh6BE0wgXLLptIyKZ3PijHc/Ci521wygORCUCCred+E/twuqRyAkE02BAWPmsHOg== + dependencies: + "@babel/compat-data" "^7.22.6" + "@babel/helper-define-polyfill-provider" "^0.4.2" + semver "^6.3.1" + +babel-plugin-polyfill-corejs3@^0.8.2: + version "0.8.3" + resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.8.3.tgz#b4f719d0ad9bb8e0c23e3e630c0c8ec6dd7a1c52" + integrity sha512-z41XaniZL26WLrvjy7soabMXrfPWARN25PZoriDEiLMxAp50AUW3t35BGQUMg5xK3UrpVTtagIDklxYa+MhiNA== + dependencies: + "@babel/helper-define-polyfill-provider" "^0.4.2" + core-js-compat "^3.31.0" + +babel-plugin-polyfill-regenerator@^0.5.1: + version "0.5.2" + resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.5.2.tgz#80d0f3e1098c080c8b5a65f41e9427af692dc326" + integrity sha512-tAlOptU0Xj34V1Y2PNTL4Y0FOJMDB6bZmoW39FeCQIhigGLkqu3Fj6uiXpxIf6Ij274ENdYx64y6Au+ZKlb1IA== + dependencies: + "@babel/helper-define-polyfill-provider" "^0.4.2" + +browserslist@^4.21.9: + version "4.21.9" + resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.21.9.tgz#e11bdd3c313d7e2a9e87e8b4b0c7872b13897635" + integrity sha512-M0MFoZzbUrRU4KNfCrDLnvyE7gub+peetoTid3TBIqtunaDJyXlwhakT+/VkvSXcfIzFfK/nkCs4nmyTmxdNSg== + dependencies: + caniuse-lite "^1.0.30001503" + electron-to-chromium "^1.4.431" + node-releases "^2.0.12" + update-browserslist-db "^1.0.11" + +buffer-from@^1.0.0: + version "1.1.2" + resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.2.tgz#2b146a6fd72e80b4f55d255f35ed59a3a9a41bd5" + integrity sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ== + +call-bind@^1.0.0, call-bind@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c" + integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA== + dependencies: + function-bind "^1.1.1" + get-intrinsic "^1.0.2" + camelcase@^4.1.0: version "4.1.0" resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" integrity sha1-1UVjW+HjPFQmScaRc+Xeas+uNN0= +caniuse-lite@^1.0.30001503: + version "1.0.30001517" + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001517.tgz#90fabae294215c3495807eb24fc809e11dc2f0a8" + integrity sha512-Vdhm5S11DaFVLlyiKu4hiUTkpZu+y1KA/rZZqVQfOD5YdDT/eQKlkt7NaE0WGOFgX32diqt9MiP9CAiFeRklaA== + +chalk@^2.0.0: + version "2.4.2" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" + integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== + dependencies: + ansi-styles "^3.2.1" + escape-string-regexp "^1.0.5" + supports-color "^5.3.0" + cliui@^3.2.0: version "3.2.0" resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" @@ -39,16 +1144,64 @@ cliui@^3.2.0: strip-ansi "^3.0.1" wrap-ansi "^2.0.0" +clone-deep@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/clone-deep/-/clone-deep-4.0.1.tgz#c19fd9bdbbf85942b4fd979c84dcf7d5f07c2387" + integrity sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ== + dependencies: + is-plain-object "^2.0.4" + kind-of "^6.0.2" + shallow-clone "^3.0.0" + code-point-at@^1.0.0: version "1.1.0" resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" integrity sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c= +color-convert@^1.9.0: + version "1.9.3" + resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" + integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== + dependencies: + color-name "1.1.3" + +color-name@1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" + integrity sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw== + +commander@^4.0.1: + version "4.1.1" + resolved "https://registry.yarnpkg.com/commander/-/commander-4.1.1.tgz#9fd602bd936294e9e9ef46a3f4d6964044b18068" + integrity sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA== + +commondir@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b" + integrity sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg== + +convert-source-map@^1.7.0: + version "1.9.0" + resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.9.0.tgz#7faae62353fb4213366d0ca98358d22e8368b05f" + integrity sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A== + +core-js-compat@^3.31.0: + version "3.31.1" + resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.31.1.tgz#5084ad1a46858df50ff89ace152441a63ba7aae0" + integrity sha512-wIDWd2s5/5aJSdpOJHfSibxNODxoGoWOBHt8JSPB41NOE94M7kuTPZCYLOlTtuoXTsBPKobpJ6T+y0SSy5L9SA== + dependencies: + browserslist "^4.21.9" + core-js@^1.0.0: version "1.2.7" resolved "https://registry.yarnpkg.com/core-js/-/core-js-1.2.7.tgz#652294c14651db28fa93bd2d5ff2983a4f08c636" integrity sha1-ZSKUwUZR2yj6k70tX/KYOk8IxjY= +core-js@^3.30.2: + version "3.31.1" + resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.31.1.tgz#f2b0eea9be9da0def2c5fece71064a7e5d687653" + integrity sha512-2sKLtfq1eFST7l7v62zaqXacPc7uG8ZAya8ogijLhTtaKNcpzpB4TMoTw2Si+8GYKRwFPMMtUT0263QFWFfqyQ== + create-react-class@^15.6.0: version "15.6.3" resolved "https://registry.yarnpkg.com/create-react-class/-/create-react-class-15.6.3.tgz#2d73237fb3f970ae6ebe011a9e66f46dbca80036" @@ -67,6 +1220,13 @@ cross-spawn@^5.0.1: shebang-command "^1.2.0" which "^1.2.9" +debug@^4.1.0, debug@^4.1.1: + version "4.3.4" + resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865" + integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== + dependencies: + ms "2.1.2" + decamelize@^1.1.1: version "1.2.0" resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" @@ -79,6 +1239,14 @@ define-properties@^1.1.2, define-properties@^1.1.3: dependencies: object-keys "^1.0.12" +define-properties@^1.1.4, define-properties@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.2.0.tgz#52988570670c9eacedd8064f4a990f2405849bd5" + integrity sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA== + dependencies: + has-property-descriptors "^1.0.0" + object-keys "^1.1.1" + doctrine@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.1.0.tgz#5cd01fc101621b42c4cd7f5d1a66243716d3f39d" @@ -86,15 +1254,20 @@ doctrine@^2.1.0: dependencies: esutils "^2.0.2" -emoji-datasource-apple@^4.0.4: - version "4.1.0" - resolved "https://registry.yarnpkg.com/emoji-datasource-apple/-/emoji-datasource-apple-4.1.0.tgz#e6725311b115144a32fb60043416a755fea30bf5" - integrity sha1-5nJTEbEVFEoy+2AENBanVf6jC/U= +electron-to-chromium@^1.4.431: + version "1.4.470" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.470.tgz#0e932816be8d5f2b491ad2aa449ea47db4785398" + integrity sha512-zZM48Lmy2FKWgqyvsX9XK+J6FfP7aCDUFLmgooLJzA7v1agCs/sxSoBpTIwDLhmbhpx9yJIxj2INig/ncjJRqg== -emoji-datasource@^4.0.4: - version "4.1.0" - resolved "https://registry.yarnpkg.com/emoji-datasource/-/emoji-datasource-4.1.0.tgz#b44557f78a2dfac2f350393391b170a567ec28ad" - integrity sha1-tEVX94ot+sLzUDkzkbFwpWfsKK0= +emoji-datasource-apple@^15.0.1: + version "15.0.1" + resolved "https://registry.yarnpkg.com/emoji-datasource-apple/-/emoji-datasource-apple-15.0.1.tgz#c89026ae6b91f8825b7b624f51312f023faa2a45" + integrity sha512-8HAp6NHycqZ0yCzzngeUUJAwQ6OiwXHNH22NbVBSzDMbebaap9zP5//mlRbwqyOfweq7foGAcCvnNH/aEOcjWw== + +emoji-datasource@^15.0.1: + version "15.0.1" + resolved "https://registry.yarnpkg.com/emoji-datasource/-/emoji-datasource-15.0.1.tgz#6cc7676e4d48d7559c2e068ffcacf84ec653584c" + integrity sha512-aF5Q6LCKXzJzpG4K0ETiItuzz0xLYxNexR9qWw45/shuuEDWZkOIbeGHA23uopOSYA/LmeZIXIFsySCx+YKg2g== encoding@^0.1.11: version "0.1.12" @@ -126,6 +1299,65 @@ es-abstract@^1.12.0, es-abstract@^1.15.0, es-abstract@^1.7.0: string.prototype.trimleft "^2.1.0" string.prototype.trimright "^2.1.0" +es-abstract@^1.19.0, es-abstract@^1.20.4, es-abstract@^1.21.2: + version "1.22.1" + resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.22.1.tgz#8b4e5fc5cefd7f1660f0f8e1a52900dfbc9d9ccc" + integrity sha512-ioRRcXMO6OFyRpyzV3kE1IIBd4WG5/kltnzdxSCqoP8CMGs/Li+M1uF5o7lOkZVFjDs+NLesthnF66Pg/0q0Lw== + dependencies: + array-buffer-byte-length "^1.0.0" + arraybuffer.prototype.slice "^1.0.1" + available-typed-arrays "^1.0.5" + call-bind "^1.0.2" + es-set-tostringtag "^2.0.1" + es-to-primitive "^1.2.1" + function.prototype.name "^1.1.5" + get-intrinsic "^1.2.1" + get-symbol-description "^1.0.0" + globalthis "^1.0.3" + gopd "^1.0.1" + has "^1.0.3" + has-property-descriptors "^1.0.0" + has-proto "^1.0.1" + has-symbols "^1.0.3" + internal-slot "^1.0.5" + is-array-buffer "^3.0.2" + is-callable "^1.2.7" + is-negative-zero "^2.0.2" + is-regex "^1.1.4" + is-shared-array-buffer "^1.0.2" + is-string "^1.0.7" + is-typed-array "^1.1.10" + is-weakref "^1.0.2" + object-inspect "^1.12.3" + object-keys "^1.1.1" + object.assign "^4.1.4" + regexp.prototype.flags "^1.5.0" + safe-array-concat "^1.0.0" + safe-regex-test "^1.0.0" + string.prototype.trim "^1.2.7" + string.prototype.trimend "^1.0.6" + string.prototype.trimstart "^1.0.6" + typed-array-buffer "^1.0.0" + typed-array-byte-length "^1.0.0" + typed-array-byte-offset "^1.0.0" + typed-array-length "^1.0.4" + unbox-primitive "^1.0.2" + which-typed-array "^1.1.10" + +es-array-method-boxes-properly@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/es-array-method-boxes-properly/-/es-array-method-boxes-properly-1.0.0.tgz#873f3e84418de4ee19c5be752990b2e44718d09e" + integrity sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA== + +es-set-tostringtag@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/es-set-tostringtag/-/es-set-tostringtag-2.0.1.tgz#338d502f6f674301d710b80c8592de8a15f09cd8" + integrity sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg== + dependencies: + get-intrinsic "^1.1.3" + has "^1.0.3" + has-tostringtag "^1.0.0" + es-to-primitive@^1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.0.tgz#edf72478033456e8dda8ef09e00ad9650707f377" @@ -135,6 +1367,25 @@ es-to-primitive@^1.2.0: is-date-object "^1.0.1" is-symbol "^1.0.2" +es-to-primitive@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a" + integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA== + dependencies: + is-callable "^1.1.4" + is-date-object "^1.0.1" + is-symbol "^1.0.2" + +escalade@^3.1.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40" + integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== + +escape-string-regexp@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" + integrity sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg== + eslint-plugin-react@^7.8.2: version "7.16.0" resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.16.0.tgz#9928e4f3e2122ed3ba6a5b56d0303ba3e41d8c09" @@ -181,6 +1432,15 @@ fbjs@^0.8.9: setimmediate "^1.0.5" ua-parser-js "^0.7.18" +find-cache-dir@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-2.1.0.tgz#8d0f94cd13fe43c6c7c261a0d86115ca918c05f7" + integrity sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ== + dependencies: + commondir "^1.0.1" + make-dir "^2.0.0" + pkg-dir "^3.0.0" + find-up@^2.0.0: version "2.1.0" resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" @@ -188,36 +1448,141 @@ find-up@^2.0.0: dependencies: locate-path "^2.0.0" +find-up@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/find-up/-/find-up-3.0.0.tgz#49169f1d7993430646da61ecc5ae355c21c97b73" + integrity sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg== + dependencies: + locate-path "^3.0.0" + +for-each@^0.3.3: + version "0.3.3" + resolved "https://registry.yarnpkg.com/for-each/-/for-each-0.3.3.tgz#69b447e88a0a5d32c3e7084f3f1710034b21376e" + integrity sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw== + dependencies: + is-callable "^1.1.3" + function-bind@^1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== +function.prototype.name@^1.1.5: + version "1.1.5" + resolved "https://registry.yarnpkg.com/function.prototype.name/-/function.prototype.name-1.1.5.tgz#cce0505fe1ffb80503e6f9e46cc64e46a12a9621" + integrity sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.3" + es-abstract "^1.19.0" + functions-have-names "^1.2.2" + +functions-have-names@^1.2.2, functions-have-names@^1.2.3: + version "1.2.3" + resolved "https://registry.yarnpkg.com/functions-have-names/-/functions-have-names-1.2.3.tgz#0404fe4ee2ba2f607f0e0ec3c80bae994133b834" + integrity sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ== + fuse.js@^3.4.4: version "3.4.5" resolved "https://registry.yarnpkg.com/fuse.js/-/fuse.js-3.4.5.tgz#8954fb43f9729bd5dbcb8c08f251db552595a7a6" integrity sha512-s9PGTaQIkT69HaeoTVjwGsLfb8V8ScJLx5XGFcKHg0MqLUH/UZ4EKOtqtXX9k7AFqCGxD1aJmYb8Q5VYDibVRQ== +gensync@^1.0.0-beta.2: + version "1.0.0-beta.2" + resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0" + integrity sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg== + get-caller-file@^1.0.1: version "1.0.3" resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.3.tgz#f978fa4c90d1dfe7ff2d6beda2a515e713bdcf4a" integrity sha512-3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w== +get-intrinsic@^1.0.2, get-intrinsic@^1.1.1, get-intrinsic@^1.1.3, get-intrinsic@^1.2.0, get-intrinsic@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.2.1.tgz#d295644fed4505fc9cde952c37ee12b477a83d82" + integrity sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw== + dependencies: + function-bind "^1.1.1" + has "^1.0.3" + has-proto "^1.0.1" + has-symbols "^1.0.3" + get-stream@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" integrity sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ= +get-symbol-description@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/get-symbol-description/-/get-symbol-description-1.0.0.tgz#7fdb81c900101fbd564dd5f1a30af5aadc1e58d6" + integrity sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw== + dependencies: + call-bind "^1.0.2" + get-intrinsic "^1.1.1" + +globals@^11.1.0: + version "11.12.0" + resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" + integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== + +globalthis@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/globalthis/-/globalthis-1.0.3.tgz#5852882a52b80dc301b0660273e1ed082f0b6ccf" + integrity sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA== + dependencies: + define-properties "^1.1.3" + +gopd@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/gopd/-/gopd-1.0.1.tgz#29ff76de69dac7489b7c0918a5788e56477c332c" + integrity sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA== + dependencies: + get-intrinsic "^1.1.3" + graceful-fs@^4.1.2: version "4.2.2" resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.2.tgz#6f0952605d0140c1cfdb138ed005775b92d67b02" integrity sha512-IItsdsea19BoLC7ELy13q1iJFNmd7ofZH5+X/pJr90/nRoPEX0DJo1dHDbgtYWOhJhcCgMDTOw84RZ72q6lB+Q== +has-bigints@^1.0.1, has-bigints@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/has-bigints/-/has-bigints-1.0.2.tgz#0871bd3e3d51626f6ca0966668ba35d5602d6eaa" + integrity sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ== + +has-flag@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" + integrity sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw== + +has-property-descriptors@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz#610708600606d36961ed04c196193b6a607fa861" + integrity sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ== + dependencies: + get-intrinsic "^1.1.1" + +has-proto@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/has-proto/-/has-proto-1.0.1.tgz#1885c1305538958aff469fef37937c22795408e0" + integrity sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg== + has-symbols@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.0.tgz#ba1a8f1af2a0fc39650f5c850367704122063b44" integrity sha1-uhqPGvKg/DllD1yFA2dwQSIGO0Q= +has-symbols@^1.0.2, has-symbols@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8" + integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A== + +has-tostringtag@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/has-tostringtag/-/has-tostringtag-1.0.0.tgz#7e133818a7d394734f941e73c3d3f9291e658b25" + integrity sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ== + dependencies: + has-symbols "^1.0.2" + has@^1.0.1, has@^1.0.3: version "1.0.3" resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" @@ -225,6 +1590,13 @@ has@^1.0.1, has@^1.0.3: dependencies: function-bind "^1.1.1" +homedir-polyfill@^1.0.1: + version "1.0.3" + resolved "https://registry.yarnpkg.com/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz#743298cef4e5af3e194161fbadcc2151d3a058e8" + integrity sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA== + dependencies: + parse-passwd "^1.0.0" + hosted-git-info@^2.1.4: version "2.8.4" resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.4.tgz#44119abaf4bc64692a16ace34700fed9c03e2546" @@ -237,21 +1609,66 @@ iconv-lite@~0.4.13: dependencies: safer-buffer ">= 2.1.2 < 3" +internal-slot@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.0.5.tgz#f2a2ee21f668f8627a4667f309dc0f4fb6674986" + integrity sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ== + dependencies: + get-intrinsic "^1.2.0" + has "^1.0.3" + side-channel "^1.0.4" + invert-kv@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" integrity sha1-EEqOSqym09jNFXqO+L+rLXo//bY= +is-array-buffer@^3.0.1, is-array-buffer@^3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/is-array-buffer/-/is-array-buffer-3.0.2.tgz#f2653ced8412081638ecb0ebbd0c41c6e0aecbbe" + integrity sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w== + dependencies: + call-bind "^1.0.2" + get-intrinsic "^1.2.0" + is-typed-array "^1.1.10" + is-arrayish@^0.2.1: version "0.2.1" resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" integrity sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0= +is-bigint@^1.0.1: + version "1.0.4" + resolved "https://registry.yarnpkg.com/is-bigint/-/is-bigint-1.0.4.tgz#08147a1875bc2b32005d41ccd8291dffc6691df3" + integrity sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg== + dependencies: + has-bigints "^1.0.1" + +is-boolean-object@^1.1.0: + version "1.1.2" + resolved "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.1.2.tgz#5c6dc200246dd9321ae4b885a114bb1f75f63719" + integrity sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA== + dependencies: + call-bind "^1.0.2" + has-tostringtag "^1.0.0" + +is-callable@^1.1.3, is-callable@^1.2.7: + version "1.2.7" + resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.7.tgz#3bc2a85ea742d9e36205dcacdd72ca1fdc51b055" + integrity sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA== + is-callable@^1.1.4: version "1.1.4" resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.4.tgz#1e1adf219e1eeb684d691f9d6a05ff0d30a24d75" integrity sha512-r5p9sxJjYnArLjObpjA4xu5EKI3CuKHkJXMhT7kwbpUyIFD1n5PMAsoPvWnvtZiNz7LjkYDRZhd7FlI0eMijEA== +is-core-module@^2.11.0: + version "2.12.1" + resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.12.1.tgz#0c0b6885b6f80011c71541ce15c8d66cf5a4f9fd" + integrity sha512-Q4ZuBAe2FUsKtyQJoQHlvP8OvBERxO3jEmy1I7hcRXcJBGGHFh/aJBswbXuS9sgrDH2QUO8ilkwNPHvHMd8clg== + dependencies: + has "^1.0.3" + is-date-object@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.1.tgz#9aa20eb6aeebbff77fbd33e74ca01b33581d3a16" @@ -269,6 +1686,25 @@ is-fullwidth-code-point@^2.0.0: resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" integrity sha1-o7MKXE8ZkYMWeqq5O+764937ZU8= +is-negative-zero@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.2.tgz#7bf6f03a28003b8b3965de3ac26f664d765f3150" + integrity sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA== + +is-number-object@^1.0.4: + version "1.0.7" + resolved "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.0.7.tgz#59d50ada4c45251784e9904f5246c742f07a42fc" + integrity sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ== + dependencies: + has-tostringtag "^1.0.0" + +is-plain-object@^2.0.4: + version "2.0.4" + resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677" + integrity sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og== + dependencies: + isobject "^3.0.1" + is-regex@^1.0.4: version "1.0.4" resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.4.tgz#5517489b547091b0930e095654ced25ee97e9491" @@ -276,11 +1712,33 @@ is-regex@^1.0.4: dependencies: has "^1.0.1" +is-regex@^1.1.4: + version "1.1.4" + resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.4.tgz#eef5663cd59fa4c0ae339505323df6854bb15958" + integrity sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg== + dependencies: + call-bind "^1.0.2" + has-tostringtag "^1.0.0" + +is-shared-array-buffer@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz#8f259c573b60b6a32d4058a1a07430c0a7344c79" + integrity sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA== + dependencies: + call-bind "^1.0.2" + is-stream@^1.0.1, is-stream@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" integrity sha1-EtSj3U5o4Lec6428hBc66A2RykQ= +is-string@^1.0.5, is-string@^1.0.7: + version "1.0.7" + resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.7.tgz#0dd12bf2006f255bb58f695110eff7491eebc0fd" + integrity sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg== + dependencies: + has-tostringtag "^1.0.0" + is-symbol@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.2.tgz#a055f6ae57192caee329e7a860118b497a950f38" @@ -288,11 +1746,42 @@ is-symbol@^1.0.2: dependencies: has-symbols "^1.0.0" +is-symbol@^1.0.3: + version "1.0.4" + resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.4.tgz#a6dac93b635b063ca6872236de88910a57af139c" + integrity sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg== + dependencies: + has-symbols "^1.0.2" + +is-typed-array@^1.1.10, is-typed-array@^1.1.9: + version "1.1.12" + resolved "https://registry.yarnpkg.com/is-typed-array/-/is-typed-array-1.1.12.tgz#d0bab5686ef4a76f7a73097b95470ab199c57d4a" + integrity sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg== + dependencies: + which-typed-array "^1.1.11" + +is-weakref@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/is-weakref/-/is-weakref-1.0.2.tgz#9529f383a9338205e89765e0392efc2f100f06f2" + integrity sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ== + dependencies: + call-bind "^1.0.2" + +isarray@^2.0.5: + version "2.0.5" + resolved "https://registry.yarnpkg.com/isarray/-/isarray-2.0.5.tgz#8af1e4c1221244cc62459faf38940d4e644a5723" + integrity sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw== + isexe@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA= +isobject@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" + integrity sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg== + isomorphic-fetch@^2.1.1: version "2.2.1" resolved "https://registry.yarnpkg.com/isomorphic-fetch/-/isomorphic-fetch-2.2.1.tgz#611ae1acf14f5e81f729507472819fe9733558a9" @@ -301,11 +1790,26 @@ isomorphic-fetch@^2.1.1: node-fetch "^1.0.1" whatwg-fetch ">=0.10.0" -"js-tokens@^3.0.0 || ^4.0.0": +"js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== +jsesc@^2.5.1: + version "2.5.2" + resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4" + integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA== + +jsesc@~0.5.0: + version "0.5.0" + resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" + integrity sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA== + +json5@^2.2.2: + version "2.2.3" + resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.3.tgz#78cd6f1a19bdc12b73db5ad0c61efd66c1e29283" + integrity sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg== + jsx-ast-utils@^2.2.1: version "2.2.1" resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-2.2.1.tgz#4d4973ebf8b9d2837ee91a8208cc66f3a2776cfb" @@ -314,6 +1818,11 @@ jsx-ast-utils@^2.2.1: array-includes "^3.0.3" object.assign "^4.1.0" +kind-of@^6.0.2: + version "6.0.3" + resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd" + integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw== + lcid@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" @@ -339,7 +1848,15 @@ locate-path@^2.0.0: p-locate "^2.0.0" path-exists "^3.0.0" -lodash.debounce@4.0.8: +locate-path@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-3.0.0.tgz#dbec3b3ab759758071b58fe59fc41871af21400e" + integrity sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A== + dependencies: + p-locate "^3.0.0" + path-exists "^3.0.0" + +lodash.debounce@4.0.8, lodash.debounce@^4.0.8: version "4.0.8" resolved "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af" integrity sha1-gteb/zCmfEAF/9XiUVMArZyk168= @@ -364,6 +1881,21 @@ lru-cache@^4.0.1: pseudomap "^1.0.2" yallist "^2.1.2" +lru-cache@^5.1.1: + version "5.1.1" + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-5.1.1.tgz#1da27e6710271947695daf6848e847f01d84b920" + integrity sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w== + dependencies: + yallist "^3.0.2" + +make-dir@^2.0.0, make-dir@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-2.1.0.tgz#5f0310e18b8be898cc07009295a30ae41e91e6f5" + integrity sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA== + dependencies: + pify "^4.0.1" + semver "^5.6.0" + mem@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/mem/-/mem-1.1.0.tgz#5edd52b485ca1d900fe64895505399a0dfa45f76" @@ -376,6 +1908,19 @@ mimic-fn@^1.0.0: resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022" integrity sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ== +ms@2.1.2: + version "2.1.2" + resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" + integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== + +node-environment-flags@^1.0.5: + version "1.0.6" + resolved "https://registry.yarnpkg.com/node-environment-flags/-/node-environment-flags-1.0.6.tgz#a30ac13621f6f7d674260a54dede048c3982c088" + integrity sha512-5Evy2epuL+6TM0lCQGpFIj6KwiEsGh1SrHUhTbNX+sLbBtjidPZFAnVK9y5yU1+h//RitLbRHTIMyxQPtxMdHw== + dependencies: + object.getownpropertydescriptors "^2.0.3" + semver "^5.7.0" + node-fetch@^1.0.1: version "1.7.3" resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-1.7.3.tgz#980f6f72d85211a5347c6b2bc18c5b84c3eb47ef" @@ -384,6 +1929,11 @@ node-fetch@^1.0.1: encoding "^0.1.11" is-stream "^1.0.1" +node-releases@^2.0.12: + version "2.0.13" + resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.13.tgz#d5ed1627c23e3461e819b02e57b75e4899b1c81d" + integrity sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ== + normalize-package-data@^2.3.2: version "2.5.0" resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8" @@ -411,6 +1961,11 @@ object-assign@^4.1.0, object-assign@^4.1.1: resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM= +object-inspect@^1.12.3, object-inspect@^1.9.0: + version "1.12.3" + resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.12.3.tgz#ba62dffd67ee256c8c086dfae69e016cd1f198b9" + integrity sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g== + object-inspect@^1.6.0: version "1.6.0" resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.6.0.tgz#c70b6cbf72f274aab4c34c0c82f5167bf82cf15b" @@ -431,6 +1986,16 @@ object.assign@^4.1.0: has-symbols "^1.0.0" object-keys "^1.0.11" +object.assign@^4.1.4: + version "4.1.4" + resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.4.tgz#9673c7c7c351ab8c4d0b516f4343ebf4dfb7799f" + integrity sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.4" + has-symbols "^1.0.3" + object-keys "^1.1.1" + object.entries@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.0.tgz#2024fc6d6ba246aee38bdb0ffd5cfbcf371b7519" @@ -451,6 +2016,17 @@ object.fromentries@^2.0.0: function-bind "^1.1.1" has "^1.0.3" +object.getownpropertydescriptors@^2.0.3: + version "2.1.6" + resolved "https://registry.yarnpkg.com/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.6.tgz#5e5c384dd209fa4efffead39e3a0512770ccc312" + integrity sha512-lq+61g26E/BgHv0ZTFgRvi7NMEPuAxLkFU7rukXjc/AlwH4Am5xXVnIXy3un1bg/JPbXHrixRkK1itUzzPiIjQ== + dependencies: + array.prototype.reduce "^1.0.5" + call-bind "^1.0.2" + define-properties "^1.2.0" + es-abstract "^1.21.2" + safe-array-concat "^1.0.0" + object.values@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.1.0.tgz#bf6810ef5da3e5325790eaaa2be213ea84624da9" @@ -482,6 +2058,13 @@ p-limit@^1.1.0: dependencies: p-try "^1.0.0" +p-limit@^2.0.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1" + integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w== + dependencies: + p-try "^2.0.0" + p-locate@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" @@ -489,11 +2072,23 @@ p-locate@^2.0.0: dependencies: p-limit "^1.1.0" +p-locate@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-3.0.0.tgz#322d69a05c0264b25997d9f40cd8a891ab0064a4" + integrity sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ== + dependencies: + p-limit "^2.0.0" + p-try@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3" integrity sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M= +p-try@^2.0.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6" + integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== + parse-json@^2.2.0: version "2.2.0" resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" @@ -501,6 +2096,11 @@ parse-json@^2.2.0: dependencies: error-ex "^1.2.0" +parse-passwd@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/parse-passwd/-/parse-passwd-1.0.0.tgz#6d5b934a456993b23d37f40a382d6f1666a8e5c6" + integrity sha512-1Y1A//QUXEZK7YKz+rD9WydcE1+EuPr6ZBgKecAB8tmoW6UFv0NREVJe1p+jRxtThkcbbKkfwIbWJe/IeE6m2Q== + path-exists@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" @@ -516,6 +2116,11 @@ path-parse@^1.0.6: resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.6.tgz#d62dbb5679405d72c4737ec58600e9ddcf06d24c" integrity sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw== +path-parse@^1.0.7: + version "1.0.7" + resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" + integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== + path-type@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73" @@ -523,11 +2128,33 @@ path-type@^2.0.0: dependencies: pify "^2.0.0" +picocolors@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c" + integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ== + pify@^2.0.0: version "2.3.0" resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" integrity sha1-7RQaasBDqEnqWISY59yosVMw6Qw= +pify@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/pify/-/pify-4.0.1.tgz#4b2cd25c50d598735c50292224fd8c6df41e3231" + integrity sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g== + +pirates@^4.0.5: + version "4.0.6" + resolved "https://registry.yarnpkg.com/pirates/-/pirates-4.0.6.tgz#3018ae32ecfcff6c29ba2267cbf21166ac1f36b9" + integrity sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg== + +pkg-dir@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-3.0.0.tgz#2749020f239ed990881b1f71210d51eb6523bea3" + integrity sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw== + dependencies: + find-up "^3.0.0" + promise@^7.1.1: version "7.3.1" resolved "https://registry.yarnpkg.com/promise/-/promise-7.3.1.tgz#064b72602b18f90f29192b8b1bc418ffd1ebd3bf" @@ -616,6 +2243,58 @@ recyclerlistview@2.0.12: prop-types "15.5.8" ts-object-utils "0.0.5" +regenerate-unicode-properties@^10.1.0: + version "10.1.0" + resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.0.tgz#7c3192cab6dd24e21cb4461e5ddd7dd24fa8374c" + integrity sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ== + dependencies: + regenerate "^1.4.2" + +regenerate@^1.4.2: + version "1.4.2" + resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.2.tgz#b9346d8827e8f5a32f7ba29637d398b69014848a" + integrity sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A== + +regenerator-runtime@^0.13.11: + version "0.13.11" + resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz#f6dca3e7ceec20590d07ada785636a90cdca17f9" + integrity sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg== + +regenerator-transform@^0.15.1: + version "0.15.1" + resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.15.1.tgz#f6c4e99fc1b4591f780db2586328e4d9a9d8dc56" + integrity sha512-knzmNAcuyxV+gQCufkYcvOqX/qIIfHLv0u5x79kRxuGojfYVky1f15TzZEu2Avte8QGepvUNTnLskf8E6X6Vyg== + dependencies: + "@babel/runtime" "^7.8.4" + +regexp.prototype.flags@^1.5.0: + version "1.5.0" + resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.5.0.tgz#fe7ce25e7e4cca8db37b6634c8a2c7009199b9cb" + integrity sha512-0SutC3pNudRKgquxGoRGIz946MZVHqbNfPjBdxeOhBrdgDKlRoXmYLQN9xRbrR09ZXWeGAdPuif7egofn6v5LA== + dependencies: + call-bind "^1.0.2" + define-properties "^1.2.0" + functions-have-names "^1.2.3" + +regexpu-core@^5.3.1: + version "5.3.2" + resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-5.3.2.tgz#11a2b06884f3527aec3e93dbbf4a3b958a95546b" + integrity sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ== + dependencies: + "@babel/regjsgen" "^0.8.0" + regenerate "^1.4.2" + regenerate-unicode-properties "^10.1.0" + regjsparser "^0.9.1" + unicode-match-property-ecmascript "^2.0.0" + unicode-match-property-value-ecmascript "^2.1.0" + +regjsparser@^0.9.1: + version "0.9.1" + resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.9.1.tgz#272d05aa10c7c1f67095b1ff0addae8442fc5709" + integrity sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ== + dependencies: + jsesc "~0.5.0" + require-directory@^2.1.1: version "2.1.1" resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" @@ -633,6 +2312,34 @@ resolve@^1.10.0, resolve@^1.12.0: dependencies: path-parse "^1.0.6" +resolve@^1.14.2: + version "1.22.2" + resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.2.tgz#0ed0943d4e301867955766c9f3e1ae6d01c6845f" + integrity sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g== + dependencies: + is-core-module "^2.11.0" + path-parse "^1.0.7" + supports-preserve-symlinks-flag "^1.0.0" + +safe-array-concat@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/safe-array-concat/-/safe-array-concat-1.0.0.tgz#2064223cba3c08d2ee05148eedbc563cd6d84060" + integrity sha512-9dVEFruWIsnie89yym+xWTAYASdpw3CJV7Li/6zBewGf9z2i1j31rP6jnY0pHEO4QZh6N0K11bFjWmdR8UGdPQ== + dependencies: + call-bind "^1.0.2" + get-intrinsic "^1.2.0" + has-symbols "^1.0.3" + isarray "^2.0.5" + +safe-regex-test@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/safe-regex-test/-/safe-regex-test-1.0.0.tgz#793b874d524eb3640d1873aad03596db2d4f2295" + integrity sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA== + dependencies: + call-bind "^1.0.2" + get-intrinsic "^1.1.3" + is-regex "^1.1.4" + "safer-buffer@>= 2.1.2 < 3": version "2.1.2" resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" @@ -643,6 +2350,16 @@ resolve@^1.10.0, resolve@^1.12.0: resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== +semver@^5.6.0, semver@^5.7.0: + version "5.7.2" + resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.2.tgz#48d55db737c3287cd4835e17fa13feace1c41ef8" + integrity sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g== + +semver@^6.3.1: + version "6.3.1" + resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz#556d2ef8689146e46dcea4bfdd095f3434dffcb4" + integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA== + set-blocking@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" @@ -653,6 +2370,13 @@ setimmediate@^1.0.5: resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285" integrity sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU= +shallow-clone@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/shallow-clone/-/shallow-clone-3.0.1.tgz#8f2981ad92531f55035b01fb230769a40e02efa3" + integrity sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA== + dependencies: + kind-of "^6.0.2" + shebang-command@^1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" @@ -665,11 +2389,33 @@ shebang-regex@^1.0.0: resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" integrity sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM= +side-channel@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.4.tgz#efce5c8fdc104ee751b25c58d4290011fa5ea2cf" + integrity sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw== + dependencies: + call-bind "^1.0.0" + get-intrinsic "^1.0.2" + object-inspect "^1.9.0" + signal-exit@^3.0.0: version "3.0.2" resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" integrity sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0= +source-map-support@^0.5.16: + version "0.5.21" + resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.21.tgz#04fe7c7f9e1ed2d662233c28cb2b35b9f63f6e4f" + integrity sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w== + dependencies: + buffer-from "^1.0.0" + source-map "^0.6.0" + +source-map@^0.6.0: + version "0.6.1" + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" + integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== + spdx-correct@^3.0.0: version "3.1.0" resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.1.0.tgz#fb83e504445268f154b074e218c87c003cd31df4" @@ -713,6 +2459,24 @@ string-width@^2.0.0: is-fullwidth-code-point "^2.0.0" strip-ansi "^4.0.0" +string.prototype.trim@^1.2.7: + version "1.2.7" + resolved "https://registry.yarnpkg.com/string.prototype.trim/-/string.prototype.trim-1.2.7.tgz#a68352740859f6893f14ce3ef1bb3037f7a90533" + integrity sha512-p6TmeT1T3411M8Cgg9wBTMRtY2q9+PNy9EV1i2lIXUN/btt763oIfxwN3RR8VU6wHX8j/1CFy0L+YuThm6bgOg== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.4" + es-abstract "^1.20.4" + +string.prototype.trimend@^1.0.6: + version "1.0.6" + resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.6.tgz#c4a27fa026d979d79c04f17397f250a462944533" + integrity sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.4" + es-abstract "^1.20.4" + string.prototype.trimleft@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/string.prototype.trimleft/-/string.prototype.trimleft-2.1.0.tgz#6cc47f0d7eb8d62b0f3701611715a3954591d634" @@ -729,6 +2493,15 @@ string.prototype.trimright@^2.1.0: define-properties "^1.1.3" function-bind "^1.1.1" +string.prototype.trimstart@^1.0.6: + version "1.0.6" + resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.6.tgz#e90ab66aa8e4007d92ef591bbf3cd422c56bdcf4" + integrity sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA== + dependencies: + call-bind "^1.0.2" + define-properties "^1.1.4" + es-abstract "^1.20.4" + strip-ansi@^3.0.0, strip-ansi@^3.0.1: version "3.0.1" resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" @@ -753,16 +2526,120 @@ strip-eof@^1.0.0: resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" integrity sha1-u0P/VZim6wXYm1n80SnJgzE2Br8= +supports-color@^5.3.0: + version "5.5.0" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" + integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== + dependencies: + has-flag "^3.0.0" + +supports-preserve-symlinks-flag@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" + integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== + +to-fast-properties@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" + integrity sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog== + ts-object-utils@0.0.5: version "0.0.5" resolved "https://registry.yarnpkg.com/ts-object-utils/-/ts-object-utils-0.0.5.tgz#95361cdecd7e52167cfc5e634c76345e90a26077" integrity sha1-lTYc3s1+UhZ8/F5jTHY0XpCiYHc= +typed-array-buffer@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/typed-array-buffer/-/typed-array-buffer-1.0.0.tgz#18de3e7ed7974b0a729d3feecb94338d1472cd60" + integrity sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw== + dependencies: + call-bind "^1.0.2" + get-intrinsic "^1.2.1" + is-typed-array "^1.1.10" + +typed-array-byte-length@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/typed-array-byte-length/-/typed-array-byte-length-1.0.0.tgz#d787a24a995711611fb2b87a4052799517b230d0" + integrity sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA== + dependencies: + call-bind "^1.0.2" + for-each "^0.3.3" + has-proto "^1.0.1" + is-typed-array "^1.1.10" + +typed-array-byte-offset@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/typed-array-byte-offset/-/typed-array-byte-offset-1.0.0.tgz#cbbe89b51fdef9cd6aaf07ad4707340abbc4ea0b" + integrity sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg== + dependencies: + available-typed-arrays "^1.0.5" + call-bind "^1.0.2" + for-each "^0.3.3" + has-proto "^1.0.1" + is-typed-array "^1.1.10" + +typed-array-length@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/typed-array-length/-/typed-array-length-1.0.4.tgz#89d83785e5c4098bec72e08b319651f0eac9c1bb" + integrity sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng== + dependencies: + call-bind "^1.0.2" + for-each "^0.3.3" + is-typed-array "^1.1.9" + ua-parser-js@^0.7.18: version "0.7.20" resolved "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-0.7.20.tgz#7527178b82f6a62a0f243d1f94fd30e3e3c21098" integrity sha512-8OaIKfzL5cpx8eCMAhhvTlft8GYF8b2eQr6JkCyVdrgjcytyOmPCXrqXFcUnhonRpLlh5yxEZVohm6mzaowUOw== +unbox-primitive@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/unbox-primitive/-/unbox-primitive-1.0.2.tgz#29032021057d5e6cdbd08c5129c226dff8ed6f9e" + integrity sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw== + dependencies: + call-bind "^1.0.2" + has-bigints "^1.0.2" + has-symbols "^1.0.3" + which-boxed-primitive "^1.0.2" + +unicode-canonical-property-names-ecmascript@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz#301acdc525631670d39f6146e0e77ff6bbdebddc" + integrity sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ== + +unicode-match-property-ecmascript@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz#54fd16e0ecb167cf04cf1f756bdcc92eba7976c3" + integrity sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q== + dependencies: + unicode-canonical-property-names-ecmascript "^2.0.0" + unicode-property-aliases-ecmascript "^2.0.0" + +unicode-match-property-value-ecmascript@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.1.0.tgz#cb5fffdcd16a05124f5a4b0bf7c3770208acbbe0" + integrity sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA== + +unicode-property-aliases-ecmascript@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz#43d41e3be698bd493ef911077c9b131f827e8ccd" + integrity sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w== + +update-browserslist-db@^1.0.11: + version "1.0.11" + resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz#9a2a641ad2907ae7b3616506f4b977851db5b940" + integrity sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA== + dependencies: + escalade "^3.1.1" + picocolors "^1.0.0" + +v8flags@^3.1.1: + version "3.2.0" + resolved "https://registry.yarnpkg.com/v8flags/-/v8flags-3.2.0.tgz#b243e3b4dfd731fa774e7492128109a0fe66d656" + integrity sha512-mH8etigqMfiGWdeXpaaqGfs6BndypxusHHcv2qSHyZkGEznCd/qAXCWWRzeowtL54147cktFOC4P5y+kl8d8Jg== + dependencies: + homedir-polyfill "^1.0.1" + validate-npm-package-license@^3.0.1: version "3.0.4" resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a" @@ -776,11 +2653,33 @@ whatwg-fetch@>=0.10.0: resolved "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-3.0.0.tgz#fc804e458cc460009b1a2b966bc8817d2578aefb" integrity sha512-9GSJUgz1D4MfyKU7KRqwOjXCXTqWdFNvEr7eUBYchQiVc744mqK/MzXPNR2WsPkmkOa4ywfg8C2n8h+13Bey1Q== +which-boxed-primitive@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz#13757bc89b209b049fe5d86430e21cf40a89a8e6" + integrity sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg== + dependencies: + is-bigint "^1.0.1" + is-boolean-object "^1.1.0" + is-number-object "^1.0.4" + is-string "^1.0.5" + is-symbol "^1.0.3" + which-module@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" integrity sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho= +which-typed-array@^1.1.10, which-typed-array@^1.1.11: + version "1.1.11" + resolved "https://registry.yarnpkg.com/which-typed-array/-/which-typed-array-1.1.11.tgz#99d691f23c72aab6768680805a271b69761ed61a" + integrity sha512-qe9UWWpkeG5yzZ0tNYxDmd7vo58HDBc39mZ0xWWpolAGADdFOzkfamWLDxkOWcvHQKVmdTyQdLD4NOfjLWTKew== + dependencies: + available-typed-arrays "^1.0.5" + call-bind "^1.0.2" + for-each "^0.3.3" + gopd "^1.0.1" + has-tostringtag "^1.0.0" + which@^1.2.9: version "1.3.1" resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" @@ -806,6 +2705,11 @@ yallist@^2.1.2: resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" integrity sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI= +yallist@^3.0.2: + version "3.1.1" + resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz#dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd" + integrity sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g== + yargs-parser@^7.0.0: version "7.0.0" resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-7.0.0.tgz#8d0ac42f16ea55debd332caf4c4038b3e3f5dfd9"